Aloha POS · JSON Structure

Ncr Voyix Platform Site Structure

A site (location) provisioned on the NCR Voyix Platform.

Type: object Properties: 5 Required: 3
POSRestaurantHospitalityNCR

Site is a JSON Structure definition published by Aloha POS, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id siteName enterpriseUnitName coordinates status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aloha-pos/refs/heads/main/json-structure/ncr-voyix-platform-site-structure.json",
  "name": "Site",
  "description": "A site (location) provisioned on the NCR Voyix Platform.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric site identifier."
    },
    "siteName": {
      "type": "string",
      "description": "Display name of the site."
    },
    "enterpriseUnitName": {
      "type": "string",
      "description": "Enterprise unit name associated with the site."
    },
    "coordinates": {
      "type": "object",
      "description": "Geographic coordinates of the site.",
      "properties": {
        "latitude": {
          "type": "double"
        },
        "longitude": {
          "type": "double"
        }
      }
    },
    "status": {
      "type": "string",
      "description": "Site lifecycle status.",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ]
    }
  },
  "required": [
    "siteName",
    "enterpriseUnitName",
    "status"
  ]
}