Microsoft Graph · Schema

actionState

State of the action on the device

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphactionstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.actionState",
  "title": "actionState",
  "enum": [
    "none",
    "pending",
    "canceled",
    "active",
    "done",
    "failed",
    "notSupported"
  ],
  "type": "string",
  "description": "State of the action on the device",
  "x-ms-enum": {
    "name": "actionState",
    "modelAsString": false,
    "values": [
      {
        "value": "none",
        "description": "Not a valid action state",
        "name": "none"
      },
      {
        "value": "pending",
        "description": "Action is pending",
        "name": "pending"
      },
      {
        "value": "canceled",
        "description": "Action has been cancelled.",
        "name": "canceled"
      },
      {
        "value": "active",
        "description": "Action is active.",
        "name": "active"
      },
      {
        "value": "done",
        "description": "Action completed without errors.",
        "name": "done"
      },
      {
        "value": "failed",
        "description": "Action failed",
        "name": "failed"
      },
      {
        "value": "notSupported",
        "description": "Action is not supported.",
        "name": "notSupported"
      }
    ]
  }
}