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