{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-transfer-input-device-request-schema.json", "title": "TransferInputDeviceRequest", "description": "A request to transfer an input device.", "type": "object", "properties": { "TargetCustomerId": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "targetCustomerId" }, "description": "The AWS account ID (12 digits) for the recipient of the device transfer." } ] }, "TargetRegion": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "targetRegion" }, "description": "The target AWS region to transfer the device." } ] }, "TransferMessage": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "transferMessage" }, "description": "An optional message for the recipient. Maximum 280 characters." } ] } } }