{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TroubleTicketRelationship_FVO", "title": "TroubleTicketRelationship_FVO", "allOf": [ { "$ref": "#/components/schemas/EntityRef" }, { "type": "object", "description": "Represents a relationship between trouble tickets", "properties": { "id": { "type": "string", "description": "Unique identifier of the related trouble ticket" }, "name": { "type": "string", "description": "Name of the trouble ticket" }, "relationshipType": { "type": "string", "description": "Type of relationship" } }, "required": [ "id", "relationshipType" ] } ], "discriminator": { "propertyName": "@type", "mapping": { "TroubleTicketRelationship": "#/components/schemas/TroubleTicketRelationship_FVO" } } }