{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotFoundError", "title": "NotFoundError", "allOf": [ { "$ref": "#/components/schemas/BaseError" }, { "type": "object", "properties": { "status": { "example": 404 }, "title": { "example": "Not Found" }, "type": { "example": "https://httpstatuses.com/404" }, "instance": { "example": "kong:trace:1234567890" }, "detail": { "example": "Not found" } } } ] }