Microsoft Graph · Schema

sharedPCAllowedAccountType

Type of accounts that are allowed to share the PC.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsharedpcallowedaccounttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.sharedPCAllowedAccountType",
  "title": "sharedPCAllowedAccountType",
  "enum": [
    "guest",
    "domain"
  ],
  "type": "string",
  "description": "Type of accounts that are allowed to share the PC.",
  "x-ms-enum-flags": {
    "isFlags": true
  },
  "x-ms-enum": {
    "name": "sharedPCAllowedAccountType",
    "modelAsString": false,
    "values": [
      {
        "value": "guest",
        "description": "Only guest accounts.",
        "name": "guest"
      },
      {
        "value": "domain",
        "description": "Only domain-joined accounts.",
        "name": "domain"
      }
    ]
  }
}