{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ContactSummaryDto", "type": "object", "properties": { "id": { "type": "string" }, "primaryEmailAddress": { "type": "string" }, "identifier": { "type": "string" }, "fullName": { "type": "string" }, "employerName": { "type": "string" }, "employerIdentifier": { "type": "string" }, "city": { "type": "string" }, "stateProvince": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" }, "isDeleted": { "type": "boolean" }, "lastMeeting": { "type": "string" }, "alternativeEmailAddresses": { "type": "array" }, "customFieldValues": { "type": "array" } } }