Adyen · Schema

SplitConfiguration

SplitConfiguration schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
description string Your description for the split configuration.
rules array Array of rules that define the split configuration behavior.
splitConfigurationId string Unique identifier of the split configuration.
stores array List of stores to which the split configuration applies.
View JSON Schema on GitHub

JSON Schema

management-split-configuration-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-split-configuration-schema.json",
  "title": "SplitConfiguration",
  "description": "SplitConfiguration schema from Adyen API",
  "type": "object",
  "properties": {
    "description": {
      "description": "Your description for the split configuration.",
      "maxLength": 300,
      "type": "string"
    },
    "rules": {
      "description": "Array of rules that define the split configuration behavior.",
      "items": {
        "$ref": "#/components/schemas/SplitConfigurationRule"
      },
      "type": "array"
    },
    "splitConfigurationId": {
      "description": "Unique identifier of the split configuration.",
      "readOnly": true,
      "type": "string"
    },
    "stores": {
      "description": "List of stores to which the split configuration applies.",
      "items": {
        "type": "string"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "required": [
    "description",
    "rules"
  ]
}