{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/endpointInformation", "title": "endpointInformation", "type": "object", "required": [ "preferredAnswerEndpointId", "endpoints" ], "properties": { "preferredAnswerEndpointId": { "type": "string", "example": "Y2lzY29z...", "description": "Person\u2019s preferred answer endpoint.", "nullable": true }, "endpoints": { "type": "array", "items": { "$ref": "#/components/schemas/endpoints" }, "description": "Array of endpoints available to the person." } } }