{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "publishedAt": { "type": "string", "format": "date-time" }, "author": { "default": "Admin", "type": "string" }, "image": { "type": "string" }, "tags": { "default": [], "type": "array", "items": { "type": "string" } }, "draft": { "default": false, "type": "boolean" }, "$schema": { "type": "string" } }, "required": [ "title", "description", "publishedAt" ] }