Flipdish · Schema

Metafield

Metafield

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Key string Key of the metafield. Allowed characters: lowercase letters, numbers, hyphen, underscore and dot
Value string Value of the metafield.
View JSON Schema on GitHub

JSON Schema

catalog-metafield-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/catalog-metafield-schema.json",
  "title": "Metafield",
  "description": "Metafield",
  "type": "object",
  "properties": {
    "Key": {
      "description": "Key of the metafield.\r\nAllowed characters: lowercase letters, numbers, hyphen, underscore and dot",
      "type": "string",
      "example": "string"
    },
    "Value": {
      "description": "Value of the metafield.",
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}