37 lines
967 B
JSON
37 lines
967 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"inputNature": {
|
|
"description": "Nature des entrées",
|
|
"type": ["array", "null"],
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"label" : {
|
|
"type" : "string"
|
|
},
|
|
"owner" : {
|
|
"type" : "boolean"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"outputNature": {
|
|
"description": "Nature des sorties",
|
|
"type": ["array", "null"],
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"label" : {
|
|
"type" : "string"
|
|
},
|
|
"final" : {
|
|
"type" : "boolean"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|