Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
A declaration of a protocol extension supported by an agent, as defined in the extensions property of agentCapabilities.
Properties
| Property | Type | Description |
|---|---|---|
| description | String | A human-readable description of how this agent uses the extension. |
| params | agentExtensionParams | Extension-specific configuration parameters. |
| required | Boolean | If true, the client must understand and comply with the extension's requirements to interact with the agent. |
| uri | String | The unique URI identifying the extension. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.agentExtension",
"uri": "String",
"description": "String",
"required": "Boolean",
"params": {
"@odata.type": "microsoft.graph.agentExtensionParams"
}
}