changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "bban": {
+ "additionalProperties": false,
+ "properties": {
+ "account_number": {
+ "type": "string"
+ },
+ "bank_code": {
+ "type": "string"
+ },
+ "branch_code": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "bank_code",
+ "account_number"
+ ],
+ "type": "object"
+ },
+ "bic": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "bank_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "city": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "code": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "bank_name",
+ "city"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Resolved BIC/SWIFT when BBAN→BIC mapping exists."
+ },
+ "check_digits": {
+ "type": "string"
+ },
+ "clearing": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "eurosic": {
+ "type": "boolean"
+ },
+ "iid": {
+ "type": "string"
+ },
+ "instant_payments_chf": {
+ "type": "boolean"
+ },
+ "name": {
+ "type": "string"
+ },
+ "qr_iid": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sic": {
+ "type": "boolean"
+ },
+ "town": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "iid",
+ "name",
+ "type",
+ "town",
+ "sic",
+ "instant_payments_chf",
+ "eurosic",
+ "qr_iid"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Swiss clearing data when country is CH or LI."
+ },
+ "cost_usdc": {
+ "type": "number"
+ },
+ "country": {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "description": "ISO 3166-1 alpha-2 country code.",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "name"
+ ],
+ "type": "object"
+ },
+ "error": {
+ "type": "string"
+ },
+ "error_detail": {
+ "type": "string"
+ },
+ "formatted": {
+ "description": "IBAN with 4-char groups for display.",
+ "type": "string"
+ },
+ "iban": {
+ "description": "Normalized IBAN (uppercase, no spaces).",
+ "type": "string"
+ },
+ "issuer": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "description": "bank | digital_bank | emi | payment_institution",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "name"
+ ],
+ "type": "object"
+ },
+ "processing_ms": {
+ "type": "number"
+ },
+ "risk_indicators": {
+ "additionalProperties": false,
+ "properties": {
+ "country_risk": {
+ "type": "string"
+ },
+ "issuer_type": {
+ "type": "string"
+ },
+ "sepa_reachable": {
+ "type": "boolean"
+ },
+ "test_bic": {
+ "type": "boolean"
+ },
+ "vop_coverage": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "issuer_type",
+ "country_risk",
+ "test_bic",
+ "sepa_reachable",
+ "vop_coverage"
+ ],
+ "type": "object"
+ },
+ "sepa": {
+ "additionalProperties": false,
+ "properties": {
+ "member": {
+ "type": "boolean"
+ },
+ "schemes": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "vop_required": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "member",
+ "schemes",
+ "vop_required"
+ ],
+ "type": "object"
+ },
+ "valid": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "iban",
+ "valid",
+ "cost_usdc"
+ ],
+ "type": "object"
+}