{ "description": "The new page, including source (usually wikitext)", "required": [ "id", "title", "key", "latest", "license", "content_model", "source" ], "properties": { "id": { "type": "integer", "description": "Page identifier" }, "title": { "type": "string", "description": "Page title" }, "key": { "type": "string", "description": "Page title in URL-friendly format" }, "latest": { "type": "object", "description": "Information about the latest revision", "properties": { "id": { "type": "integer", "description": "Revision identifier for the latest revision" }, "timestamp": { "type": "string", "description": " Timestamp of the latest revision" } } }, "license": { "type": "object", "description": "Information about the wiki's license", "properties": { "url": { "type": "string", "description": "URL of the applicable license" }, "title": { "type": "string", "description": "Name of the applicable license" } } }, "content_model": { "type": "string", "description": "Page content type" }, "source": { "type": "string", "description": "Page content in the format specified by the content_model property" } } }