changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "biggestIssue": {
+ "type": "string"
+ },
+ "grade": {
+ "enum": [
+ "A",
+ "B",
+ "C",
+ "D",
+ "F"
+ ],
+ "type": "string"
+ },
+ "limitations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "merchant": {
+ "type": "string"
+ },
+ "network": {
+ "type": "string"
+ },
+ "observedAt": {
+ "type": "string"
+ },
+ "score": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "signals": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "snapshotId": {
+ "type": "string"
+ },
+ "upgrade": {
+ "$ref": "#/properties/signals"
+ },
+ "visibility": {
+ "items": {
+ "$ref": "#/properties/signals"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "snapshotId",
+ "merchant",
+ "network",
+ "observedAt",
+ "score",
+ "grade",
+ "signals",
+ "visibility",
+ "biggestIssue",
+ "upgrade",
+ "limitations"
+ ],
+ "type": "object"
+}