changedInput schema / properties / checks / items / enum
Previous value: -[
- "https",
- "mixed-content",
- "csp",
- "hsts",
- "vulnerabilities"
-]New value: +[
+ "https",
+ "csp",
+ "hsts",
+ "origin-isolation",
+ "clickjacking",
+ "trusted-types",
+ "third-party-cookies",
+ "deprecations"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "additionalProperties": false,
+ "properties": {
+ "auditCount": {
+ "type": "number"
+ },
+ "audits": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "displayValue": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "pass",
+ "fail",
+ "warning"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "description",
+ "score",
+ "displayValue",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "failedAudits": {
+ "type": "number"
+ },
+ "fetchTime": {
+ "type": "string"
+ },
+ "overallScore": {
+ "type": "number"
+ },
+ "passedAudits": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "overallScore",
+ "audits",
+ "auditCount",
+ "passedAudits",
+ "failedAudits",
+ "fetchTime"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "data"
+ ],
+ "type": "object"
+}