You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specification/json/a2a.json
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,13 @@
101
101
},
102
102
"title": "Skills",
103
103
"type": "array"
104
+
},
105
+
"extensions": {
106
+
"items": {
107
+
"$ref": "#/$defs/AgentExtension"
108
+
},
109
+
"title": "Extensions",
110
+
"type": "array"
104
111
}
105
112
},
106
113
"required": [
@@ -113,6 +120,44 @@
113
120
"title": "AgentCard",
114
121
"type": "object"
115
122
},
123
+
"AgentExtension": {
124
+
"properties": {
125
+
"id": {
126
+
"title": "Id",
127
+
"type": "string"
128
+
},
129
+
"name": {
130
+
"title": "Name",
131
+
"type": "string"
132
+
},
133
+
"description": {
134
+
"default": "",
135
+
"title": "Description",
136
+
"type": "string"
137
+
},
138
+
"methods": {
139
+
"default": [],
140
+
"description": "The list of method names (without prefix) provided by the extension.",
141
+
"items": {
142
+
"type": "string"
143
+
},
144
+
"title": "Methods",
145
+
"type": "array"
146
+
},
147
+
"prefix": {
148
+
"default": "Prefix added in front of the method names. E.g. for prefix='extensions/taskHistory/' and method='clearRecent', the actual method will be served at 'extensions/taskHistory/clearRecent'",
0 commit comments