{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/error", "title": "error", "type": "object", "allOf": [ { "$ref": "#/components/schemas/errorBase" } ], "properties": { "param": { "type": "string" }, "type": { "type": "string" }, "inner_error": { "$ref": "#/components/schemas/innerError" } } }