-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathledger.yaml
473 lines (458 loc) · 11.5 KB
/
ledger.yaml
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
swagger: '2.0'
info:
title: Ledger API
version: '2.0'
description: Ledger API to view and manipulate Transaction related data.
basePath: /v2
schemes:
- http
consumes:
- application/json
produces:
- application/json
paths:
/health:
get:
summary: Health
operationId: get_health
responses:
200:
description: 'Success'
schema:
$ref: '#/definitions/health'
400:
$ref: '#/responses/invalid-request'
404:
$ref: '#/responses/not-found'
tags:
- health
/api-docs:
get:
security: []
summary: Get swagger documentation
operationId: get_doc
produces:
- text/html
responses:
200:
description: Success
tags:
- doc
/balance/{entity_id}:
get:
summary: Get Balance
operationId: get_balance
consumes:
- application/json
parameters:
- in: path
name: entity_id
description: UUID of the entity (User, Project, Organisation)
type: string
required: true
- name: start_date
in: query
type: integer
description: date-time in epoch (seconds)
required: false
- name: end_date
in: query
type: integer
description: date-time in epoch (seconds)
required: false
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/balance'
400:
$ref: '#/responses/invalid-request'
404:
$ref: '#/responses/not-found'
tags:
- balance
/transactions:
get:
summary: List Transactions
operationId: list_transactions
parameters:
- $ref: '#/parameters/page_size'
- $ref: '#/parameters/offset'
- $ref: '#/parameters/order_by'
responses:
200:
description: 'Success'
schema:
$ref: '#/definitions/transaction-list'
400:
$ref: '#/responses/invalid-request'
tags:
- transactions
post:
summary: Add a new Transaction
operationId: create_transaction
consumes:
- application/json
parameters:
- in: body
description: The transaction to create
name: transaction
required: true
schema:
$ref: '#/definitions/create-transaction'
responses:
201:
description: 'Created'
schema:
$ref: '#/definitions/transaction'
400:
$ref: '#/responses/invalid-request'
409:
$ref: '#/responses/conflict'
tags:
- transactions
/transactions/{transaction_id}:
get:
summary: Get Transaction
operationId: getTransaction
consumes:
- application/json
parameters:
- in: path
name: transaction_id
type: string
required: true
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/transaction'
400:
$ref: '#/responses/invalid-request'
404:
$ref: '#/responses/not-found'
tags:
- transactions
responses:
unauthorized:
description: Unauthorized
schema:
$ref: '#/definitions/error-response'
invalid-request:
description: Invalid request
schema:
$ref: '#/definitions/error-response'
forbidden:
description: Insufficient privilege to execute action.
schema:
$ref: '#/definitions/error-response'
not-found:
description: Not found.
schema:
$ref: '#/definitions/error-response'
conflict:
description: Duplicate resource
schema:
$ref: '#/definitions/error-response'
definitions:
health:
type: object
title: Health
description: properties for Health
properties:
DateTime:
type: string
transaction-list:
type: object
x-nullable: false
title: Transactions
description: List of Transactions
properties:
total_size:
type: integer
x-omitempty: false
format: int64
page_size:
type: integer
x-omitempty: false
format: int64
offset:
type: integer
x-omitempty: false
format: int64
has_next:
type: boolean
x-omitempty: true
Data:
type: array
items:
$ref: '#/definitions/transaction'
transaction:
type: object
properties:
id:
type: string
description: UUID of the line_item.
readOnly: true
example: a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11
asset:
type: string
enum: [usd]
example: usd
account_id:
type: string
description: UUID of the associated account.
example: c9e0e14a-17d2-4250-96d0-e95df41cc0c3
running_balance:
type: integer
description: Sum of transactions for this account until this time in cents. This value can be + or -.
example: 10000
transaction_category:
type: string
external_transaction_id:
type: string
description: ID of this transaction from the external source
example: txe0e14a-17d
x-omitempty: false
external_transaction_created_at:
type: integer
description: date-time in epoch (seconds)
readOnly: true
example: 1539815989
metadata:
type: string
description: json formatted string holding dynamic data
created_at:
type: integer
description: date-time in epoch (seconds)
readOnly: true
example: 1539815989
external_created_at:
type: integer
description: date-time in epoch (seconds)
readOnly: true
example: 1539815989
line_items:
type: array
items:
$ref: '#/definitions/line-item'
line-item:
type: object
properties:
id:
type: string
description: UUID of the line_item.
readOnly: true
example: a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11
transaction_id:
type: string
description: UUID of the transaction.
example: c9e0e14a-17d2-4250-96d0-e95df41cc0c3
external_id:
type: string
description: ID of this line_item from the external source
example: txe0e14a-17d
description:
type: string
description: Description of the item.
example: fee
x-omitempty: false
amount:
type: integer
description: Amount of transaction in cents. This value can be + or -.
example: 10000
metadata:
type: string
description: json formatted string holding dynamic data
created_at:
type: integer
description: date-time in epoch (seconds)
readOnly: true
example: 1539815989
create-transaction:
type: object
required:
- entity_id
- entity_type
- external_source_type
- external_account_id
- external_transaction_id
- line_items
properties:
entity_id:
type: string
description: UUID of the associated entity.
example: c9e0e14a-17d2-4250-96d0-e95df41cc0c3
entity_type:
type: string
enum: [user, project, organisation]
example: user
external_source_type:
type: string
enum: [bill.com, stripe, expensify]
example: bill.com
external_account_id:
type: string
description: ID of the external account
example: stripe-17dabc
asset:
type: string
enum: [usd]
example: usd
transaction_category:
type: string
external_transaction_id:
type: string
description: ID of this transaction from the external source
example: txe0e14a-17d
metadata:
type: string
description: json formatted string holding dynamic data
line_items:
type: array
items:
$ref: '#/definitions/create-line-item'
create-line-item:
type: object
required:
- amount
- description
properties:
amount:
type: integer
description: Amount of transaction in cents. This value can be + or -.
example: 10000
description:
type: string
description: Description of the item.
example: fee
external_id:
type: string
description: ID of this line_item from the external source
example: txe0e14a-17d
metadata:
type: string
description: json formatted string holding dynamic data
sub-category:
type: object
properties:
name:
type: string
description: Category name
example: Lorem
balance:
type: integer
description: Amount in cents.
example: -66534
count:
type: integer
description: Number of transactions in this category.
example:
min:
value: 0
credit:
type: integer
description: Total credit amount.
example: 7
credit_count:
type: integer
description: Number of credit transactions
example:
min:
value: 0
debit:
type: integer
description: Total debit amount.
example: -454921
debit_count:
type: integer
description: Number of debit transactions
example:
min:
value: 0
balance:
type: object
properties:
entity_id:
type: string
description: UUID of the entity.
example: c9e0e14a-17d2-4250-96d0-e95df41cc0c3
entity_type:
type: string
enum: [user, project, organisation]
example: project
available_balance:
type: integer
description: Available balance for the project. total_credit - total_debit.
example: 1488394
x-omitempty: false
total_count:
type: integer
description: Total transaction count.
example:
min:
value: 0
x-omitempty: false
total_credit:
type: integer
description: Total credit to project.
example: 2503428
x-omitempty: false
credit_count:
type: integer
description: Credit transaction count.
example:
min:
value: 0
x-omitempty: false
total_debit:
type: integer
description: Total debit from project.
example: -1000000
x-omitempty: false
debit_count:
type: integer
description: Debit transaction count.
example:
min:
value: 0
x-omitempty: false
backers:
type: integer
description: Total backers for the project.
example:
min:
value: 0
x-omitempty: false
sub_totals:
type: array
items:
$ref: '#/definitions/sub-category'
error-response:
type: object
title: Error Response
description: Standard error format
properties:
Code:
type: string
Message:
type: string
parameters:
page_size:
name: page_size
in: query
type: integer
default: 10
minimum: 1
maximum: 100
offset:
name: offset
in: query
type: integer
default: 0
order_by:
name: order_by
in: query
type: string
default: 'createddate'
pattern: '^[A-Za-z0-9_]+$'