equipment/config.schema.json

39 lines
731 B
JSON
Raw Normal View History

2023-10-24 18:11:28 +02:00
{
2023-12-06 09:59:11 +01:00
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"input_nature": {
"description": "Nature des entrées",
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"label" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : ["définitif", "temporaire", "retour"]
}
}
}
},
"output_nature": {
"description": "Nature des sorties",
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"label" : {
"type" : "string"
},
"type" : {
"type" : "string",
"enum" : ["définitif", "temporaire", "retour"]
}
}
}
}
}
2023-10-24 18:11:28 +02:00
}