Adyen · Schema

CartesBancairesInfo

PaymentsFinancial ServicesFintech

Properties

Name Type Description
siret string Cartes Bancaires SIRET. Format: 14 digits.
transactionDescription object Information regarding the transaction description.
View JSON Schema on GitHub

JSON Schema

adyen-cartesbancairesinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CartesBancairesInfo",
  "title": "CartesBancairesInfo",
  "properties": {
    "siret": {
      "description": "Cartes Bancaires SIRET. Format: 14 digits.",
      "type": "string"
    },
    "transactionDescription": {
      "description": "Information regarding the transaction description.",
      "$ref": "#/components/schemas/TransactionDescriptionInfo"
    }
  },
  "required": [
    "siret"
  ],
  "type": "object"
}