Schema: Company_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 Company Type",
            "type": "string"
        },
        "id": {
            "description": "Unique ID value for this Company Type from the well-known published set",
            "type": "string"
        },
        "name": {
            "description": "A Friendly Name for this Company Type",
            "type": "string"
        }
    },
    "required": [
        "id",
        "code",
        "name"
    ],
    "type": "object"
}

Schema Samples