Microsoft Graph · Schema

managedAppClipboardSharingLevel

Represents the level to which the device's clipboard may be shared between apps

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmanagedappclipboardsharinglevel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.managedAppClipboardSharingLevel",
  "title": "managedAppClipboardSharingLevel",
  "enum": [
    "allApps",
    "managedAppsWithPasteIn",
    "managedApps",
    "blocked"
  ],
  "type": "string",
  "description": "Represents the level to which the device's clipboard may be shared between apps",
  "x-ms-enum": {
    "name": "managedAppClipboardSharingLevel",
    "modelAsString": false,
    "values": [
      {
        "value": "allApps",
        "description": "Sharing is allowed between all apps, managed or not",
        "name": "allApps"
      },
      {
        "value": "managedAppsWithPasteIn",
        "description": "Sharing is allowed between all managed apps with paste in enabled",
        "name": "managedAppsWithPasteIn"
      },
      {
        "value": "managedApps",
        "description": "Sharing is allowed between all managed apps",
        "name": "managedApps"
      },
      {
        "value": "blocked",
        "description": "Sharing between apps is disabled",
        "name": "blocked"
      }
    ]
  }
}