addedInput schema / additionalProperties
Added value: +false
changedInput schema / properties / url / description
Previous value: -"Page URL to audit, e.g. https://your-page.example.com"New value: +"Public HTTP(S) page to fetch and inspect. Direct localhost, .local, loopback, private IPv4, and IPv6-literal targets are rejected. Inline style CSS is analyzed; external stylesheets are not fetched."
changedOutput schema / additionalProperties
Previous value: -trueNew value: +false
addedOutput schema / properties / checkedAt
Added value: +{
+ "format": "date-time",
+ "type": "string"
+}
addedOutput schema / properties / checks
Added value: +{
+ "description": "Every inline-CSS theme, token, background, and contrast finding.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "check": {
+ "type": "string"
+ },
+ "detail": {
+ "type": "string"
+ },
+ "remediation": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "pass",
+ "warn",
+ "fail",
+ "na"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "check",
+ "status",
+ "detail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / detail / description
Previous value: -"Human-readable error or status detail."New value: +"Fetch failure detail."
changedOutput schema / properties / error / description
Previous value: -"Machine-readable error code, when the operation did not complete."New value: +"Machine-readable target or fetch failure."
addedOutput schema / properties / grade
Added value: +{
+ "description": "Overall grade derived from the check counts.",
+ "enum": [
+ "ready",
+ "mostly-ready",
+ "needs-work"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / note
Added value: +{
+ "description": "Audit coverage and inline-style limitation.",
+ "type": "string"
+}
addedOutput schema / properties / reason
Added value: +{
+ "description": "Why the target URL was rejected.",
+ "type": "string"
+}
addedOutput schema / properties / spec
Added value: +{
+ "enum": [
+ "knownfix-theme-audit/0.1"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / summary
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "fail": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "na": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "pass": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "warn": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "pass",
+ "warn",
+ "fail",
+ "na"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / target
Added value: +{
+ "description": "Canonical page URL inspected.",
+ "format": "uri",
+ "type": "string"
+}