{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AppointmentRef", "title": "AppointmentRef", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "$ref": "#/components/schemas/EntityRef" }, { "type": "object", "description": "Refers an appointment, such as a Customer presentation or internal meeting or site visit", "properties": { "description": { "type": "string", "description": "An explanatory text regarding the appointment made with a party" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "AppointmentRef": "#/components/schemas/AppointmentRef" } } }