{ "$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"] }