Zluri · Schema

Zluri API Error

Standard error response returned by the Zluri API.

Access ManagementSaaS Management

Properties

Name Type Description
error string Error message describing what went wrong.
code string Machine-readable error code.
View JSON Schema on GitHub

JSON Schema

error.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zluri/refs/heads/main/json-schema/error.json",
  "title": "Zluri API Error",
  "description": "Standard error response returned by the Zluri API.",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message describing what went wrong."
    },
    "code": {
      "type": "string",
      "description": "Machine-readable error code."
    }
  },
  "required": ["error"]
}