Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions docs/specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ This section provides illustrative examples of common A2A interactions across di
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand All @@ -1303,7 +1303,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"task": {
Expand All @@ -1328,7 +1328,7 @@ Content-Type: application/a2a+json
```http
POST /message:stream HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand Down Expand Up @@ -1362,7 +1362,7 @@ data: {"statusUpdate": {"taskId": "task-uuid", "status": {"state": "TASK_STATE_C
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand All @@ -1378,7 +1378,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"task": {
Expand All @@ -1399,7 +1399,7 @@ Content-Type: application/a2a+json
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand All @@ -1421,7 +1421,7 @@ Authorization: Bearer token
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token
A2A-Version: 0.5

Expand Down Expand Up @@ -1467,7 +1467,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"tasks": [
Expand Down Expand Up @@ -1500,7 +1500,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"tasks": [
Expand Down Expand Up @@ -1542,7 +1542,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"tasks": [
Expand Down Expand Up @@ -1599,7 +1599,7 @@ Content-Type: application/problem+json
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand Down Expand Up @@ -1628,7 +1628,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"task": {
Expand All @@ -1648,7 +1648,7 @@ Content-Type: application/a2a+json
POST /webhook/a2a-notifications HTTP/1.1
Host: client.example.com
Authorization: Bearer server-generated-jwt
Content-Type: application/a2a+json
Content-Type: application/json
X-A2A-Notification-Token: secure-client-token-for-task-aaa

{
Expand All @@ -1672,7 +1672,7 @@ X-A2A-Notification-Token: secure-client-token-for-task-aaa
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand All @@ -1697,7 +1697,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"task": {
Expand Down Expand Up @@ -1733,7 +1733,7 @@ Content-Type: application/a2a+json
```http
POST /message:send HTTP/1.1
Host: agent.example.com
Content-Type: application/a2a+json
Content-Type: application/json
Authorization: Bearer token

{
Expand Down Expand Up @@ -1766,7 +1766,7 @@ Authorization: Bearer token

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"task": {
Expand Down Expand Up @@ -1832,7 +1832,7 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

```http
HTTP/1.1 200 OK
Content-Type: application/a2a+json
Content-Type: application/json

{
"name": "Extended Agent with Additional Skills",
Expand Down
Loading