Adyen · Schema

BalancePlatform

BalancePlatform schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
description string Your description of the balance platform, maximum 300 characters.
id string The unique identifier of the balance platform.
status string The status of the balance platform. Possible values: **Active**, **Inactive**, **Closed**, **Suspended**.
View JSON Schema on GitHub

JSON Schema

configuration-balance-platform-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/configuration-balance-platform-schema.json",
  "title": "BalancePlatform",
  "description": "BalancePlatform schema from Adyen API",
  "type": "object",
  "properties": {
    "description": {
      "description": "Your description of the balance platform, maximum 300 characters.",
      "maxLength": 300,
      "type": "string"
    },
    "id": {
      "description": "The unique identifier of the balance platform.",
      "type": "string"
    },
    "status": {
      "description": "The status of the balance platform.\n\nPossible values: **Active**, **Inactive**, **Closed**, **Suspended**.",
      "type": "string"
    }
  },
  "required": [
    "id"
  ]
}