{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/nginx/refs/heads/main/json-schema/plus-http-api-nginx-error-schema.json", "title": "Error", "description": "nginx error object.\n", "type": "object", "properties": { "error": { "type": "object", "properties": { "status": { "type": "integer", "description": "HTTP error code.", "example": 200 }, "text": { "type": "string", "description": "Error description.", "example": "example-text" }, "code": { "type": "string", "description": "Internal nginx error code.", "example": 200 } }, "example": {} }, "request_id": { "type": "string", "description": "The ID of the request, equals the value of the $request_id variable.", "example": "example-request_id" }, "href": { "type": "string", "description": "Link to reference documentation.", "example": "example-href" } } }