NCR · Schema

LocalizedText

A set of locale-specific values.

RestaurantRetailBankingATMPoint of SaleCommerceFortune 500

Properties

Name Type Description
values array
View JSON Schema on GitHub

JSON Schema

ncr-voyix-commerce-platform-localized-text-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LocalizedText",
  "description": "A set of locale-specific values.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ncr/refs/heads/main/json-schema/ncr-voyix-commerce-platform-localized-text-schema.json",
  "type": "object",
  "properties": {
    "values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "locale": {
            "type": "string",
            "example": "en-US"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}