Properties
| Name | Type | Description |
|---|---|---|
| contactId | string | |
| firstName | string | |
| lastName | string | |
| string | ||
| phone | string | |
| title | string | |
| isPrimary | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SharedContact",
"title": "SharedContact",
"type": "object",
"properties": {
"contactId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"phone": {
"type": "string"
},
"title": {
"type": "string"
},
"isPrimary": {
"type": "boolean"
}
}
}