new theme done
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Gianmarco Pettinato
2022-04-18 15:36:18 +02:00
parent 1ff883e624
commit 1669eeff4d
95 changed files with 4612 additions and 12087 deletions

View File

@@ -0,0 +1,108 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"year": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"start",
"end"
],
"additionalProperties": false
},
"title": {
"type": "object",
"properties": {
"en": {
"type": "string"
},
"it": {
"type": "string"
}
},
"required": [
"en",
"it"
],
"additionalProperties": false
},
"content": {
"type": "object",
"properties": {
"en": {
"type": "string"
},
"it": {
"type": "string"
}
},
"required": [
"en",
"it"
],
"additionalProperties": false
},
"collaborators": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"surname": {
"type": "string"
},
"ref": {
"type": "string"
}
},
"required": [
"name",
"surname",
"ref"
],
"additionalProperties": false
}
},
"languages": {
"type": "array",
"items": {
"type": "string"
}
},
"tecnologies": {
"type": "array",
"items": {
"type": "string"
}
},
"images": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"year",
"title",
"content",
"collaborators",
"languages",
"tecnologies",
"images"
],
"additionalProperties": false
}