extensionProperty resource type
Namespace: microsoft.graph
Represents a directory extension that can be used to add a custom property to directory objects without requiring an external data store. For example, if an organization has a line of business (LOB) application that requires a Skype ID for each user in the directory, Microsoft Graph can be used to register a new property named skypeId on the directory’s User object, and then write a value to the new property for a specific user.
Extensions can be added to user, group, organization, device, application resources. Only 100 extension values, across all types and all applications, can be written to any single Azure AD resource.
Important
Azure AD schema extensions described here are available in Microsoft Graph for backwards compatibility reasons only. It allows you to use Microsoft Graph to continue to manage extension properties added through Azure AD Graph (deprecated) or Azure AD Connect. For new custom extensions, we recommend that you use Microsoft Graph schema extensions for adding custom data to resources.
Inherits from directoryObject.
Methods
Method | Return Type | Description |
---|---|---|
Create extensionProperties | extensionProperty | Create an extension property on an application object. |
List extensionProperties | extensionProperty collection | List extension properties on an application object. |
Get extensionProperty | extensionProperty collection | List extension properties on an application object. |
Delete extensionProperty | None | Delete an extension property from an application object. |
Tip
- To set a value for the extension property to an instance of a resource that is specified in targetObjects, use the Update operation of the resource. For example, the Update user API to set the value for a user.
- To remove the extension property and its value from an instance of a resource that is specified in targetObjects, set the value of the extension property to
null
.
Properties
Property | Type | Description |
---|---|---|
appDisplayName | String | Display name of the application object on which this extension property is defined. Read-only. |
dataType | String | Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable.
|
deletedDateTime | DateTimeOffset | Date and time when this object was deleted. Always null when the object hasn't been deleted. Inherited from directoryObject. |
isSyncedFromOnPremises | Boolean | Indicates if this extension property was synced from on-premises active directory using Azure AD Connect. Read-only. |
name | String | Name of the extension property. Not nullable. |
targetObjects | String collection | Following values are supported. Not nullable.
|
Relationships
None
JSON representation
The following is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.extensionProperty",
"id": "String (identifier)",
"deletedDateTime": "String (timestamp)",
"appDisplayName": "String",
"name": "String",
"dataType": "String",
"isSyncedFromOnPremises": "Boolean",
"targetObjects": [
"String"
]
}
意見反應
提交並檢視相關的意見反應