You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/embedded/tutorials/metadata.md
+32-25Lines changed: 32 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
title: SharePoint Embedded Container Metadata
3
-
description: Add metadata in Containers and Files
3
+
description: Add metadata in Containers and Files.
4
4
ms.date: 3/22/2024
5
5
ms.localizationpriority: high
6
6
---
7
7
8
-
# Using Metadata on Containers and Files
8
+
# Using Metadata with SharePoint Embedded Containers
9
9
10
10
In SharePoint Embedded, columns can be added to [Containers](../concepts/app-concepts/containertypes.md) to address scenarios requiring custom metadata via Graph APIs. Content in the container can then set desired values for corresponding metadata. Metadata are schematized and can be queried. Note the APIs to create and manage columns are on container instances level – an application is responsible for defining and managing the columns across its containers.
11
11
@@ -14,8 +14,8 @@ In SharePoint Embedded, columns can be added to [Containers](../concepts/app-con
14
14
1.[Authorization and Authentication](#authorization-and-authentication)
15
15
1.[Limitations](#limitations)
16
16
1.[POST: Create a column in a fileStorageContainer](#create-a-column-in-a-filestoragecontainer)
17
-
1.[GET: Get a column in a fileStorageContainer by id](#get-a-column-in-a-filestoragecontainer-by-id)
18
-
1.[PATCH: Update a column in a fileStorageContainer by id](#update-a-column-in-a-filestoragecontainer-by-id)
17
+
1.[GET: Get a column in a fileStorageContainer by ID](#get-a-column-in-a-filestoragecontainer-by-id)
18
+
1.[PATCH: Update a column in a fileStorageContainer by ID](#update-a-column-in-a-filestoragecontainer-by-id)
19
19
1.[DELETE: Delete a column from a fileStorageContainer](#delete-a-column-from-a-filestoragecontainer)
20
20
1.[GET: List columns in a fileStorageContainer](#list-columns-in-a-filestoragecontainer)
21
21
1.[GET: Get column values of an item in a fileStorageContainer's drive](#get-column-values-of-an-item-in-a-filestoragecontainers-drive)
@@ -28,16 +28,20 @@ In SharePoint Embedded, columns can be added to [Containers](../concepts/app-con
28
28
29
29
App+User (Delegated) or App-only (Application) Bearer {token} is required in Authorization header.
30
30
31
+
> [!NOTE]
32
+
> Container owners can Create, Update and Delete Container columns
33
+
> All Container member can Read and List Container columns
## Query a fileStorageContainer's driveitems with Odata query options on custom columns
450
457
451
-
This API will let users query drive items in a fileStorageContainer with `$expand`, `$filter`, and `$orderby` Odata query options on their custom columns.
458
+
This API lets users query drive items in a fileStorageContainer with `$expand`, `$filter`, and `$orderby` Odata query options on their custom columns.
0 commit comments