Ajout gestion configuration
This commit is contained in:
parent
c190d72f3c
commit
50230bc673
3 changed files with 166 additions and 0 deletions
28
config.schema.json
Normal file
28
config.schema.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue