Synctera · Schema

emboss_name

The customer details to emboss on the card - Defaults to customer first and last name. Is limited to 21 characters. Valid characters are A-Z, a-z, 0-9, space ( ), period (.), comma (,), forward slash (/), hyphen (-), ampersand (&), single quote (').

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
line_1 string line 1
line_2 string line 2
View JSON Schema on GitHub

JSON Schema

synctera-emboss-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/emboss_name",
  "title": "emboss_name",
  "description": "The customer details to emboss on the card - Defaults to customer first and last name. Is limited to 21 characters. Valid characters are A-Z, a-z, 0-9, space ( ), period (.), comma (,), forward slash (/), hyphen (-), ampersand (&), single quote (').",
  "properties": {
    "line_1": {
      "description": "line 1",
      "example": "Krystal Bosco DVM",
      "type": "string"
    },
    "line_2": {
      "description": "line 2",
      "example": "Lesch, Schimmel and Green",
      "type": "string"
    }
  },
  "required": [
    "line_1"
  ],
  "type": "object"
}