equipment/equipment.schema.json

25 lines
504 B
JSON
Raw Permalink 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"
},
2025-02-18 14:13:11 +01:00
"name": {
2023-12-06 09:59:11 +01:00
"description": "Désignation du matériel",
"type": "string"
},
"status": {
"description": "État du matériel",
"type": "string",
"enum": ["available", "archived"]
2023-12-06 09:59:11 +01:00
}
},
"required": ["type", "category", "name", "status"]
2023-10-10 16:16:03 +02:00
}