NCR · Schema

User

User schema from NCR Voyix Commerce Platform APIs

RestaurantRetailBankingATMPoint-of-SaleCommerceFortune 500

Properties

Name Type Description
username string
email string
firstName string
lastName string
id string
View JSON Schema on GitHub

JSON Schema

ncr-voyix-commerce-platform-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "User",
  "description": "User schema from NCR Voyix Commerce Platform APIs",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ncr/refs/heads/main/json-schema/ncr-voyix-commerce-platform-user-schema.json",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "example": "jsmith"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "jsmith@example.com"
    },
    "firstName": {
      "type": "string",
      "example": "Downtown Store"
    },
    "lastName": {
      "type": "string",
      "example": "Downtown Store"
    },
    "id": {
      "type": "string"
    }
  },
  "required": [
    "username"
  ]
}