|
4 | 4 | "name": "dictionary", |
5 | 5 | "attributes": { |
6 | 6 | "a2a_capabilities": { |
7 | | - "caption": "Capabilities", |
8 | | - "description": "List of capabilities supported by the agent for A2A communication.", |
9 | | - "type": "string_t", |
10 | | - "is_array": true, |
11 | | - "enum": { |
12 | | - "push_notifications": { |
13 | | - "caption": "Push Notifications", |
14 | | - "description": "Indicates whether the agent supports push notifications for A2A communication." |
15 | | - }, |
16 | | - "streaming": { |
17 | | - "caption": "Streaming", |
18 | | - "description": "Indicates whether the agent supports streaming for A2A communication." |
19 | | - }, |
20 | | - "state_transition_history": { |
21 | | - "caption": "State Transition History", |
22 | | - "description": "Indicates whether the agent supports state transition history for A2A communication." |
23 | | - } |
24 | | - } |
| 7 | + "caption": "A2A Capabilities", |
| 8 | + "description": "Defines optional capabilities supported by an A2A agent.", |
| 9 | + "type": "a2a_capabilities" |
| 10 | + }, |
| 11 | + "a2a_capability_push_notifications": { |
| 12 | + "caption": "Push Notifications Capability", |
| 13 | + "description": "Indicates if the agent supports sending push notifications for asynchronous task updates.", |
| 14 | + "type": "boolean_t" |
| 15 | + }, |
| 16 | + "a2a_capability_state_transition_history": { |
| 17 | + "caption": "State Transition History Capability", |
| 18 | + "description": "Indicates if the agent provides a history of state transitions for a task.", |
| 19 | + "type": "boolean_t" |
| 20 | + }, |
| 21 | + "a2a_capability_streaming": { |
| 22 | + "caption": "Streaming Capability", |
| 23 | + "description": "Indicates if the agent supports streaming responses.", |
| 24 | + "type": "boolean_t" |
25 | 25 | }, |
26 | 26 | "a2a_card_data": { |
27 | 27 | "caption": "A2A Agent Card Data", |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | }, |
| 73 | + "a2a_protocol_binding": { |
| 74 | + "caption": "Protocol Binding", |
| 75 | + "description": "The protocol binding used by an A2A interface (e.g., 'http+json', 'grpc').", |
| 76 | + "type": "string_t" |
| 77 | + }, |
73 | 78 | "a2a_protocol_version": { |
74 | 79 | "caption": "Protocol Version", |
75 | 80 | "description": "Version of the A2A protocol used by the agent.", |
76 | 81 | "type": "string_t" |
77 | 82 | }, |
| 83 | + "a2a_provider": { |
| 84 | + "caption": "Provider Information", |
| 85 | + "description": "Information about the A2A agent provider including organization, URL, and extensions.", |
| 86 | + "type": "a2a_provider" |
| 87 | + }, |
| 88 | + "a2a_provider_extensions": { |
| 89 | + "caption": "Provider Extensions", |
| 90 | + "description": "List of provider extensions for A2A protocol capability discovery.", |
| 91 | + "type": "a2a_provider_extension", |
| 92 | + "is_array": true |
| 93 | + }, |
| 94 | + "a2a_provider_organization": { |
| 95 | + "caption": "Provider Organization", |
| 96 | + "description": "Name of the A2A provider organization.", |
| 97 | + "type": "string_t" |
| 98 | + }, |
78 | 99 | "a2a_security_schemes": { |
79 | 100 | "caption": "Supported Security Schemes", |
80 | 101 | "description": "Supported security schemes for A2A communication.", |
|
107 | 128 | } |
108 | 129 | } |
109 | 130 | }, |
110 | | - "a2a_supported_transports": { |
111 | | - "caption": "Supported Transports", |
112 | | - "description": "Supported transport protocols for A2A communication.", |
113 | | - "type": "string_t", |
114 | | - "is_array": true, |
115 | | - "enum": { |
116 | | - "jsonrpc": { |
117 | | - "caption": "JSONRPC", |
118 | | - "description": "JSON-RPC transport protocol for A2A communication." |
119 | | - }, |
120 | | - "grpc": { |
121 | | - "caption": "GRPC", |
122 | | - "description": "gRPC transport protocol for A2A communication." |
123 | | - }, |
124 | | - "http": { |
125 | | - "caption": "HTTP+JS", |
126 | | - "description": "HTTP transport protocol for A2A communication." |
127 | | - } |
128 | | - } |
| 131 | + "a2a_supported_interfaces": { |
| 132 | + "caption": "Supported Interfaces", |
| 133 | + "description": "List of supported interfaces for A2A communication with URLs and protocol bindings.", |
| 134 | + "type": "a2a_supported_interface", |
| 135 | + "is_array": true |
| 136 | + }, |
| 137 | + "a2a_supports_authenticated_extended_card": { |
| 138 | + "caption": "Supports Authenticated Extended Card", |
| 139 | + "description": "Indicates whether the A2A agent supports authenticated extended card retrieval.", |
| 140 | + "type": "boolean_t" |
129 | 141 | }, |
130 | 142 | "acp_agent": { |
131 | 143 | "caption": "Agent Connect Protocol Specs", |
|
0 commit comments