BatchGetAssetPropertyValueErrorInfo

The error information, such as the error code and the timestamp.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
errorCode object
errorTimestamp object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-batch-get-asset-property-value-error-info-schema.json Raw ↑
{
  "$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"
  ]
}