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