Microsoft Graph · Schema

mobileAppPublishingState

Indicates the publishing state of an app.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmobileapppublishingstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.mobileAppPublishingState",
  "title": "mobileAppPublishingState",
  "enum": [
    "notPublished",
    "processing",
    "published"
  ],
  "type": "string",
  "description": "Indicates the publishing state of an app.",
  "x-ms-enum": {
    "name": "mobileAppPublishingState",
    "modelAsString": false,
    "values": [
      {
        "value": "notPublished",
        "description": "The app is not yet published.",
        "name": "notPublished"
      },
      {
        "value": "processing",
        "description": "The app is pending service-side processing.",
        "name": "processing"
      },
      {
        "value": "published",
        "description": "The app is published.",
        "name": "published"
      }
    ]
  }
}