Adyen · Schema

SubMerchantInfo

SubMerchantInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
address object
id string
mcc string
name string
taxId string
View JSON Schema on GitHub

JSON Schema

checkout-sub-merchant-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-sub-merchant-info-schema.json",
  "title": "SubMerchantInfo",
  "description": "SubMerchantInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/BillingAddress"
    },
    "id": {
      "type": "string"
    },
    "mcc": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "taxId": {
      "type": "string"
    }
  }
}