{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wiktionary/refs/heads/main/json-schema/rest-api-html-transform-request-schema.json", "title": "HtmlTransformRequest", "description": "HtmlTransformRequest schema from Wiktionary Wikimedia REST API", "type": "object", "properties": { "html": { "type": "string", "description": "Parsoid HTML to convert back to wikitext.", "example": "

English

A standard greeting.

" }, "scrub_wikitext": { "type": "boolean", "description": "Whether to clean up the resulting wikitext.", "example": true } }, "required": [ "html" ] }