Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of record containing the reference. |
| id | string | The unique identifier of the record. |
| date | string | Date associated with the reference. |
| details | string | Additional details about the reference. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DataReference",
"title": "DataReference",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"Call",
"Meeting",
"Email",
"EngageFlow",
"User"
],
"description": "The type of record containing the reference."
},
"id": {
"type": "string",
"description": "The unique identifier of the record."
},
"date": {
"type": "string",
"format": "date-time",
"description": "Date associated with the reference."
},
"details": {
"type": "string",
"description": "Additional details about the reference."
}
}
}