{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TroubleTicketRelationship_MVO", "title": "TroubleTicketRelationship_MVO", "allOf": [ { "$ref": "#/components/schemas/EntityRef_MVO" }, { "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" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "TroubleTicketRelationship": "#/components/schemas/TroubleTicketRelationship_MVO" } } }