changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "articles": {
+ "description": "Top 20 most-read articles",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Short description or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "display_title": {
+ "description": "Formatted display title",
+ "type": "string"
+ },
+ "rank": {
+ "description": "Ranking position",
+ "type": "number"
+ },
+ "title": {
+ "description": "Wikipedia article title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Wikipedia page URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "views": {
+ "description": "Number of views",
+ "type": "number"
+ }
+ },
+ "required": [
+ "rank",
+ "title",
+ "display_title",
+ "views",
+ "description",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "articles"
+ ],
+ "type": "object"
+}