Adyen · Schema

CartesBancairesInfo

CartesBancairesInfo schema from Adyen API

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

management-cartes-bancaires-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/management-cartes-bancaires-info-schema.json",
  "title": "CartesBancairesInfo",
  "description": "CartesBancairesInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "siret": {
      "description": "Cartes Bancaires SIRET. Format: 14 digits.",
      "type": "string"
    },
    "transactionDescription": {
      "description": "Information regarding the transaction description.",
      "$ref": "#/components/schemas/TransactionDescriptionInfo"
    }
  },
  "required": [
    "siret"
  ]
}