ErrorDetails

Contains the details of an IoT SiteWise error.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
code object
message object
details object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-error-details-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-error-details-schema.json",
  "title": "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"
  ]
}