changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "description": "Number of IBANs processed.",
+ "type": "number"
+ },
+ "results": {
+ "description": "One result per input IBAN, in the same order. Same shape as validate_iban.",
+ "items": {
+ "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"
+ }
+ ]
+ },
+ "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"
+ }
+ ]
+ },
+ "cost_usdc": {
+ "type": "number"
+ },
+ "country": {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "name"
+ ],
+ "type": "object"
+ },
+ "error": {
+ "type": "string"
+ },
+ "error_detail": {
+ "type": "string"
+ },
+ "iban": {
+ "type": "string"
+ },
+ "issuer": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "name"
+ ],
+ "type": "object"
+ },
+ "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"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results",
+ "count"
+ ],
+ "type": "object"
+}