ajout liaison entre entrée temporaire et retour
This commit is contained in:
parent
144a909494
commit
ce87720d41
6 changed files with 322 additions and 77 deletions
23
mouvements/link.schema.json
Normal file
23
mouvements/link.schema.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["link"]
|
||||
},
|
||||
"input" : {
|
||||
"description": "clé d'une entrée temporaire",
|
||||
"type": "string"
|
||||
},
|
||||
"output" : {
|
||||
"description": "clé d'une sortie temporaire",
|
||||
"type": "string"
|
||||
},
|
||||
"return": {
|
||||
"description": "clé d'un retour",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["type", "return"]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue