début ajout lieu stockage
This commit is contained in:
parent
42210d2c9a
commit
966323acdf
5 changed files with 125 additions and 0 deletions
19
storage/storage.schema.json
Normal file
19
storage/storage.schema.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["storage"]
|
||||
},
|
||||
"name" : {
|
||||
"description": "Nom du lieu de stockage",
|
||||
"type": "string"
|
||||
},
|
||||
"location": {
|
||||
"description": "Emplacement du lieu de stockage",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["type", "name"]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue