Flipdish · Schema
StoreValidationConfig
Hey
RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook
Properties
| Name | Type | Description |
|---|---|---|
| StoreId | integer | Store identifier |
| Name | string | Name |
| IsValid | boolean | Is Store Valid for Kiosk |
| StoreGroupId | integer | Store group Id |
| ConfigValidation | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-store-validation-config-schema.json",
"title": "StoreValidationConfig",
"description": "Hey",
"type": "object",
"properties": {
"StoreId": {
"format": "int32",
"description": "Store identifier",
"type": "integer",
"example": 500123
},
"Name": {
"description": "Name",
"type": "string",
"example": "Example Name"
},
"IsValid": {
"description": "Is Store Valid for Kiosk",
"type": "boolean",
"example": true
},
"StoreGroupId": {
"format": "int32",
"description": "Store group Id",
"type": "integer",
"example": 500123
},
"ConfigValidation": {
"$ref": "#/components/schemas/StoreConfig"
}
}
}