{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf632-party-management-characteristic-relationship-schema.json", "title": "CharacteristicRelationship", "description": "CharacteristicRelationship schema from TM Forum API", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "type": "object", "description": "Another Characteristic that is related to the current Characteristic;", "properties": { "id": { "type": "string", "description": "Unique identifier of the characteristic" }, "relationshipType": { "type": "string", "description": "The type of relationship" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "CharacteristicRelationship": "#/components/schemas/CharacteristicRelationship" } } }