changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "additionalProperties": false,
+ "properties": {
+ "fetchTime": {
+ "type": "string"
+ },
+ "metrics": {
+ "additionalProperties": {
+ "additionalProperties": false,
+ "properties": {
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "title": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "value"
+ ],
+ "type": "object"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "performanceScore": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "performanceScore",
+ "metrics",
+ "fetchTime"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "data"
+ ],
+ "type": "object"
+}