Flipdish · Schema

Language

Sorted Language

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
LanguageId string ISO 639-1 Language Code
DisplayOrder integer Display Order
Name string Language Name
Enabled boolean Is the language enabled for use.
View JSON Schema on GitHub

JSON Schema

customers-language-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-language-schema.json",
  "title": "Language",
  "description": "Sorted Language",
  "type": "object",
  "properties": {
    "LanguageId": {
      "description": "ISO 639-1 Language Code",
      "type": "string",
      "example": "500123"
    },
    "DisplayOrder": {
      "format": "int32",
      "description": "Display Order",
      "type": "integer",
      "example": 1
    },
    "Name": {
      "description": "Language Name",
      "type": "string",
      "example": "Example Name"
    },
    "Enabled": {
      "description": "Is the language enabled for use.",
      "type": "boolean",
      "example": true
    }
  }
}