Flipdish · Schema

CreateMetadata

Create metadata

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
StoreId integer Store identifier
Key string Metadata key (Unique identifier)
Value string Metadata value
View JSON Schema on GitHub

JSON Schema

menus-create-metadata-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/menus-create-metadata-schema.json",
  "title": "CreateMetadata",
  "description": "Create metadata",
  "type": "object",
  "properties": {
    "StoreId": {
      "format": "int32",
      "description": "Store identifier",
      "type": "integer",
      "example": 500123
    },
    "Key": {
      "description": "Metadata key (Unique identifier)",
      "maxLength": 128,
      "minLength": 0,
      "type": "string",
      "example": "string"
    },
    "Value": {
      "description": "Metadata value",
      "maxLength": 4000,
      "minLength": 0,
      "type": "string",
      "example": "string"
    }
  }
}