Amazon IoT SiteWise · JSON Structure

Iot Sitewise Batch Put Asset Property Error Structure

Contains error information from updating a batch of asset property values.

Type: object Properties: 3 Required: 3
Asset ManagementIndustrial IoTIoTTime Series Data

BatchPutAssetPropertyError is a JSON Structure definition published by Amazon IoT SiteWise, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

errorCode errorMessage timestamps

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-structure/iot-sitewise-batch-put-asset-property-error-structure.json",
  "name": "BatchPutAssetPropertyError",
  "description": "Contains error information from updating a batch of asset property values.",
  "type": "object",
  "properties": {
    "errorCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchPutAssetPropertyValueErrorCode"
        },
        {
          "description": "The error code."
        }
      ]
    },
    "errorMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorMessage"
        },
        {
          "description": "The associated error message."
        }
      ]
    },
    "timestamps": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamps"
        },
        {
          "description": "A list of timestamps for each error, if any."
        }
      ]
    }
  },
  "required": [
    "errorCode",
    "errorMessage",
    "timestamps"
  ]
}