Informatica · Schema

ErrorResponse

Error response returned when a request fails.

Address VerificationB2B GatewayCloud ServicesData GovernanceData IntegrationData ProfilingData QualityEnterprise SoftwareETLIDMCIICSMaster Data ManagementReference Data Management

Properties

Name Type Description
@type string The error type identifier.
statusCode integer The HTTP status code.
message string A human-readable error message.
description string A detailed description of the error.
requestId string The unique request ID for troubleshooting.
View JSON Schema on GitHub

JSON Schema

informatica-platform-rest-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response returned when a request fails.",
  "properties": {
    "@type": {
      "type": "string",
      "description": "The error type identifier."
    },
    "statusCode": {
      "type": "integer",
      "description": "The HTTP status code."
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message."
    },
    "description": {
      "type": "string",
      "description": "A detailed description of the error."
    },
    "requestId": {
      "type": "string",
      "description": "The unique request ID for troubleshooting."
    }
  }
}