Correction indentation
This commit is contained in:
parent
0e669a7c21
commit
3a9424de78
28 changed files with 1479 additions and 1502 deletions
|
|
@ -1,42 +1,42 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["movement"]
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["movement"]
|
||||
},
|
||||
"direction" : {
|
||||
"description": "Entrée ou sortie",
|
||||
"type": "string",
|
||||
"enum": ["input", "output"]
|
||||
},
|
||||
"input_nature": {
|
||||
"description": "Nature de l'entrée",
|
||||
"type": ["null", "string"]
|
||||
},
|
||||
"output_nature": {
|
||||
"description": "Nature de la sortie",
|
||||
"type": ["null", "string"]
|
||||
},
|
||||
"amount": {
|
||||
"description": "Quantité ajoutée ou retirée",
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"equipment": {
|
||||
"description": "Clé du matériel",
|
||||
"type": "string"
|
||||
},
|
||||
"date" : {
|
||||
"description": "Date de l'opération",
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"comment": {
|
||||
"description": "Commentaire additionnel",
|
||||
"type": ["null", "string"]
|
||||
}
|
||||
},
|
||||
"direction" : {
|
||||
"description": "Entrée ou sortie",
|
||||
"type": "string",
|
||||
"enum": ["input", "output"]
|
||||
},
|
||||
"input_nature": {
|
||||
"description": "Nature de l'entrée",
|
||||
"type": ["null", "string"]
|
||||
},
|
||||
"output_nature": {
|
||||
"description": "Nature de la sortie",
|
||||
"type": ["null", "string"]
|
||||
},
|
||||
"amount": {
|
||||
"description": "Quantité ajoutée ou retirée",
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"equipment": {
|
||||
"description": "Clé du matériel",
|
||||
"type": "string"
|
||||
},
|
||||
"date" : {
|
||||
"description": "Date de l'opération",
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"comment": {
|
||||
"description": "Commentaire additionnel",
|
||||
"type": ["null", "string"]
|
||||
}
|
||||
},
|
||||
"required": ["type", "direction", "amount", "equipment", "date", "comment"]
|
||||
"required": ["type", "direction", "amount", "equipment", "date", "comment"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue