Nomba · Schema

Terminal

PaymentsFintechBankingTransfersVirtual AccountsCheckoutCross-Border PaymentsCards

Properties

Name Type Description
terminalId string The unique identifier for the terminal.
serialNumber string The serial number of the POS terminal.
status string The current status of the terminal.
assignedAt string The date and time the terminal was assigned to the account.
View JSON Schema on GitHub

JSON Schema

nomba-terminal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Terminal",
  "title": "Terminal",
  "type": "object",
  "properties": {
    "terminalId": {
      "type": "string",
      "description": "The unique identifier for the terminal."
    },
    "serialNumber": {
      "type": "string",
      "description": "The serial number of the POS terminal."
    },
    "status": {
      "type": "string",
      "description": "The current status of the terminal."
    },
    "assignedAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the terminal was assigned to the account."
    }
  }
}