update
This commit is contained in:
parent
2823eea3ee
commit
1cc0b61c35
1 changed files with 26 additions and 20 deletions
|
@ -15,27 +15,33 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"variants": {
|
"variants": {
|
||||||
"type": "array",
|
"type": "object",
|
||||||
"minItems": 1,
|
"minProperties": 1,
|
||||||
"items": {
|
"title": "Item Variant",
|
||||||
"type": "object",
|
"description": "A Variant of an Item",
|
||||||
"title": "Item Variant",
|
"properties": {
|
||||||
"description": "A Variant of an Item",
|
"name": {
|
||||||
"properties": {
|
"type": "string",
|
||||||
"name": {
|
"title": "Variant Name",
|
||||||
"type": "string",
|
"description": "The name of the Variant"
|
||||||
"title": "Variant Name",
|
},
|
||||||
"description": "The name of the Variant"
|
"min": {
|
||||||
},
|
"type": "number",
|
||||||
"min": {
|
"title": "Minimum inventory",
|
||||||
|
"description": "The minimum amount of inventory for an Item. Thre actual inventory amount should always be higher than that."
|
||||||
|
},
|
||||||
|
"expiry": {
|
||||||
|
"type": "number",
|
||||||
|
"title": "Expiry days",
|
||||||
|
"description": "Number of days until this item variant is considered expired."
|
||||||
|
},
|
||||||
|
"barcodes": {
|
||||||
|
"type": "array",
|
||||||
|
"title": "Associated Barcodes",
|
||||||
|
"description": "Associated Barcodes",
|
||||||
|
"items": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"title": "Minimum inventory",
|
"title": "Barcode"
|
||||||
"description": "The minimum amount of inventory for an Item. Thre actual inventory amount should always be higher than that."
|
|
||||||
},
|
|
||||||
"expiry": {
|
|
||||||
"type": "number",
|
|
||||||
"title": "Expiry days",
|
|
||||||
"description": "Number of days until this item variant is considered expired."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue