mirror of https://github.com/eyhc1/rendercv.git
docs: update schema.json
This commit is contained in:
parent
517ee3b1af
commit
75aad6c4f2
51
schema.json
51
schema.json
|
@ -360,10 +360,10 @@
|
|||
"title": "Date",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
"type": "integer"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
|
@ -724,10 +724,10 @@
|
|||
"title": "Date",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
"type": "integer"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
|
@ -941,7 +941,7 @@
|
|||
"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,
|
||||
"default": "month",
|
||||
"description": "Translation of the word \"month\" in the locale.",
|
||||
"title": "Translation of \"Month\"",
|
||||
"oneOf": [
|
||||
|
@ -951,7 +951,7 @@
|
|||
]
|
||||
},
|
||||
"months": {
|
||||
"default": null,
|
||||
"default": "months",
|
||||
"description": "Translation of the word \"months\" in the locale.",
|
||||
"title": "Translation of \"Months\"",
|
||||
"oneOf": [
|
||||
|
@ -961,7 +961,7 @@
|
|||
]
|
||||
},
|
||||
"year": {
|
||||
"default": null,
|
||||
"default": "year",
|
||||
"description": "Translation of the word \"year\" in the locale.",
|
||||
"title": "Translation of \"Year\"",
|
||||
"oneOf": [
|
||||
|
@ -971,7 +971,7 @@
|
|||
]
|
||||
},
|
||||
"years": {
|
||||
"default": null,
|
||||
"default": "years",
|
||||
"description": "Translation of the word \"years\" in the locale.",
|
||||
"title": "Translation of \"Years\"",
|
||||
"oneOf": [
|
||||
|
@ -981,7 +981,7 @@
|
|||
]
|
||||
},
|
||||
"present": {
|
||||
"default": null,
|
||||
"default": "present",
|
||||
"description": "Translation of the word \"present\" in the locale.",
|
||||
"title": "Translation of \"Present\"",
|
||||
"oneOf": [
|
||||
|
@ -991,7 +991,7 @@
|
|||
]
|
||||
},
|
||||
"to": {
|
||||
"default": null,
|
||||
"default": "to",
|
||||
"description": "Translation of the word \"to\" in the locale.",
|
||||
"title": "Translation of \"To\"",
|
||||
"oneOf": [
|
||||
|
@ -1001,7 +1001,20 @@
|
|||
]
|
||||
},
|
||||
"abbreviations_for_months": {
|
||||
"default": null,
|
||||
"default": [
|
||||
"Jan.",
|
||||
"Feb.",
|
||||
"Mar.",
|
||||
"Apr.",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"Aug.",
|
||||
"Sept.",
|
||||
"Oct.",
|
||||
"Nov.",
|
||||
"Dec."
|
||||
],
|
||||
"description": "Abbreviations of the months in the locale.",
|
||||
"title": "Abbreviations of Months",
|
||||
"oneOf": [
|
||||
|
@ -1420,10 +1433,10 @@
|
|||
"title": "Date",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
"type": "integer"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
|
@ -1623,10 +1636,10 @@
|
|||
"title": "Date",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
"type": "integer"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
|
@ -1818,14 +1831,18 @@
|
|||
"description": "This class is the data model of a social network.",
|
||||
"properties": {
|
||||
"network": {
|
||||
"description": "The social network name.",
|
||||
"description": "Name of the social network.",
|
||||
"enum": [
|
||||
"LinkedIn",
|
||||
"GitHub",
|
||||
"GitLab",
|
||||
"Instagram",
|
||||
"Orcid",
|
||||
"Mastodon",
|
||||
"Twitter"
|
||||
"Twitter",
|
||||
"StackOverflow",
|
||||
"ResearchGate",
|
||||
"YouTube"
|
||||
],
|
||||
"title": "Social Network",
|
||||
"type": "string"
|
||||
|
|
Loading…
Reference in New Issue