Schema: Section
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "A logical or physical organizational container aka Area, Room, Zone",
"properties": {
"id": {
"description": "The Universal Identifier",
"type": "string"
},
"name": {
"description": "The Name",
"type": "string"
},
"type": {
"enum": [
"crop",
"inventory",
"inventory-quarantine"
],
"type": "string"
}
},
"type": "object"
}