Schema: Vehicle

Schema Definition

{
    "$schema": "http://json-schema.org/schema#",
    "description": "The Vehicle is any equipment that transports cannabis",
    "properties": {
        "color": {
            "description": "Vehicle Color",
            "type": "string"
        },
        "id": {
            "description": "Global/Universal Unique Identifier",
            "type": "string"
        },
        "make": {
            "description": "Manufacturer / Make of vehicle",
            "type": "string"
        },
        "model": {
            "description": "Vehicle Model",
            "type": "string"
        },
        "name": {
            "description": "Free-form, auto-generated name of Vehicle",
            "type": "string"
        },
        "vin": {
            "description": "The Vehicle Identification Number",
            "type": "string"
        },
        "vrn": {
            "description": "The Vehicle Registration Number (License Plate/Number Plate)",
            "type": "string"
        }
    },
    "required": [
        "id",
        "make",
        "model",
        "color"
    ],
    "type": "object"
}

Schema Samples