forked from trustbloc/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi-spec.yml
307 lines (306 loc) · 6.84 KB
/
openapi-spec.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# Copyright SecureKey Technologies Inc.
#
# SPDX-License-Identifier: Apache-2.0
swagger: "2.0"
info:
title: Confidential Storage Hub
description: Confidential Storage Hub
version: 1.0.0
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
schemes:
- http
- https
paths:
/hubstore/profiles:
post:
description: Create new profile.
consumes:
- application/json
produces:
- application/json
parameters:
- name: request
in: body
required: true
schema:
$ref: "#/definitions/Profile"
responses:
201:
description: New profile.
headers:
Location:
description: Location of the new Profile.
type: string
schema:
$ref: "#/definitions/Profile"
500:
description: Generic Error
schema:
$ref: "#/definitions/Error"
/hubstore/profiles/{profileID}/queries:
parameters:
- name: profileID
in: path
description: The profile's ID.
required: true
type: string
post:
description: Store queries.
consumes:
- application/json
parameters:
- name: request
in: body
schema:
$ref: "#/definitions/Query"
responses:
201:
description: Query stored.
headers:
Location:
description: Location of the query resource.
type: string
400:
description: Bad request.
schema:
$ref: "#/definitions/Error"
500:
description: Generic Error
schema:
$ref: "#/definitions/Error"
/hubstore/profiles/{profileID}/authorizations:
parameters:
- name: profileID
in: path
description: The profile's ID.
type: string
required: true
post:
description: Creates a new authorization.
consumes:
- application/json
produces:
- application/json
parameters:
- name: request
in: body
required: true
schema:
$ref: "#/definitions/Authorization"
responses:
201:
description: The new authorization.
headers:
Location:
description: Location of the authorization.
type: string
schema:
$ref: "#/definitions/Authorization"
500:
description: Generic Error
schema:
$ref: "#/definitions/Error"
/compare:
post:
description: Evaluates an operator with its inputs and returns the result.
consumes:
- application/json
produces:
- application/json
parameters:
- name: request
in: body
required: true
schema:
$ref: "#/definitions/ComparisonRequest"
responses:
200:
description: Result.
schema:
$ref: "#/definitions/Comparison"
500:
description: Generic error.
schema:
$ref: "#/definitions/Error"
/extract:
post:
description: Extracts the contents of documents.
consumes:
- application/json
produces:
- application/json
parameters:
- name: request
in: body
required: true
schema:
type: array
items:
$ref: "#/definitions/Query"
minItems: 1
responses:
200:
description: The extracted and decrypted documents.
schema:
$ref: "#/definitions/ExtractionResponse"
500:
$ref: "#/definitions/Error"
definitions:
Profile:
type: object
required:
- controller
properties:
id:
type: string
controller:
type: string
zcap:
type: string
ComparisonRequest:
type: object
properties:
op:
$ref: "#/definitions/Operator"
Comparison:
description: TODO - "comparison" does not sound apt as a name
type: object
properties:
result:
type: boolean
Operator:
type: object
required:
- type
discriminator: type
properties:
type:
type: string
EqOp:
allOf:
- $ref: "#/definitions/Operator"
- type: object
required:
- args
properties:
args:
type: array
items:
$ref: "#/definitions/Query"
minItems: 2
Query:
type: object
required:
- type
discriminator: type
properties:
id:
type: string
type:
type: string
DocQuery:
allOf:
- $ref: "#/definitions/Query"
- type: object
required:
- vaultID
- docID
- upstreamAuth
properties:
vaultID:
type: string
docID:
type: string
path:
type: string
upstreamAuth:
type: object
required:
- edv
- kms
properties:
edv:
$ref: "#/definitions/UpstreamAuthorization"
kms:
$ref: "#/definitions/UpstreamAuthorization"
RefQuery:
allOf:
- $ref: "#/definitions/Query"
- type: object
required:
- ref
properties:
ref:
type: string
Authorization:
type: object
required:
- requestingParty
- scope
properties:
id:
type: string
requestingParty:
type: string
scope:
type: object
required:
- resourceID
- resourceType
- action
properties:
resourceID:
type: string
resourceType:
type: string
action:
type: array
items:
type: string
enum:
- read
- reference
caveats:
type: array
items:
$ref: "#/definitions/Caveat"
zcap:
type: string
UpstreamAuthorization:
type: object
properties:
baseURL:
type: string
zcap:
type: string
Caveat:
type: object
required:
- type
discriminator: type
properties:
type:
type: string
ExpiryCaveat:
allOf:
- $ref: "#/definitions/Caveat"
- type: object
properties:
duration:
type: integer
description: Duration (in seconds) for which this authorization will remain valid.
ExtractionResponse:
type: array
items:
properties:
id:
type: string
document:
type: object
Error:
type: object
properties:
errMessage:
type: string