equipment/equipment.schema.json

20 lines
475 B
JSON
Raw Normal View History

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