{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WarningValidationProblem", "title": "WarningValidationProblem", "type": "object", "properties": { "source": { "$ref": "#/components/schemas/ValidationProblemSource" }, "title": { "type": "string" }, "detail": { "type": "string" }, "problem_type": { "type": "string" }, "block_merge_link": { "type": "boolean" }, "raw_error": { "type": "string" }, "error_code": { "type": "integer" } }, "required": [ "title", "detail", "problem_type" ] }