update JSON schema

This commit is contained in:
Sina Atalay 2023-10-27 22:51:24 +02:00
parent cfba6bcdc0
commit e8219e5b6c
1 changed files with 70 additions and 0 deletions

View File

@ -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": [],