update schema.json

This commit is contained in:
Sina Atalay 2024-02-20 20:22:47 +01:00
parent 4c0d1ef46b
commit 1bd5faa3b2
1 changed files with 6 additions and 4 deletions

View File

@ -134,9 +134,14 @@
"description": "This class is the data model of the CV.", "description": "This class is the data model of the CV.",
"properties": { "properties": {
"name": { "name": {
"default": null,
"description": "The name of the person.", "description": "The name of the person.",
"title": "Name", "title": "Name",
"type": "string" "allOf": [
{
"type": "string"
}
]
}, },
"label": { "label": {
"default": null, "default": null,
@ -244,9 +249,6 @@
] ]
} }
}, },
"required": [
"name"
],
"title": "CurriculumVitae", "title": "CurriculumVitae",
"type": "object" "type": "object"
}, },