Flipdish · Schema

UpdateMobileAppsSubmissionStatus

Update Mobile Apps Status

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MobileAppsSubmissionStatusId integer Mobile Apps Submission Status Id
Type string Mobile Type
AppStatus string Mobile App Status
UpdateStatus string Mobile App Status
LastUpdateStatusTime string Mobile LastUpdateStatusTime
Notes string Mobile Notes
View JSON Schema on GitHub

JSON Schema

apps-update-mobile-apps-submission-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-update-mobile-apps-submission-status-schema.json",
  "title": "UpdateMobileAppsSubmissionStatus",
  "description": "Update Mobile Apps Status",
  "type": "object",
  "properties": {
    "MobileAppsSubmissionStatusId": {
      "format": "int32",
      "description": "Mobile Apps Submission Status Id",
      "type": "integer",
      "nullable": true,
      "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"
    },
    "Notes": {
      "description": "Mobile Notes",
      "type": "string",
      "example": "string"
    }
  }
}