Skip to content

Commit 06ef5d3

Browse files
content edits
- remove 'sections' section in content - MSDOCS already renders a TOC... this would be a dupe - always use "Microsoft Graph" when referring to "Graph" - only & always use single line break between content blocks (headings, paragraphs, bullet lists, code listings, alerts, etc) - grammatical & typo fixes
1 parent abea88c commit 06ef5d3

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

docs/embedded/tutorials/metadata.md

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,14 @@ ms.localizationpriority: high
77

88
# Using Metadata with SharePoint Embedded Containers
99

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-
12-
13-
#### Sections
14-
1. [Authorization and Authentication](#authorization-and-authentication)
15-
1. [Limitations](#limitations)
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)
19-
1. [DELETE: Delete a column from a fileStorageContainer](#delete-a-column-from-a-filestoragecontainer)
20-
1. [GET: List columns in a fileStorageContainer](#list-columns-in-a-filestoragecontainer)
21-
1. [GET: Get column values of an item in a fileStorageContainer's drive](#get-column-values-of-an-item-in-a-filestoragecontainers-drive)
22-
1. [PATCH: Patch column values of an item in a fileStorageContainer's drive](#patch-column-values-of-an-item-in-a-filestoragecontainers-drive)
23-
1. [GET: Query a fileStorageContainer's driveitems with Odata query options on custom columns](#query-a-filestoragecontainers-driveitems-with-odata-query-options-on-custom-columns)
24-
25-
10+
In SharePoint Embedded, columns can be added to [Containers](../concepts/app-concepts/containertypes.md) to address scenarios requiring custom metadata via Microsoft Graph APIs. Content in the container can then set desired values for corresponding metadata. Metadata is schematized and can be queried. Note the APIs to create and manage columns are on the container instances level – an application is responsible for defining and managing the columns across its containers.
2611

2712
## Authorization and Authentication
2813

29-
App+User (Delegated) or App-only (Application) Bearer {token} is required in Authorization header.
14+
App+User (Delegated) or App-only (Application) Bearer {token} is required in the Authorization header.
3015

3116
> [!NOTE]
32-
> Container owners can Create, Update and Delete Container columns
17+
> Container owners can Create, Update, and Delete Container columns
3318
> All Container members can Read and List Container columns
3419
3520
### `microsoft.graph.fileStorageContainer` properties
@@ -79,13 +64,13 @@ The following are the properties that SharePoint Embedded Metadata supports:
7964
| type | columnTypes |
8065

8166
> [!NOTE]
82-
> Please name columns according to the appropiate column naming convention
67+
> Please name columns according to the appropriate column naming convention
8368
8469
### Column Naming Conventions
8570

8671
Column Names must adhere to the following rules:
8772
- Can't contain "!".
88-
- Can't start with a digit, period, minus sign or question mark.
73+
- Can't start with a digit, period, minus sign, or question mark.
8974
- Can't contain any space or any nonalphanumeric characters except "_" or "\".
9075
- Can't look like either type of cell reference.
9176
- A1 mode cell reference with 1 to 3 characters followed by 1 to 5 digits (for example, A3 F02563, ZZZ12).
@@ -129,6 +114,7 @@ Content-Type: application/json
129114
}
130115
}
131116
```
117+
132118
> [!NOTE]
133119
> Note Type is not supported. `maxLength` should =< 255.
134120
@@ -485,4 +471,4 @@ Content-type: application/json
485471
{"name": "c.docx", "size": 391, "listitem/fields/TestField": "33" }
486472
]
487473
}
488-
```
474+
```

0 commit comments

Comments
 (0)