{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ContactDto", "type": "object", "properties": { "id": { "type": "string" }, "primaryEmailAddress": { "type": "string" }, "identifier": { "type": "string" }, "fullName": { "type": "string" }, "linkedInProfile": { "type": "string" }, "isDeleted": { "type": "boolean" }, "phoneNumbers": { "type": "array" }, "alternativeEmailAddresses": { "type": "array" }, "customFields": { "type": "array" } } }