Contains the details of an IoT SiteWise error.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-error-details-schema.json", "title": "ErrorDetails", "description": "Contains the details of an IoT SiteWise error.", "type": "object", "properties": { "code": { "allOf": [ { "$ref": "#/components/schemas/ErrorCode" }, { "description": "The error code." } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/ErrorMessage" }, { "description": "The error message." } ] }, "details": { "allOf": [ { "$ref": "#/components/schemas/DetailedErrors" }, { "description": " A list of detailed errors. " } ] } }, "required": [ "code", "message" ] }