Schema: Contact_Type
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "Well-known Types of Contacts",
"properties": {
"id": {
"description": "well-known Contact Type ULID",
"type": "string"
},
"name": {
"description": "Human readable Name for this Contact Type",
"enum": [
"Caregiver",
"Client",
"Driver",
"Employee",
"Manager",
"Owner",
"Patient",
"User",
"Vendor"
],
"type": "string"
}
},
"type": "object"
}