15 lines
343 B
JSON
15 lines
343 B
JSON
|
{
|
||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"category" : {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"designation": {
|
||
|
"description": "Désignation du matériel",
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"required": ["category", "designation"]
|
||
|
}
|