{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MethodNotAllowedError", "title": "Error Response", "required": [ "status", "title", "type", "detail" ], "type": "object", "properties": { "status": { "type": "integer", "description": "The HTTP status code.", "example": 405 }, "title": { "type": "string", "description": "The error title describes the particular error." }, "type": { "type": "string" }, "detail": { "title": "Detailed Errors", "type": "string", "description": "The detailed title describes the particular error." } } }