Files
rustycms/schemas/tag.schema.json

18 lines
347 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"_slug": {
"description": "Entry identifier (URL slug / filename without extension)",
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"_slug",
"name"
],
"type": "object"
}