Microsoft Graph · Schema

runAsAccountType

Indicates the type of execution context the app runs in.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrunasaccounttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.runAsAccountType",
  "title": "runAsAccountType",
  "enum": [
    "system",
    "user"
  ],
  "type": "string",
  "description": "Indicates the type of execution context the app runs in.",
  "x-ms-enum": {
    "name": "runAsAccountType",
    "modelAsString": false,
    "values": [
      {
        "value": "system",
        "description": "System context",
        "name": "system"
      },
      {
        "value": "user",
        "description": "User context",
        "name": "user"
      }
    ]
  }
}