changedInput schema / properties / categories / items / enum
Previous value: -[
- "performance",
- "accessibility",
- "best-practices",
- "seo",
- "pwa"
-]New value: +[
+ "performance",
+ "accessibility",
+ "best-practices",
+ "seo",
+ "agentic-browsing"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "additionalProperties": false,
+ "properties": {
+ "categories": {
+ "additionalProperties": {
+ "additionalProperties": false,
+ "properties": {
+ "score": {
+ "type": "number"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "score"
+ ],
+ "type": "object"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "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"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "categories",
+ "metrics",
+ "version",
+ "fetchTime"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "data"
+ ],
+ "type": "object"
+}