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": {
+ "differences": {
+ "additionalProperties": {
+ "additionalProperties": false,
+ "properties": {
+ "better": {
+ "enum": [
+ "mobile",
+ "desktop"
+ ],
+ "type": "string"
+ },
+ "desktop": {
+ "type": "number"
+ },
+ "difference": {
+ "type": "number"
+ },
+ "mobile": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "mobile",
+ "desktop",
+ "difference",
+ "better"
+ ],
+ "type": "object"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "includeDetails": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "differences"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "data"
+ ],
+ "type": "object"
+}