mirror of
https://github.com/rendercv/rendercv.git
synced 2026-01-24 21:28:27 -05:00
update JSON schema
This commit is contained in:
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": {
|
||||
"default": null,
|
||||
"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": {
|
||||
"default": null,
|
||||
"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": {
|
||||
"default": null,
|
||||
"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": {
|
||||
"default": null,
|
||||
"description": "Custom sections with custom section titles can be rendered as well.",
|
||||
@@ -1348,17 +1413,22 @@
|
||||
],
|
||||
"default": {
|
||||
"academic_projects": null,
|
||||
"awards": null,
|
||||
"certificates": null,
|
||||
"connections": [],
|
||||
"custom_sections": null,
|
||||
"education": null,
|
||||
"email": null,
|
||||
"experience": null,
|
||||
"extracurricular_activities": null,
|
||||
"interests": null,
|
||||
"label": null,
|
||||
"location": null,
|
||||
"name": "John Doe",
|
||||
"personal_projects": null,
|
||||
"phone": null,
|
||||
"programming_skills": null,
|
||||
"projects": null,
|
||||
"publications": null,
|
||||
"section_order": null,
|
||||
"sections": [],
|
||||
|
||||
Reference in New Issue
Block a user