Flipdish · Schema
MobileAppsSubmissionStatus
Mobile Apps Status
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| MobileAppsSubmissionStatusId | integer | Mobile Apps Submission Status Id |
| MobileAppsSubmissionId | integer | Mobile Apps Submission Id |
| Type | string | Mobile Type |
| AppStatus | string | Mobile App Status |
| UpdateStatus | string | Mobile App Status |
| LastUpdateStatusTime | string | Mobile LastUpdateStatusTime |
| CreateTime | string | Mobile CreateTime |
| UpdateTime | string | Mobile UpdateTime |
| Notes | string | Mobile Notes |
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-status-schema.json",
"title": "MobileAppsSubmissionStatus",
"description": "Mobile Apps Status",
"type": "object",
"properties": {
"MobileAppsSubmissionStatusId": {
"format": "int32",
"description": "Mobile Apps Submission Status Id",
"type": "integer",
"example": 500123
},
"MobileAppsSubmissionId": {
"format": "int32",
"description": "Mobile Apps Submission Id",
"type": "integer",
"example": 500123
},
"Type": {
"description": "Mobile Type",
"enum": [
"None",
"Android",
"IOS"
],
"type": "string",
"example": "None"
},
"AppStatus": {
"description": "Mobile App Status",
"enum": [
"None",
"Published",
"Unpublished"
],
"type": "string",
"example": "None"
},
"UpdateStatus": {
"description": "Mobile App Status",
"enum": [
"None",
"Submitted",
"InReview",
"Rejected",
"Approved",
"Published"
],
"type": "string",
"example": "None"
},
"LastUpdateStatusTime": {
"format": "date-time",
"description": "Mobile LastUpdateStatusTime",
"type": "string",
"nullable": true,
"example": "2026-06-02T12:00:00Z"
},
"CreateTime": {
"format": "date-time",
"description": "Mobile CreateTime",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"UpdateTime": {
"format": "date-time",
"description": "Mobile UpdateTime",
"type": "string",
"nullable": true,
"example": "2026-06-02T12:00:00Z"
},
"Notes": {
"description": "Mobile Notes",
"type": "string",
"example": "string"
}
}
}