{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CharacteristicRelationship_MVO", "title": "CharacteristicRelationship_MVO", "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" } }, "required": [ "id", "relationshipType" ] } ], "discriminator": { "propertyName": "@type", "mapping": { "CharacteristicRelationship": "#/components/schemas/CharacteristicRelationship_MVO" } } }