SumUp · Schema

Ownership

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
share integer The percent of ownership shares held by the person expressed in percent mille (1/100000). Only persons with the relationship `owner` can have ownership.
View JSON Schema on GitHub

JSON Schema

ownership.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Ownership",
  "type": "object",
  "properties": {
    "share": {
      "description": "The percent of ownership shares held by the person expressed in percent mille (1/100000). Only persons with the relationship `owner` can have ownership.\n",
      "type": "integer",
      "format": "int32",
      "example": 50000,
      "maximum": 100000,
      "minimum": 25000
    }
  },
  "required": [
    "share"
  ]
}