mirror of https://github.com/eyhc1/rendercv.git
docs: update schema.json
This commit is contained in:
parent
357b5dac9f
commit
6a4ab1be5e
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": [
|
||||
|
|
Loading…
Reference in New Issue