RustyCMS: File-based headless CMS with REST API, admin UI, multilingual support
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
15
schemas/link_list.schema.json
Normal file
15
schemas/link_list.schema.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"_slug": { "description": "Entry identifier", "type": "string" },
|
||||
"headline": { "description": "Link list headline", "type": "string" },
|
||||
"links": {
|
||||
"description": "References (slugs) to collection 'link'",
|
||||
"items": { "type": "string" },
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"required": ["_slug", "headline", "links"],
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user