docs: update schema.json

This commit is contained in:
Sina Atalay 2024-04-30 23:46:15 +03:00
parent 357b5dac9f
commit 6a4ab1be5e
1 changed files with 96 additions and 0 deletions

View File

@ -943,6 +943,89 @@
"type": "object", "type": "object",
"additionalProperties": false "additionalProperties": false
}, },
"LocaleCatalog": {
"additionalProperties": false,
"description": "This class is the data model of the locale catalog. The values of each field\nupdates the `locale_catalog` dictionary.",
"properties": {
"month": {
"default": null,
"description": "Translation of the word \"month\" in the locale.",
"title": "Translation of \"Month\"",
"oneOf": [
{
"type": "string"
}
]
},
"months": {
"default": null,
"description": "Translation of the word \"months\" in the locale.",
"title": "Translation of \"Months\"",
"oneOf": [
{
"type": "string"
}
]
},
"year": {
"default": null,
"description": "Translation of the word \"year\" in the locale.",
"title": "Translation of \"Year\"",
"oneOf": [
{
"type": "string"
}
]
},
"years": {
"default": null,
"description": "Translation of the word \"years\" in the locale.",
"title": "Translation of \"Years\"",
"oneOf": [
{
"type": "string"
}
]
},
"present": {
"default": null,
"description": "Translation of the word \"present\" in the locale.",
"title": "Translation of \"Present\"",
"oneOf": [
{
"type": "string"
}
]
},
"to": {
"default": null,
"description": "Translation of the word \"to\" in the locale.",
"title": "Translation of \"To\"",
"oneOf": [
{
"type": "string"
}
]
},
"abbreviations_for_months": {
"default": null,
"description": "Abbreviations of the months in the locale.",
"title": "Abbreviations of Months",
"oneOf": [
{
"items": {
"type": "string"
},
"maxItems": 12,
"minItems": 12,
"type": "array"
}
]
}
},
"title": "LocaleCatalog",
"type": "object"
},
"MarginsForClassic": { "MarginsForClassic": {
"description": "This class is a data model for the margins.", "description": "This class is a data model for the margins.",
"properties": { "properties": {
@ -1847,6 +1930,19 @@
} }
], ],
"title": "Design" "title": "Design"
},
"locale_catalog": {
"anyOf": [
{
"$ref": "#/$defs/LocaleCatalog"
},
{
"type": "null"
}
],
"default": null,
"description": "The locale catalog of the CV to allow the support of multiple languages.",
"title": "Locale Catalog"
} }
}, },
"required": [ "required": [