Skip to content

Commit 609cdaf

Browse files
authored
Merge pull request #111558 from CelesteDG/patch-27
Promoted id higher on the list
2 parents 34a8b3c + 0c7377c commit 609cdaf

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

articles/active-directory/develop/reference-app-manifest.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ ms.service: active-directory
88
ms.subservice: develop
99
ms.topic: conceptual
1010
ms.workload: identity
11-
ms.date: 03/23/2020
11+
ms.date: 04/15/2020
1212
ms.author: ryanwi
1313
ms.custom: aaddev
1414
ms.reviewer: sureshja
1515
---
1616

1717
# Azure Active Directory app manifest
1818

19-
The application manifest contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. For more info on the Application entity and its schema, see the [Graph API Application entity documentation](https://msdn.microsoft.com/Library/Azure/Ad/Graph/api/entity-and-complex-type-reference#application-entity).
19+
The application manifest contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. For more info on the Application entity and its schema, see the [Graph API Application entity documentation](https://docs.microsoft.com/previous-versions/azure/ad/graph/api/entity-and-complex-type-reference#application-entity).
2020

2121
You can configure an app's attributes through the Azure portal or programmatically using [REST API](https://docs.microsoft.com/previous-versions/azure/ad/graph/api/entity-and-complex-type-reference#application-entity) or [PowerShell](https://docs.microsoft.com/powershell/module/azuread/?view=azureadps-2.0#applications). However, there are some scenarios where you'll need to edit the app manifest to configure an app's attribute. These scenarios include:
2222

@@ -36,6 +36,20 @@ To configure the application manifest:
3636

3737
This section describes the attributes found in the application manifest.
3838

39+
### id attribute
40+
41+
| Key | Value type |
42+
| :--- | :--- |
43+
| id | String |
44+
45+
The unique identifier for the app in the directory. This ID is not the identifier used to identify the app in any protocol transaction. It's used for the referencing the object in directory queries.
46+
47+
Example:
48+
49+
```json
50+
"id": "f7f9acfc-ae0c-4d6c-b489-0a81dc1652dd",
51+
```
52+
3953
### accessTokenAcceptedVersion attribute
4054

4155
| Key | Value type |
@@ -225,19 +239,7 @@ Example:
225239
"optionalClaims": null,
226240
```
227241

228-
### id attribute
229242

230-
| Key | Value type |
231-
| :--- | :--- |
232-
| id | String |
233-
234-
The unique identifier for the app in the directory. This ID is not the identifier used to identify the app in any protocol transaction. It's used for the referencing the object in directory queries.
235-
236-
Example:
237-
238-
```json
239-
"id": "f7f9acfc-ae0c-4d6c-b489-0a81dc1652dd",
240-
```
241243

242244
### identifierUris attribute
243245

0 commit comments

Comments
 (0)