Nouvelle organisation des entrées et sorties

This commit is contained in:
Jean-Christophe Engel 2023-11-15 14:49:34 +01:00
parent dc8fd82aec
commit 43270faf38
2 changed files with 52 additions and 78 deletions

View file

@ -4,15 +4,16 @@
"properties": {
"inputNature": {
"description": "Nature des entrées",
"type": "array",
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"label" : {
"type" : "string"
},
"owner" : {
"type" : "boolean"
"type" : {
"type" : "string",
"enum" : ["définitif", "temporaire", "retour"]
}
}
}
@ -26,8 +27,9 @@
"label" : {
"type" : "string"
},
"final" : {
"type" : "boolean"
"type" : {
"type" : "string",
"enum" : ["définitif", "temporaire", "retour"]
}
}
}