Standard error response.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/agrio/refs/heads/main/json-schema/agrio-error-response-schema.json", "title": "Error Response", "description": "Standard error response.", "type": "object", "properties": { "error": { "type": "string", "description": "Error code or type.", "example": "unauthorized" }, "message": { "type": "string", "description": "Human-readable error message.", "example": "Invalid or missing API key." }, "status": { "type": "integer", "description": "HTTP status code.", "example": 401 } } }