v5 migration + remove i18n

This commit is contained in:
nico 2024-12-29 12:33:22 +01:00
parent b7ce5b7f20
commit b2b6887fdf
Signed by: Nicolas
SSH key fingerprint: SHA256:ELi8eDeNLl5PTn64G+o2Kx5+XVDfHF5um2tZigfwWkM
84 changed files with 1258 additions and 1354 deletions

View file

@ -0,0 +1,48 @@
{
"$ref": "#/definitions/HPsections",
"definitions": {
"HPsections": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"lang": {
"type": "string",
"enum": [
"fr",
"en"
]
},
"uid": {
"type": "string"
},
"image": {
"type": "string"
},
"order": {
"type": "number"
},
"quickTitle": {
"type": "string"
},
"quickImage": {
"type": "string"
},
"reference": {
"type": "string"
},
"$schema": {
"type": "string"
}
},
"required": [
"type",
"lang",
"order"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}