Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 1.36 KB

File metadata and controls

48 lines (40 loc) · 1.36 KB
title agentExtension resource type
description A declaration of a protocol extension supported by an Agent.
author jasondou
ms.date 11/06/2025
ms.localizationpriority medium
ms.subservice entra-id
doc_type resourcePageType

agentExtension resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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"
  }
}