ErrorDetails

Contains information about the reason that the operation failed.

This data type is used as a response element in the GetOrganizationsAccessReport, GetServiceLastAccessedDetails, and GetServiceLastAccessedDetailsWithEntities operations.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Message object
Code object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-errordetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorDetails",
  "title": "ErrorDetails",
  "type": "object",
  "required": [
    "Message",
    "Code"
  ],
  "properties": {
    "Message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/stringType"
        },
        {
          "description": "Detailed information about the reason that the operation failed."
        }
      ]
    },
    "Code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/stringType"
        },
        {
          "description": "The error code associated with the operation failure."
        }
      ]
    }
  },
  "description": "<p>Contains information about the reason that the operation failed.</p> <p>This data type is used as a response element in the <a>GetOrganizationsAccessReport</a>, <a>GetServiceLastAccessedDetails</a>, and <a>GetServiceLastAccessedDetailsWithEntities</a> operations.</p>"
}