Error Response

Standard error response.

Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Properties

Name Type Description
error string Error code or type.
message string Human-readable error message.
status integer HTTP status code.
View JSON Schema on GitHub

JSON Schema

ilab-operations-api-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agilent-technologies/refs/heads/main/json-schema/ilab-operations-api-error-response-schema.json",
  "title": "Error Response",
  "description": "Standard error response.",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error code or type.",
      "example": "not_found"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message.",
      "example": "The requested resource was not found."
    },
    "status": {
      "type": "integer",
      "description": "HTTP status code.",
      "example": 404
    }
  }
}