NCR · JSON Structure

Ncr Voyix Commerce Platform Site Input Structure

SiteInput schema from NCR Voyix Commerce Platform APIs

Type: object Properties: 8 Required: 3
RestaurantRetailBankingATMPoint of SaleCommerceFortune 500

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

Properties

siteName enterpriseUnitName referenceId address coordinates currency timeZone status

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "description": "SiteInput schema from NCR Voyix Commerce Platform APIs",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ncr/refs/heads/main/json-structure/ncr-voyix-commerce-platform-site-input-structure.json",
  "type": "object",
  "properties": {
    "siteName": {
      "type": "string",
      "example": "Downtown Store"
    },
    "enterpriseUnitName": {
      "type": "string",
      "example": "Downtown Store"
    },
    "referenceId": {
      "type": "string",
      "example": "example"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "coordinates": {
      "$ref": "#/components/schemas/Coordinates"
    },
    "currency": {
      "type": "string",
      "example": "USD"
    },
    "timeZone": {
      "type": "string",
      "example": "America/New_York"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    }
  },
  "required": [
    "siteName",
    "enterpriseUnitName",
    "status"
  ],
  "name": "SiteInput"
}