changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "additionalProperties": false,
+ "properties": {
+ "building_number": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "country": {
+ "type": "string"
+ },
+ "post_code": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "street": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "town": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "street",
+ "building_number",
+ "post_code",
+ "town",
+ "country"
+ ],
+ "type": "object"
+ },
+ "bic": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "BIC if mapped."
+ },
+ "cost_usdc": {
+ "type": "number"
+ },
+ "error": {
+ "type": "string"
+ },
+ "found": {
+ "type": "boolean"
+ },
+ "iid": {
+ "description": "Normalized 5-digit BC-Nummer.",
+ "type": "string"
+ },
+ "institution": {
+ "additionalProperties": false,
+ "properties": {
+ "headquarters_iid": {
+ "type": "string"
+ },
+ "iid_type": {
+ "description": "headquarters | branch | other",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "type": {
+ "description": "bank | cantonal_bank | postfinance | raiffeisen | central_bank | foreign_participant",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "iid_type",
+ "headquarters_iid"
+ ],
+ "type": "object"
+ },
+ "message": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "payment_services": {
+ "additionalProperties": false,
+ "properties": {
+ "eurosic": {
+ "type": "boolean"
+ },
+ "instant_payments_chf": {
+ "type": "boolean"
+ },
+ "lsv_bdd_chf": {
+ "type": "boolean"
+ },
+ "lsv_bdd_eur": {
+ "type": "boolean"
+ },
+ "rtgs_chf": {
+ "type": "boolean"
+ },
+ "sic": {
+ "description": "Swiss Interbank Clearing.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "sic",
+ "rtgs_chf",
+ "instant_payments_chf",
+ "eurosic",
+ "lsv_bdd_chf",
+ "lsv_bdd_eur"
+ ],
+ "type": "object"
+ },
+ "qr_iid": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "QR-bill enabled IID."
+ },
+ "redirected_from": {
+ "type": "string"
+ },
+ "sic_iid": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "valid_on": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+}