Files
ghall.space/.astro/collections/blog.schema.json
T
2025-10-28 17:17:41 -04:00

29 lines
475 B
JSON

{
"$ref": "#/definitions/blog",
"definitions": {
"blog": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"pubDate": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"$schema": {
"type": "string"
}
},
"required": ["title", "pubDate", "tags"],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}