SumUp · Schema
BusinessProfile
Business information about the merchant. This information will be visible to the merchant's customers.
PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The customer-facing business name. |
| dynamic_descriptor | string | The descriptor is the text that your customer sees on their bank account statement. The more recognisable your descriptor is, the less risk you have of receiving disputes (e.g. chargebacks). |
| website | string | The business's publicly available website. |
| string | A publicly available email address. | |
| phone_number | object | |
| address | object | |
| branding | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BusinessProfile",
"description": "Business information about the merchant. This information will be visible to the merchant's customers.\n",
"type": "object",
"properties": {
"name": {
"description": "The customer-facing business name.",
"type": "string",
"example": "Example Coffee",
"maxLength": 150,
"minLength": 1
},
"dynamic_descriptor": {
"description": "The descriptor is the text that your customer sees on their bank account statement.\nThe more recognisable your descriptor is, the less risk you have of receiving disputes (e.g. chargebacks).\n",
"type": "string",
"example": "Example Coffee",
"maxLength": 30,
"minLength": 1,
"pattern": "^[a-zA-Z0-9 \\-+\\'_.]{0,30}$"
},
"website": {
"description": "The business's publicly available website.",
"type": "string",
"format": "uri",
"example": "https://example.com",
"maxLength": 255
},
"email": {
"description": "A publicly available email address.",
"type": "string",
"example": "[email protected]",
"maxLength": 255
},
"phone_number": {
"$ref": "#/components/schemas/PhoneNumber"
},
"address": {
"$ref": "#/components/schemas/Address"
},
"branding": {
"$ref": "#/components/schemas/Branding"
}
}
}