changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "pageid": {
+ "description": "Wikipedia page ID",
+ "type": "number"
+ },
+ "sections": {
+ "description": "Array of section headings with hierarchy",
+ "items": {
+ "properties": {
+ "anchor": {
+ "description": "URL anchor/fragment for section",
+ "type": "string"
+ },
+ "level": {
+ "description": "Heading level (1-6)",
+ "type": "number"
+ },
+ "number": {
+ "description": "Section numbering (e.g., '1.2.3')",
+ "type": "string"
+ },
+ "title": {
+ "description": "Section heading text (HTML-stripped)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "level",
+ "number",
+ "anchor"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Article title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "pageid",
+ "sections"
+ ],
+ "type": "object"
+}