Flipdish · Schema
StoreListItem
Store id and name
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| StoreId | integer | Store Id |
| StoreName | string | Store Name |
| StoreGroupId | integer | Store Group Id |
| StoreGroupName | string | Store Group Name |
| HasLoyaltyCampaign | boolean | Store has loyalty campaign |
| HasRetentionCampaign | boolean | Store has retention campaign |
| IsPublished | boolean | Is Published store |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-store-list-item-schema.json",
"title": "StoreListItem",
"description": "Store id and name",
"type": "object",
"properties": {
"StoreId": {
"format": "int32",
"description": "Store Id",
"type": "integer",
"example": 500123
},
"StoreName": {
"description": "Store Name",
"type": "string",
"example": "Example Name"
},
"StoreGroupId": {
"format": "int32",
"description": "Store Group Id",
"type": "integer",
"example": 500123
},
"StoreGroupName": {
"description": "Store Group Name",
"type": "string",
"example": "Example Name"
},
"HasLoyaltyCampaign": {
"description": "Store has loyalty campaign",
"type": "boolean",
"example": true
},
"HasRetentionCampaign": {
"description": "Store has retention campaign",
"type": "boolean",
"example": true
},
"IsPublished": {
"description": "Is Published store",
"type": "boolean",
"example": true
}
}
}