changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "article": {
+ "description": "Wikipedia article title",
+ "type": "string"
+ },
+ "daily": {
+ "description": "Daily pageview breakdown",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Date in YYYYMMDD format",
+ "type": "string"
+ },
+ "views": {
+ "description": "Pageviews for that day",
+ "type": "number"
+ }
+ },
+ "required": [
+ "date",
+ "views"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "end": {
+ "description": "End date in YYYYMMDD format",
+ "type": "string"
+ },
+ "start": {
+ "description": "Start date in YYYYMMDD format",
+ "type": "string"
+ },
+ "total_views": {
+ "description": "Total pageviews across date range",
+ "type": "number"
+ }
+ },
+ "required": [
+ "article",
+ "start",
+ "end",
+ "total_views",
+ "daily"
+ ],
+ "type": "object"
+}