Acceldata · Schema

ErrorResponse

Error response

AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Properties

Name Type Description
message string Human-readable error message
error string Error code
code integer HTTP-style error code
View JSON Schema on GitHub

JSON Schema

adoc-api-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://acceldata.io/schemas/error-response.json",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response",
  "properties": {
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "error": {
      "type": "string",
      "description": "Error code"
    },
    "code": {
      "type": "integer",
      "description": "HTTP-style error code"
    }
  }
}