Adyen · Schema

SwishInfo

PaymentsFinancial ServicesFintech

Properties

Name Type Description
swishNumber string Swish number. Format: 10 digits without spaces. For example, **1231111111**.
View JSON Schema on GitHub

JSON Schema

adyen-swishinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SwishInfo",
  "title": "SwishInfo",
  "properties": {
    "swishNumber": {
      "description": "Swish number. Format: 10 digits without spaces. For example, **1231111111**.",
      "maxLength": 10,
      "minLength": 10,
      "type": "string"
    }
  },
  "required": [
    "swishNumber"
  ],
  "type": "object"
}