Schema: License

Schema Definition

{
    "$schema": "http://json-schema.org/schema#",
    "description": "A License is part of a Company and is a container for Inventory, Products, Variety, Section, B2B and B2C Transactions",
    "properties": {
        "code": {
            "description": "A Unique Identifier Code; typically a Government issued ID",
            "type": "string"
        },
        "company": {
            "$ref": "#/components/schemas/Company",
            "description": "Company Object which owns this license"
        },
        "id": {
            "description": "Global/Universal Unique Identifier",
            "type": "string"
        },
        "name": {
            "description": "Name of the License",
            "type": "string"
        },
        "type": {
            "$ref": "#/components/schemas/License_Type"
        }
    },
    "required": [
        "id",
        "type",
        "name",
        "company"
    ],
    "type": "object"
}

Schema Samples