mirror of https://github.com/eyhc1/rendercv.git
update JSON schema
This commit is contained in:
parent
cfba6bcdc0
commit
e8219e5b6c
70
schema.json
70
schema.json
|
@ -358,6 +358,19 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"experience": {
|
||||||
|
"default": null,
|
||||||
|
"description": "The experience entries of the person.",
|
||||||
|
"title": "Experience",
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/$defs/ExperienceEntry"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"work_experience": {
|
"work_experience": {
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "The work experience entries of the person.",
|
"description": "The work experience entries of the person.",
|
||||||
|
@ -371,6 +384,19 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"projects": {
|
||||||
|
"default": null,
|
||||||
|
"description": "The project entries of the person.",
|
||||||
|
"title": "Projects",
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/$defs/NormalEntry"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"academic_projects": {
|
"academic_projects": {
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "The academic project entries of the person.",
|
"description": "The academic project entries of the person.",
|
||||||
|
@ -449,6 +475,19 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"programming_skills": {
|
||||||
|
"default": null,
|
||||||
|
"description": "The programming skill entries of the person.",
|
||||||
|
"title": "Programming Skills",
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/$defs/OneLineEntry"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "The skill entries of the person.",
|
"description": "The skill entries of the person.",
|
||||||
|
@ -462,6 +501,32 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"awards": {
|
||||||
|
"default": null,
|
||||||
|
"description": "The award entries of the person.",
|
||||||
|
"title": "Awards",
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/$defs/OneLineEntry"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"interests": {
|
||||||
|
"default": null,
|
||||||
|
"description": "The interest entries of the person.",
|
||||||
|
"title": "Interests",
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/$defs/OneLineEntry"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"custom_sections": {
|
"custom_sections": {
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "Custom sections with custom section titles can be rendered as well.",
|
"description": "Custom sections with custom section titles can be rendered as well.",
|
||||||
|
@ -1348,17 +1413,22 @@
|
||||||
],
|
],
|
||||||
"default": {
|
"default": {
|
||||||
"academic_projects": null,
|
"academic_projects": null,
|
||||||
|
"awards": null,
|
||||||
"certificates": null,
|
"certificates": null,
|
||||||
"connections": [],
|
"connections": [],
|
||||||
"custom_sections": null,
|
"custom_sections": null,
|
||||||
"education": null,
|
"education": null,
|
||||||
"email": null,
|
"email": null,
|
||||||
|
"experience": null,
|
||||||
"extracurricular_activities": null,
|
"extracurricular_activities": null,
|
||||||
|
"interests": null,
|
||||||
"label": null,
|
"label": null,
|
||||||
"location": null,
|
"location": null,
|
||||||
"name": "John Doe",
|
"name": "John Doe",
|
||||||
"personal_projects": null,
|
"personal_projects": null,
|
||||||
"phone": null,
|
"phone": null,
|
||||||
|
"programming_skills": null,
|
||||||
|
"projects": null,
|
||||||
"publications": null,
|
"publications": null,
|
||||||
"section_order": null,
|
"section_order": null,
|
||||||
"sections": [],
|
"sections": [],
|
||||||
|
|
Loading…
Reference in New Issue