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"
+ },
+ "includeDetails": {
+ "type": "boolean"
+ },
+ "lcpValue": {
+ "type": "number"
+ },
+ "needsImprovement": {
+ "type": "boolean"
+ },
+ "opportunities": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "displayValue": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "numericValue": {
+ "type": "number"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "threshold": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "lcpValue",
+ "threshold",
+ "needsImprovement",
+ "opportunities",
+ "fetchTime"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "data"
+ ],
+ "type": "object"
+}