Flipdish · Schema

AddressFormResponse

A response of a dyanmic form definition.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
FormData array List of field definitions.
CountryCode string ISO two letter code.
Language string ISO culture code.
DisplayFormat object
View JSON Schema on GitHub

JSON Schema

stores-address-form-response-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-address-form-response-schema.json",
  "title": "AddressFormResponse",
  "description": "A response of a dyanmic form definition.",
  "type": "object",
  "properties": {
    "FormData": {
      "description": "List of field definitions.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DynamicFormField"
      },
      "example": []
    },
    "CountryCode": {
      "description": "ISO two letter code.",
      "type": "string",
      "example": "IE"
    },
    "Language": {
      "description": "ISO culture code.",
      "type": "string",
      "example": "string"
    },
    "DisplayFormat": {
      "$ref": "#/components/schemas/AddressFormDisplayFormat"
    }
  }
}