equipment/equipment.schema.json

20 lines
391 B
JSON
Raw Normal View History

2023-10-10 16:16:03 +02:00
{
2023-12-06 09:59:11 +01:00
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["equipment"]
},
"category" : {
"description": "Clé de la catégorie",
"type": "string"
},
"designation": {
"description": "Désignation du matériel",
"type": "string"
}
},
2023-12-06 09:59:11 +01:00
"required": ["type", "category", "designation"]
2023-10-10 16:16:03 +02:00
}