cv-site/src/model/schema.json

104 lines
1.9 KiB
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"year": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"start",
"end"
]
},
"title": {
"type": "object",
"properties": {
"en": {
"type": "string"
},
"it": {
"type": "string"
}
},
"required": [
"en",
"it"
]
},
"content": {
"type": "object",
"properties": {
"en": {
"type": "string"
},
"it": {
"type": "string"
}
},
"required": [
"en",
"it"
]
},
"collaborators": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"surname": {
"type": "string"
},
"ref": {
"type": "string"
}
},
"required": [
"name",
"surname",
"ref"
]
}
},
"languages": {
"type": "array",
"items": {
"type": "string"
}
},
"tecnologies": {
"type": "array",
"items": {
"type": "string"
}
},
"immagies": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"year",
"title",
"content",
"collaborators",
"languages",
"tecnologies",
"immagies"
]
}
}