2023-10-10 16:16:03 +02:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-10-12 13:48:49 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
},
|
2023-10-13 16:11:24 +02:00
|
|
|
"required": ["type", "category", "designation"]
|
2023-10-10 16:16:03 +02:00
|
|
|
}
|