IOweb/.astro/collections/blog.schema.json
2026-07-03 15:07:38 -05:00

42 lines
No EOL
701 B
JSON

{
"$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"
]
}