-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmutation_resp.json
More file actions
37 lines (37 loc) · 832 Bytes
/
Copy pathmutation_resp.json
File metadata and controls
37 lines (37 loc) · 832 Bytes
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/pancsta/asyncmachine-go/pkg/integrations/mutation-resp",
"$ref": "#/$defs/MutationResp",
"$defs": {
"Kind": {
"properties": {
"Value": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"Value"
]
},
"MutationResp": {
"properties": {
"kind": {
"$ref": "#/$defs/Kind",
"description": "The kind of the request."
},
"result": {
"type": "integer",
"description": "The result of the mutation request."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"kind",
"result"
]
}
}
}