equipment/config.schema.json

29 lines
701 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"inputNature": {
"description": "Nature des entrées",
"type": "array",
"items": {
"type": "object",
"properties": {
"label" : {
"type" : "string"
},
"owner" : {
"type" : "boolean"
}
}
}
},
"outputNature": {
"description": "Nature des sorties",
"type": "array",
"items": {
"type": "string"
}
}
}
}