changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "description": {
+ "description": "Short description or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "display_title": {
+ "description": "Formatted display title of the article",
+ "type": "string"
+ },
+ "extract": {
+ "description": "Extract or summary of the article",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "image": {
+ "description": "Featured image or null",
+ "properties": {
+ "height": {
+ "description": "Image height in pixels",
+ "type": "number"
+ },
+ "source": {
+ "description": "Image URL",
+ "type": "string"
+ },
+ "width": {
+ "description": "Image width in pixels",
+ "type": "number"
+ }
+ },
+ "required": [
+ "source",
+ "width",
+ "height"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Wikipedia article title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Wikipedia page URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "display_title",
+ "description",
+ "extract",
+ "url",
+ "image"
+ ],
+ "type": "object"
+}