changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "alerts": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "blockNumber": {
+ "type": "integer"
+ },
+ "chainId": {
+ "type": "integer"
+ },
+ "checks": {
+ "items": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "decision": {
+ "enum": [
+ "safe_to_pay",
+ "needs_funding",
+ "needs_gas",
+ "review_destination",
+ "reject"
+ ],
+ "type": "string"
+ },
+ "destinationAddress": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "eth": {
+ "type": "string"
+ },
+ "limitations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "network": {
+ "type": "string"
+ },
+ "observedAt": {
+ "type": "string"
+ },
+ "recommendedAction": {
+ "type": "string"
+ },
+ "riskLevel": {
+ "enum": [
+ "low",
+ "medium",
+ "high"
+ ],
+ "type": "string"
+ },
+ "safeToProceed": {
+ "type": "boolean"
+ },
+ "usdc": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "address",
+ "destinationAddress",
+ "network",
+ "chainId",
+ "safeToProceed",
+ "decision",
+ "riskLevel",
+ "recommendedAction",
+ "eth",
+ "usdc",
+ "checks",
+ "alerts",
+ "limitations",
+ "blockNumber",
+ "observedAt"
+ ],
+ "type": "object"
+}