Skip to content

Latest commit

 

History

History
64 lines (54 loc) · 1.99 KB

File metadata and controls

64 lines (54 loc) · 1.99 KB
title linkScopeAbilities resource type
description Represents the sharing abilities for each possible sharingRole within a particular sharing link scope.
author ziebd
ms.localizationpriority medium
ms.subservice sharepoint
doc_type resourcePageType
ms.date 04/16/2024

linkScopeAbilities resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the sharing abilities for each possible sharingRole within a particular sharing link scope.

Properties

Property Type Description
blockDownloadLinkAbilities linkRoleAbilities The blockDownload link abilities.
editLinkAbilities linkRoleAbilities The edit link abilities.
manageListLinkAbilities linkRoleAbilities The manageList link abilities.
readLinkAbilities linkRoleAbilities The read link abilities.
reviewLinkAbilities linkRoleAbilities The review link abilities.
submitOnlyLinkAbilities linkRoleAbilities The submitOnly link abilities.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.linkScopeAbilities",
  "readLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  },
  "editLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  },
  "reviewLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  },
  "manageListLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  },
  "blockDownloadLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  },
  "submitOnlyLinkAbilities": {
    "@odata.type": "microsoft.graph.linkRoleAbilities"
  }
}