{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Problem", "title": "Problem", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/ProblemType" }, "title": { "type": "string" }, "status": { "type": "integer", "format": "int32" }, "detail": { "type": "string" } }, "additionalProperties": false }