mirror of
https://github.com/rendercv/rendercv.git
synced 2025-12-24 05:58:06 -05:00
docs: update schema.json
This commit is contained in:
96
schema.json
96
schema.json
@@ -943,6 +943,89 @@
|
||||
"type": "object",
|
||||
"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": {
|
||||
"description": "This class is a data model for the margins.",
|
||||
"properties": {
|
||||
@@ -1847,6 +1930,19 @@
|
||||
}
|
||||
],
|
||||
"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": [
|
||||
|
||||
Reference in New Issue
Block a user