Schema: Contact
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "A Contact represents a natural person",
"properties": {
"company": {
"$ref": "#/components/schemas/Company",
"description": "Primary Company Object which owns this license"
},
"email": {
"description": "Contacts primary email address.",
"type": "string"
},
"id": {
"description": "Global/Universal Unique Identifier",
"type": "string"
},
"name": {
"description": "Full Name",
"type": "string"
},
"phone": {
"description": "Contacts primary phone number",
"type": "string"
},
"type": {
"$ref": "#/components/schemas/Contact_Type"
}
},
"required": [
"id",
"type",
"name",
"company"
],
"type": "object"
}
Schema Samples