Ajout gestion configuration

This commit is contained in:
Jean-Christophe Engel 2023-10-24 18:11:28 +02:00
parent c190d72f3c
commit 50230bc673
3 changed files with 166 additions and 0 deletions

28
config.schema.json Normal file
View file

@ -0,0 +1,28 @@
{
"$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"
}
}
}
}