-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathattention.ack.request.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathattention.ack.request.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$id": "https://gabp.dev/schema/1.0/methods/attention.ack.request.json",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "attention/ack Request",
"description": "Request schema for acknowledging a specific attention item",
"type": "object",
"required": ["v", "id", "type", "method", "params"],
"properties": {
"v": {
"const": "gabp/1",
"description": "Protocol version identifier"
},
"id": {
"type": "string",
"format": "uuid",
"description": "Unique request identifier"
},
"type": {
"const": "request",
"description": "Message type"
},
"method": {
"const": "attention/ack",
"description": "Method name"
},
"params": {
"type": "object",
"required": ["attentionId"],
"properties": {
"attentionId": {
"type": "string",
"minLength": 1,
"description": "Stable attention identifier to acknowledge"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}