Schema: Plant_Collect

Schema Definition

{
    "$schema": "http://json-schema.org/schema#",
    "properties": {
        "id": {
            "description": "Unique Identifier of the Plant Collect operation",
            "type": "string"
        },
        "plant": {
            "$ref": "#/components/schemas/Plant",
            "description": "Plant Object, may have only \"id\" property, may be omitted of Plant_Collect is part of a containing Plant"
        },
        "qty": {
            "description": "Quantity of Material Collected",
            "format": "double",
            "type": "number"
        },
        "type": {
            "description": "Material Type: Flower/Wet, Flower/Dry, Trim/Wet|Dry, Waste/Wet|Dry",
            "enum": [
                "raw",
                "net",
                "wet-plant",
                "wet-waste",
                "dry-buds",
                "dry-trim",
                "dry-waste"
            ],
            "type": "string"
        },
        "uom": {
            "enum": [
                "g",
                "kg",
                "oz",
                "lb"
            ],
            "type": "string"
        }
    },
    "type": "object"
}

Schema Samples