{ "$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-batch-get-asset-property-value-error-info-schema.json", "title": "BatchGetAssetPropertyValueErrorInfo", "description": "The error information, such as the error code and the timestamp.", "type": "object", "properties": { "errorCode": { "allOf": [ { "$ref": "#/components/schemas/BatchGetAssetPropertyValueErrorCode" }, { "description": "The error code." } ] }, "errorTimestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date the error occurred, in Unix epoch time." } ] } }, "required": [ "errorCode", "errorTimestamp" ] }