Version initiale schémas json

This commit is contained in:
Jean-Christophe Engel 2023-10-10 16:16:03 +02:00
parent ef004dcffb
commit fe71484946
5 changed files with 75 additions and 0 deletions

10
category.schema.json Normal file
View file

@ -0,0 +1,10 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"]
}