-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yml
416 lines (398 loc) · 10 KB
/
swagger.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
swagger: "2.0"
info:
title: BigchainDB
version: 2.2.2
basePath: /api/v1
schemes:
- http
- https
consumes:
- application/json
produces:
- application/json
paths:
/transactions/{transaction_id}:
get:
summary: Get a transaction by ID
parameters:
- name: transaction_id
in: path
description: Transaction ID
required: true
type: string
responses:
"200":
description: OK
schema:
$ref: "#/definitions/Transaction"
"404":
description: Not Found
schema:
$ref: "#/definitions/Error"
/transactions:
get:
summary: Get a list of transactions
parameters:
- name: asset_id
in: query
description: Asset ID
required: false
type: string
- name: operation
in: query
description: Operation type (CREATE or TRANSFER)
required: false
enum: [CREATE, TRANSFER]
type: string
- name: last_tx
in: query
description: Return only the last transaction
required: false
type: boolean
responses:
"200":
description: OK
schema:
type: array
items:
$ref: "#/definitions/Transaction"
"400":
description: Bad Request
schema:
$ref: "#/definitions/Error"
post:
summary: Send a transaction
parameters:
- name: mode
in: query
description: Transaction mode (async, sync, commit)
type: string
enum: [async, sync, commit]
default: async
- name: postBody
in: body
description: Transaction body
required: true
schema:
$ref: "#/definitions/Transaction"
responses:
"202":
description: Accepted
schema:
$ref: "#/definitions/Transaction"
"400":
description: Bad request
schema:
$ref: "#/definitions/Error"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/Error"
/assets:
get:
summary: Get Assets by Text Search
description: Retrieves assets that match a given text search
parameters:
- name: search
in: query
description: Text search string to query
required: true
type: string
- name: limit
in: query
description: Limit the number of returned assets
required: false
type: integer
responses:
200:
description: Successful response with a list of matching assets
schema:
type: array
items:
$ref: "#/definitions/Asset"
400:
description: Bad Request - The query was not executed successfully
schema:
$ref: "#/definitions/Error"
/outputs:
get:
summary: Get Transaction Outputs
description: Retrieves transaction outputs by public key
parameters:
- name: public_key
in: query
description: Base58 encoded public key associated with output ownership
required: true
type: string
- name: spent
in: query
description: Boolean value indicating if the result set should include only spent or only unspent outputs
required: false
type: boolean
responses:
200:
description: Successful response with a list of transaction outputs
schema:
type: array
items:
$ref: "#/definitions/Fulfills"
400:
description: Bad Request - The request wasn’t understood by the server
schema:
$ref: "#/definitions/Error"
/metadata:
get:
summary: Get Metadata Objects by Text Search
description: Retrieves metadata objects that match a given text search
parameters:
- name: search
in: query
description: Text search string to query
required: true
type: string
- name: limit
in: query
description: Limit the number of returned metadata objects
required: false
type: integer
responses:
200:
description: Successful response with a list of matching metadata objects
schema:
type: array
items:
$ref: "#/definitions/Metadata"
400:
description: Bad Request - The query was not executed successfully
schema:
$ref: "#/definitions/Error"
/blocks:
get:
summary: Get Blocks by Transaction ID
description: Retrieves a list of block IDs that contain a transaction with the specified transaction ID
parameters:
- name: transaction_id
in: query
description: Transaction ID
required: true
type: string
responses:
200:
description: Successful response with a list of block IDs
schema:
type: array
items:
type: integer
400:
description: Bad Request - The request wasn’t understood by the server
schema:
$ref: "#/definitions/Error"
/blocks/{block_height}:
get:
summary: Get Block by Height
description: Retrieves the block with the specified block height
parameters:
- name: block_height
in: path
description: Block height
required: true
type: integer
responses:
200:
description: Successful response with the block details
schema:
$ref: "#/definitions/Block"
400:
description: Bad Request - The request wasn’t understood by the server
schema:
$ref: "#/definitions/Error"
404:
description: Not Found - A block with that block height was not found
schema:
$ref: "#/definitions/Error"
definitions:
RootResponse:
type: object
properties:
assets:
type: string
x-nullable: false
blocks:
type: string
x-nullable: false
docs:
type: string
x-nullable: false
metadata:
type: string
x-nullable: false
outputs:
type: string
x-nullable: false
streams:
type: string
x-nullable: false
transactions:
type: string
x-nullable: false
validators:
type: string
x-nullable: false
Error:
type: object
properties:
message:
type: object
status:
type: integer
Transaction:
type: object
properties:
asset:
$ref: "#/definitions/Asset"
id:
type: string
minLength: 32
inputs:
type: array
minItems: 1
items:
$ref: "#/definitions/TransactionInput"
metadata:
$ref: "#/definitions/Metadata"
operation:
x-nullable: false
type: string
enum: [CREATE, TRANSFER, VALIDATOR_ELECTION, CHAIN_MIGRATION_ELECTION, VOTE]
outputs:
type: array
items:
$ref: "#/definitions/TransactionOutput"
version:
x-nullable: false
type: string
enum: ['2.0']
default: '2.0'
required:
- id
- version
- metadata
- outputs
- operation
- inputs
- asset
Asset:
type: object
properties:
id:
type: string
minLength: 32
data:
type: object
TransactionInput:
type: object
properties:
fulfillment:
type: object
fulfills:
x-nullable: true
$ref: "#/definitions/Fulfills"
owners_before:
type: array
minItems: 1
uniqueItems: true
items:
type: string
x-nullable: false
required:
- fulfillment
- owners_before
- fulfills
Fulfills:
x-nullable: true
type: object
properties:
output_index:
type: integer
x-nullable: false
transaction_id:
type: string
x-nullable: false
required:
- output_index
- transaction_id
TransactionMode:
type: string
enum: [ async, sync, commit ]
default: async
x-nullable: false
TransactionOutput:
type: object
properties:
amount:
type: string
x-nullable: false
condition:
type: object
x-nullable: false
properties:
details:
type: object
x-nullable: false
properties:
public_key:
type: string
minLength: 1
x-nullable: false
type:
type: string
enum: [ed25519-sha-256]
default: ed25519-sha-256
x-nullable: false
required:
- public_key
- type
uri:
type: string
minLength: 1
pattern: '^ni:///sha-256;([a-zA-Z0-9_-]{0,86})[?](fpt=(ed25519|threshold)-sha-256(&)?|cost=[0-9]+(&)?|subtypes=ed25519-sha-256(&)?){2,3}$'
x-nullable: false
required:
- details
- uri
public_keys:
type: array
minItems: 1
uniqueItems: true
items:
type: string
x-nullable: false
required:
- amount
- condition
- public_keys
Metadata:
type: object
x-nullable: false
ValidTransactionResponse:
type: object
properties:
transaction_id:
type: string
x-nullable: false
asset_id:
type: string
x-nullable: false
height:
type: integer
x-nullable: false
Block:
type: object
properties:
transactions:
type: array
items:
$ref: "#/definitions/Transaction"
x-nullable: false
height:
type: integer