BatchPutAssetPropertyErrorEntry

Contains error information for asset property value entries that are associated with the BatchPutAssetPropertyValue API.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
entryId object
errors object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-batch-put-asset-property-error-entry-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-put-asset-property-error-entry-schema.json",
  "title": "BatchPutAssetPropertyErrorEntry",
  "description": "Contains error information for asset property value entries that are associated with the <a href=\"https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_BatchPutAssetPropertyValue.html\">BatchPutAssetPropertyValue</a> API.",
  "type": "object",
  "properties": {
    "entryId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntryId"
        },
        {
          "description": "The ID of the failed entry."
        }
      ]
    },
    "errors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchPutAssetPropertyErrors"
        },
        {
          "description": "The list of update property value errors."
        }
      ]
    }
  },
  "required": [
    "entryId",
    "errors"
  ]
}