Flipdish · Schema
MobileAppsSubmissionDetails
Mobile Apps form submission
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| MobileAppsSubmissionId | integer | Mobile Apps Submission Id |
| AppName | string | App Name |
| AppDescription | string | App Description |
| AppShortDescription | string | App Description |
| Keywords | array | Keywords |
| AppLogoUrl | string | Logo URL |
| AutoPublish | boolean | Publish automatically |
| Status | array | Mobile App Status |
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-mobile-apps-submission-details-schema.json",
"title": "MobileAppsSubmissionDetails",
"description": "Mobile Apps form submission",
"type": "object",
"properties": {
"MobileAppsSubmissionId": {
"format": "int32",
"description": "Mobile Apps Submission Id",
"type": "integer",
"example": 500123
},
"AppName": {
"description": "App Name",
"type": "string",
"example": "Example Name"
},
"AppDescription": {
"description": "App Description",
"type": "string",
"example": "string"
},
"AppShortDescription": {
"description": "App Description",
"type": "string",
"example": "string"
},
"Keywords": {
"description": "Keywords",
"type": "array",
"items": {
"type": "string"
},
"example": [
"string"
]
},
"AppLogoUrl": {
"description": "Logo URL",
"type": "string",
"example": "https://api.flipdish.co/example"
},
"AutoPublish": {
"description": "Publish automatically",
"type": "boolean",
"example": true
},
"Status": {
"description": "Mobile App Status",
"type": "array",
"items": {
"$ref": "#/components/schemas/MobileAppsSubmissionStatus"
},
"example": []
}
}
}