changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "billable": {
+ "const": false
+ },
+ "checks": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "weight": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "label",
+ "ok",
+ "weight"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "evidence_status": {
+ "enum": [
+ "LIVE_PUBLIC_SCAN",
+ "SYNTHETIC_DEMO"
+ ],
+ "type": "string"
+ },
+ "grade": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "product_count_sampled": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "scanned_at": {
+ "type": "integer"
+ },
+ "score": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "UNREADABLE is an abstention, not a verdict about the store.",
+ "enum": [
+ "SCORED",
+ "UNREADABLE"
+ ],
+ "type": "string"
+ },
+ "unreadable": {
+ "additionalProperties": false,
+ "description": "Why nothing could be read. Null when the scan produced a score.",
+ "properties": {
+ "detail": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "reason",
+ "detail"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "state",
+ "score",
+ "grade",
+ "unreadable",
+ "checks",
+ "product_count_sampled",
+ "recommendations",
+ "scanned_at",
+ "billable",
+ "evidence_status"
+ ],
+ "type": "object"
+}