Adyen · Schema

Standalone

PaymentsFinancial ServicesFintech

Properties

Name Type Description
currencyCode string The default currency of the standalone payment terminal as an [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.
enableStandalone boolean Enable standalone mode.
View JSON Schema on GitHub

JSON Schema

adyen-standalone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Standalone",
  "title": "Standalone",
  "properties": {
    "currencyCode": {
      "description": "The default currency of the standalone payment terminal as an [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.",
      "maxLength": 3,
      "minLength": 3,
      "type": "string"
    },
    "enableStandalone": {
      "description": "Enable standalone mode.",
      "type": "boolean"
    }
  },
  "type": "object"
}