SumUp · Schema

PersonalIdentifier

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
ref string The unique reference for the personal identifier type as defined in the country SDK.
value string The company identifier value.
View JSON Schema on GitHub

JSON Schema

personalidentifier.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PersonalIdentifier",
  "type": "object",
  "properties": {
    "ref": {
      "description": "The unique reference for the personal identifier type as defined in the country SDK.\n",
      "type": "string",
      "examples": [
        "br.cpf"
      ]
    },
    "value": {
      "description": "The company identifier value.\n",
      "type": "string",
      "examples": [
        "847.060.136-90"
      ],
      "maxLength": 30
    }
  },
  "examples": [
    {
      "ref": "br.cpf",
      "value": "847.060.136-90"
    }
  ],
  "required": [
    "ref",
    "value"
  ]
}