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