Synctera · Schema

recipient_name

The name of the recipient to whom the card will be shipped

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
first_name string
last_name string
middle_name string
View JSON Schema on GitHub

JSON Schema

synctera-recipient-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/recipient_name",
  "title": "recipient_name",
  "description": "The name of the recipient to whom the card will be shipped",
  "properties": {
    "first_name": {
      "example": "Thea",
      "type": "string"
    },
    "last_name": {
      "example": "Ritchie",
      "type": "string"
    },
    "middle_name": {
      "example": "a",
      "type": "string"
    }
  },
  "required": [
    "first_name",
    "last_name"
  ],
  "type": "object"
}