Amazon IoT SiteWise · JSON Structure

Iot Sitewise Error Details Structure

Contains the details of an IoT SiteWise error.

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

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

Properties

code message details

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-error-details-structure.json",
  "name": "ErrorDetails",
  "description": "Contains the details of an IoT SiteWise error.",
  "type": "object",
  "properties": {
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorCode"
        },
        {
          "description": "The error code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorMessage"
        },
        {
          "description": "The error message."
        }
      ]
    },
    "details": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DetailedErrors"
        },
        {
          "description": " A list of detailed errors. "
        }
      ]
    }
  },
  "required": [
    "code",
    "message"
  ]
}