Amazon IoT SiteWise · JSON Structure

Iot Sitewise Asset Error Details Structure

Contains error details for the requested associate project asset action.

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

AssetErrorDetails 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

assetId code message

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-asset-error-details-structure.json",
  "name": "AssetErrorDetails",
  "description": "Contains error details for the requested associate project asset action.",
  "type": "object",
  "properties": {
    "assetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ID"
        },
        {
          "description": "The ID of the asset."
        }
      ]
    },
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AssetErrorCode"
        },
        {
          "description": "The error code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AssetErrorMessage"
        },
        {
          "description": "The error message."
        }
      ]
    }
  },
  "required": [
    "assetId",
    "code",
    "message"
  ]
}