Réorganisation fichiers et répertoires
This commit is contained in:
parent
da6b550cb6
commit
e32693ed31
26 changed files with 57 additions and 57 deletions
23
movements/link.schema.json
Normal file
23
movements/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"]
|
||||
},
|
||||
"direction" : {
|
||||
"type" : "string",
|
||||
"enum" : ["input", "output"]
|
||||
},
|
||||
"temp_key" : {
|
||||
"description": "clé d'une entrée ou sortie temporaire",
|
||||
"type": "string"
|
||||
},
|
||||
"return": {
|
||||
"description": "clé du retour associé",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["type", "direction", "temp_key", "return"]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue