{ "$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" } } }