{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"counterparty": {
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 1
},
"chain": {
"type": "string",
"enum": [
"eth",
"base",
"arb",
"op",
"polygon",
"sol"
]
},
"token": {
"type": "string",
"minLength": 1
}
},
"required": [
"address",
"chain",
"token"
],
"additionalProperties": false
},
"amount_cents": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"currency": {
"type": "string",
"minLength": 1,
"maxLength": 8
},
"mcc": {
"type": "string",
"minLength": 4,
"maxLength": 4
},
"geo": {
"type": "string",
"minLength": 2,
"maxLength": 2
}
},
"required": [
"counterparty",
"amount_cents",
"currency"
],
"additionalProperties": false
}