Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 1.41 KB

File metadata and controls

50 lines (42 loc) · 1.41 KB
title agentCapabilities resource type
description Defines optional capabilities supported by an agent.
author jasondou
ms.date 11/06/2025
ms.localizationpriority medium
ms.subservice entra-id
doc_type resourcePageType

agentCapabilities resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Defines optional capabilities defined in the agent card manifest.

Properties

Property Type Description
extensions agentExtension collection A list of protocol extensions supported by the agent.
pushNotifications Boolean Indicates if the agent supports sending push notifications for asynchronous task updates.
stateTransitionHistory Boolean Indicates if the agent provides a history of state transitions for a task.
streaming Boolean Indicates if the agent supports Server-Sent Events (SSE) for streaming responses.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.agentCapabilities",
  "streaming": "Boolean",
  "pushNotifications": "Boolean",
  "stateTransitionHistory": "Boolean",
  "extensions": [
    {
      "@odata.type": "microsoft.graph.agentExtension"
    }
  ]
}