Adyen · Schema

Standalone

Standalone schema from Adyen API

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

management-standalone-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-standalone-schema.json",
  "title": "Standalone",
  "description": "Standalone schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}