Skip to content

Commit e4e2a08

Browse files
committed
Add capability for augmenting tasks/delete itself with a task
1 parent 5e53553 commit e4e2a08

File tree

1 file changed

+5
-3
lines changed
  • docs/specification/draft/basic/utilities

1 file changed

+5
-3
lines changed

docs/specification/draft/basic/utilities/tasks.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Servers declare which server-side requests can be augmented with tasks:
4242
"tasks": {
4343
"get": true,
4444
"list": true,
45-
"result": true
45+
"result": true,
46+
"delete": true
4647
}
4748
}
4849
}
@@ -52,7 +53,7 @@ Servers declare which server-side requests can be augmented with tasks:
5253

5354
Servers **MAY** support tasks for any subset of their available request types. If a request type is not listed in the `tasks.requests` capability or is set to `false`, requestors **SHOULD NOT** augment those requests with task metadata.
5455

55-
The `tasks.requests.tasks` nested capability indicates whether the task management operations themselves (`tasks/get`, `tasks/list`, `tasks/result`) can be augmented with tasks, enabling recursive task tracking for task queries.
56+
The `tasks.requests.tasks` nested capability indicates whether the task management operations themselves (`tasks/get`, `tasks/list`, `tasks/result`, `tasks/delete`) can be augmented with tasks, enabling recursive task tracking for task queries.
5657

5758
### Client Capabilities
5859

@@ -75,7 +76,8 @@ Clients declare which client-side requests can be augmented with tasks:
7576
"tasks": {
7677
"get": true,
7778
"list": true,
78-
"result": true
79+
"result": true,
80+
"delete": true
7981
}
8082
}
8183
}

0 commit comments

Comments
 (0)