Flipdish · Schema

DynamicFormField

DynamicFormField schema from Flipdish API - Stores.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Identifier string
Label string
Placeholder string
Rules object
Mapping object
Modifiers array
Value object
Scopes string
View JSON Schema on GitHub

JSON Schema

stores-dynamic-form-field-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/stores-dynamic-form-field-schema.json",
  "title": "DynamicFormField",
  "description": "DynamicFormField schema from Flipdish API - Stores.",
  "type": "object",
  "properties": {
    "Identifier": {
      "type": "string",
      "example": "string"
    },
    "Label": {
      "type": "string",
      "example": "string"
    },
    "Placeholder": {
      "type": "string",
      "example": "string"
    },
    "Rules": {
      "$ref": "#/components/schemas/DynamicFormRules"
    },
    "Mapping": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "Modifiers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "string"
      ]
    },
    "Value": {
      "type": "object"
    },
    "Scopes": {
      "type": "string",
      "example": "string"
    }
  }
}