{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-relationship-value-schema.json", "title": "RelationshipValue", "description": "A value that associates a component and an entity.", "type": "object", "properties": { "targetEntityId": { "allOf": [ { "$ref": "#/components/schemas/EntityId" }, { "description": "The ID of the target entity associated with this relationship value." } ] }, "targetComponentName": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the target component associated with the relationship value." } ] } } }