{ "$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-scene-error-schema.json", "title": "SceneError", "description": "The scene error.", "type": "object", "properties": { "code": { "allOf": [ { "$ref": "#/components/schemas/SceneErrorCode" }, { "description": "The SceneError code." } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/ErrorMessage" }, { "description": "The SceneError message." } ] } } }