changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "additionalProperties": false,
+ "properties": {
+ "points": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "period": {
+ "description": "Date bucket label.",
+ "type": "string"
+ },
+ "series": {
+ "description": "Grouped series label.",
+ "type": "string"
+ },
+ "value": {
+ "description": "Aggregated value for this bucket and series.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "period",
+ "series",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "spec": {
+ "additionalProperties": {},
+ "description": "Normalized chart filters actually applied to the query.",
+ "type": "object"
+ },
+ "subtitle": {
+ "description": "Display subtitle describing the filters.",
+ "type": "string"
+ },
+ "summary": {
+ "additionalProperties": false,
+ "properties": {
+ "periods": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "series": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "description": "Total or average across returned points.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "periods",
+ "series"
+ ],
+ "type": "object"
+ },
+ "title": {
+ "description": "Display title for the chart.",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Unit used by point values and summary.total.",
+ "enum": [
+ "count",
+ "usd",
+ "percent"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "spec",
+ "title",
+ "subtitle",
+ "unit",
+ "points",
+ "summary"
+ ],
+ "type": "object"
+ },
+ "links": {
+ "additionalProperties": false,
+ "properties": {
+ "apiUrl": {
+ "description": "Chart JSON API URL.",
+ "type": "string"
+ },
+ "embedUrl": {
+ "description": "Embeddable chart URL.",
+ "type": "string"
+ },
+ "pageUrl": {
+ "description": "Public chart page URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "embedUrl",
+ "pageUrl",
+ "apiUrl"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "data",
+ "links"
+ ],
+ "type": "object"
+}