SpotOn · Schema

OwnerInfo

Employee ownership details for an order.

RestaurantPoint of SalePaymentsOnline OrderingReservationsReporting

Properties

Name Type Description
employeeId string Employee identifier.
employeeName string Employee name.
jobPositionId string Job position identifier held during ownership.
View JSON Schema on GitHub

JSON Schema

restaurant-pos-export-owner-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OwnerInfo",
  "description": "Employee ownership details for an order.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spoton/refs/heads/main/json-schema/restaurant-pos-export-owner-info-schema.json",
  "type": "object",
  "properties": {
    "employeeId": {
      "type": "string",
      "description": "Employee identifier."
    },
    "employeeName": {
      "type": "string",
      "description": "Employee name."
    },
    "jobPositionId": {
      "type": "string",
      "description": "Job position identifier held during ownership."
    }
  }
}