RustyCMS: file-based headless CMS — API, Admin UI (content, types, assets), Docker/Caddy, image transform; only demo type and demo content in version control
Made-with: Cursor
This commit is contained in:
@@ -2,10 +2,23 @@
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"_slug": { "description": "Entry identifier", "type": "string" },
|
||||
"id": { "description": "Unique ID", "type": "string" },
|
||||
"text": { "description": "Banner text", "type": "string" }
|
||||
"_slug": {
|
||||
"description": "Entry identifier (URL slug / filename without extension)",
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"description": "Unique ID",
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"description": "Banner text (e.g. notice at top of page)",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["_slug", "id", "text"],
|
||||
"required": [
|
||||
"_slug",
|
||||
"id",
|
||||
"text"
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user