changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "content_urls": {
+ "properties": {
+ "desktop": {
+ "description": "Desktop Wikipedia page URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "mobile": {
+ "description": "Mobile Wikipedia page URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "desktop",
+ "mobile"
+ ],
+ "type": "object"
+ },
+ "description": {
+ "description": "Short description or null if unavailable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "extract": {
+ "description": "Article introduction/summary text",
+ "type": "string"
+ },
+ "thumbnail_url": {
+ "description": "URL to thumbnail image or null if none",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Article title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "description",
+ "extract",
+ "thumbnail_url",
+ "content_urls"
+ ],
+ "type": "object"
+}