{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UnauthorizedError", "title": "UnauthorizedError", "allOf": [ { "$ref": "#/components/schemas/BaseError" }, { "type": "object", "properties": { "status": { "example": 401 }, "title": { "example": "Unauthorized" }, "type": { "example": "https://httpstatuses.com/401" }, "instance": { "example": "kong:trace:1234567890" }, "detail": { "example": "Invalid credentials" } } } ] }