Files
rustycms/schemas/translation_bundle.schema.json

22 lines
590 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"_slug": {
"description": "Entry identifier (URL slug / filename without extension)",
"type": "string"
},
"strings": {
"additionalProperties": {
"type": "string"
},
"description": "Map: Übersetzungsschlüssel (key) → Text (value). Z. B. { \"searchable_text_help\": \"Hier könnt ihr...\", \"footer_copyright\": \"© 2024\" }",
"type": "object"
}
},
"required": [
"_slug",
"strings"
],
"type": "object"
}