Schema for problem from the Wikimedia REST API
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/problem.json", "title": "problem", "description": "Schema for problem from the Wikimedia REST API", "required": [ "type" ], "type": "object", "properties": { "type": { "type": "string" }, "title": { "type": "string" }, "detail": { "type": "string" }, "instance": { "type": "string" } } }