Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| id | string | |
| external_id | string | |
| role | string | |
| string | ||
| name | string | |
| phone | string | |
| created_at | integer | |
| updated_at | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Contact",
"title": "Contact",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"external_id": {
"type": "string"
},
"role": {
"type": "string"
},
"email": {
"type": "string"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
},
"created_at": {
"type": "integer"
},
"updated_at": {
"type": "integer"
}
}
}