Schema: License_Type

Schema Definition

{
    "$schema": "http://json-schema.org/schema#",
    "description": "Designations for the a Type of a company",
    "properties": {
        "code": {
            "description": "A single character descriptor of the License Type",
            "type": "string"
        },
        "id": {
            "description": "Global/Universal Unique Identifier from the well-known published set",
            "type": "string"
        },
        "name": {
            "description": "Name of the License Type like Grower, or G1 or Lab or something",
            "type": "string"
        }
    },
    "required": [
        "id",
        "code",
        "name"
    ],
    "type": "object"
}

Schema Samples