Flipdish · Schema
PlayStoreConfigModel
Play Store configuration model
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| WhiteLabelId | integer | White label ID |
| BundleId | string | Bundle ID |
| Description | string | Description |
| ShortDescription | string | Short description |
| Copyright | string | Copyright |
| Keywords | string | Keywords |
| MarketingUrl | string | Marketing URL |
| PrivacyUrl | string | Privacy URL |
| SupportUrl | string | Support URL |
| PlayConsoleAccount | integer | Play Console account 0: UK, 1: IE |
| ReleaseNotes | string | Release notes |
| StoreIcon | string | Store icon URL |
| ReadyToPublishAndroid | boolean | Ready to publish Android |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-play-store-config-model-schema.json",
"title": "PlayStoreConfigModel",
"description": "Play Store configuration model",
"type": "object",
"properties": {
"WhiteLabelId": {
"format": "int32",
"description": "White label ID",
"type": "integer",
"example": 500123
},
"BundleId": {
"description": "Bundle ID",
"type": "string",
"example": "500123"
},
"Description": {
"description": "Description",
"type": "string",
"example": "string"
},
"ShortDescription": {
"description": "Short description",
"type": "string",
"example": "string"
},
"Copyright": {
"description": "Copyright",
"type": "string",
"example": "string"
},
"Keywords": {
"description": "Keywords",
"type": "string",
"example": "string"
},
"MarketingUrl": {
"description": "Marketing URL",
"type": "string",
"example": "https://api.flipdish.co/example"
},
"PrivacyUrl": {
"description": "Privacy URL",
"type": "string",
"example": "https://api.flipdish.co/example"
},
"SupportUrl": {
"description": "Support URL",
"type": "string",
"example": "https://api.flipdish.co/example"
},
"PlayConsoleAccount": {
"format": "int32",
"description": "Play Console account\r\n0: UK, 1: IE",
"type": "integer",
"example": 3
},
"ReleaseNotes": {
"description": "Release notes",
"type": "string",
"example": "string"
},
"StoreIcon": {
"description": "Store icon URL",
"type": "string",
"example": "string"
},
"ReadyToPublishAndroid": {
"description": "Ready to publish Android",
"type": "boolean",
"example": true
}
}
}