-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcustodyServicesAPI.yaml
More file actions
1873 lines (1873 loc) · 67.8 KB
/
Copy pathcustodyServicesAPI.yaml
File metadata and controls
1873 lines (1873 loc) · 67.8 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
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
version: 3.2.0
title: Custody Services
description: |
This API is part of the OpenWealth APIs for the connectivity between custody banks and WealthTechs (e.g. Portfolio Management Systems).
This API allows the user to receive data from custody banks regarding accounts and positions. The API is designed to be used for either
update end of day data batches or single near-realtime account/position information. Furthermore, this API allows the user to receive
data from custody banks regarding transactions.
contact:
email: openwealth@synpulse.com
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- description: Your Server URL.
url: https://api.openwealth.ch
externalDocs:
description: Find out more about OpenWealth API specifications.
url: https://openwealth.ch
tags:
- name: accounts
description: Accounts operations.
- name: customers
description: Customer operations.
- name: positions
description: Position operations.
- name: transactions
description: Transaction operations.
security: []
paths:
/customers:
get:
tags:
- customers
summary: Returns all customers (business partners) accessible for the logged in user
description: |
This endpoint returns a highlevel list of customers accessible for the
logged in user. Paging is done based on the customer object,
i.e. if limit is set to 1, then 1 customer will be returned per page.
operationId: getCustomers
parameters:
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Returns a list with all customers.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
nextCursor:
$ref: '#/components/headers/X-Next-Cursor'
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Customer'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}:
get:
tags:
- customers
summary: Returns a specific customer by id
description: Returns a specific customer by id accessible for the requesting user.
operationId: getCustomersByCustomerId
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Returns a the specified customer.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
content:
application/json:
schema:
$ref: '#/components/schemas/Customer'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/accounts:
get:
tags:
- accounts
summary: Returns the accounts for a specific customer
description: |
Returns all accounts for a specific customer accessible to the querying user.
Paging is done based on the account object, i.e. if limit is set to 1,
then 1 account will be returned per page.
operationId: getCustomerAccountsByCustomerId
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Account List.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
nextCursor:
$ref: '#/components/headers/X-Next-Cursor'
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Account'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/accounts/{accountId}:
get:
tags:
- accounts
summary: Returns an account by id
description: Returns an account by id for a specific customer.
operationId: getCustomerAccountById
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/path_accountId'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Account.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
content:
application/json:
schema:
$ref: '#/components/schemas/Account'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/positions:
get:
tags:
- positions
summary: Returns the positions for a specific customer
description: |
Returns all positions for a specific customer.
Paging is done based on the position object,
i.e. if limit is set to 1, then 1 position will be returned per page.
operationId: getCustomerPositionByCustomerId
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/date'
- $ref: '#/components/parameters/end_of_day_indicator'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Position List.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
nextCursor:
$ref: '#/components/headers/X-Next-Cursor'
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ValuatedPosition'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/positions/{positionId}:
get:
tags:
- positions
summary: Returns a position by id for a specific customer
description: Returns a position by id for a specific customer.
operationId: getCustomerPositionById
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/path_positionId'
- $ref: '#/components/parameters/date'
- $ref: '#/components/parameters/end_of_day_indicator'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Position.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
content:
application/json:
schema:
$ref: '#/components/schemas/ValuatedPosition'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/accounts/{accountId}/positions:
get:
tags:
- positions
summary: Returns the positions for a specific account
description: |
Returns all positions for a specific account.
Paging is done based on the position object, i.e. if limit is set to 1,
then 1 position will be returned per page.
operationId: getAccountPositionByAccountId
parameters:
- $ref: '#/components/parameters/path_accountId'
- $ref: '#/components/parameters/date'
- $ref: '#/components/parameters/end_of_day_indicator'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Position List.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
nextCursor:
$ref: '#/components/headers/X-Next-Cursor'
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ValuatedPosition'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/accounts/{accountId}/positions/{positionId}:
get:
tags:
- positions
summary: Returns a position by id for a specific account
description: Returns a position by id for a specific account.
operationId: getAccountPositionById
parameters:
- $ref: '#/components/parameters/path_accountId'
- $ref: '#/components/parameters/path_positionId'
- $ref: '#/components/parameters/date'
- $ref: '#/components/parameters/end_of_day_indicator'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Position.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
content:
application/json:
schema:
$ref: '#/components/schemas/ValuatedPosition'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/transactions:
get:
tags:
- transactions
summary: Returns all transactions for a specific customer
description: |
Returns all transactions for a specific customer.
Paging is done based on the transaction object,
i.e. if limit is set to 1, then 1 transaction will be returned per page.
operationId: getTransactionByCustomerId
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/date'
- $ref: '#/components/parameters/end_of_day_indicator'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Returns a transaction list for a specific customer.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
nextCursor:
$ref: '#/components/headers/X-Next-Cursor'
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Transaction'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
/customers/{customerId}/transactions/{transactionId}:
get:
tags:
- transactions
summary: Returns a transaction by id for a specific customer
description: Returns a transaction instance by id for a specific customer.
operationId: getTransactionByTransactionId
parameters:
- $ref: '#/components/parameters/path_customerId'
- $ref: '#/components/parameters/path_transactionId'
- $ref: '#/components/parameters/x_correlation_id_in_header'
responses:
'200':
description: Returns a transaction list for a specific customer.
headers:
X-Correlation-ID:
$ref: '#/components/headers/X-Correlation-Id'
content:
application/json:
schema:
$ref: '#/components/schemas/Transaction'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'405':
$ref: '#/components/responses/405'
'500':
$ref: '#/components/responses/500'
'501':
$ref: '#/components/responses/501'
'503':
$ref: '#/components/responses/503'
components:
schemas:
Currency:
title: Currency
type: string
description: ISO 4217 code.
pattern: ^[A-Z]{3}$
example: CHF
Customer:
title: Customer
type: object
description: Overview of the customer with the respective accounts.
required:
- id
properties:
id:
type: string
maxLength: 128
description: Unique and unambiguous identification (i.e. UUID) used by the bank for the customer.
example: MTIzNDUtNg
number:
type: string
description: Contains the customers custody proprietary customer number if available.
maxLength: 70
example: 12345-6
referenceCurrency:
$ref: '#/components/schemas/Currency'
CommonErrorType:
title: Common Error Type
description: Error Types for CommonErrorResponse.
type: string
enum:
- /problems/INVALID_PAYLOAD
- /problems/MALFORMED_PAYLOAD
- /problems/INVALID_TOKEN
- /problems/EXPIRED_TOKEN
- /problems/INSUFFICIENT_PRIVILEGES
- /problems/NO_ACCESS_TO_RESOURCE
- /problems/RESOURCE_DOES_NOT_EXIST
- /problems/RESOURCE_NOT_READY
- /problems/RESOURCE_TOO_LARGE
- /problems/WRONG_METHOD
- /problems/OPERATION_NOT_ALLOWED
- /problems/TECHNICAL_ERROR
- /problems/NOT_IMPLEMENTED
- /problems/SERVICE_UNAVAILABLE
example: /problems/TECHNICAL_ERROR
CommonErrorResponse:
title: CommonErrorResponse
type: object
description: Common error response.
properties:
type:
$ref: '#/components/schemas/CommonErrorType'
title:
type: string
description: Title of the error response.
example: This is the general problem description
detail:
type: string
description: Detailed description of the error response.
example: Detailed problem description with respect to the current request
instance:
type: string
description: Entity instance that threw the error.
example: path/to/corresponding/resource
PortfolioInformation:
title: PortfolioInformation
type: object
description: Information about the portfolio.
properties:
identification:
title: PortfolioIdentification
type: string
minLength: 1
maxLength: 128
example: 87654-3219
description: Unique and unambiguous identification for the portfolio between the portfolio owner and the portfolio servicer.
referenceCurrency:
$ref: '#/components/schemas/Currency'
Account:
title: Account
type: object
description: Account entity.
required:
- id
- type
- referenceCurrency
properties:
id:
type: string
maxLength: 128
example: ODc2NTQzMi0xOQ
description: Unique and unambiguous identification for the account. The IBAN should NOT be the account identifier.
type:
type: string
description: |
Indicates the type of the account. If the account type is cashAccount, no information on the financial instrument is
provided in the respective position in the account.
example: cashAccount
enum:
- cashAccount
- safekeepingAccount
- other
name:
type: string
maxLength: 70
description: |
Name of the account. It provides an additional means of identification, and is designated by the account servicer in
agreement with the account owner.
example: Household account
referenceCurrency:
$ref: '#/components/schemas/Currency'
iban:
type: string
description: Contains the accounts International Banking Account Number (IBAN) for an account if available.
maxLength: 34
example: CH123456789
number:
type: string
description: Contains the accounts custody proprietary account number for an account if available.
maxLength: 70
example: 123-1234-234
designation:
type: string
maxLength: 70
description: Supplementary information on the account. Designated by the account servicer.
example: Current Account CHF
portfolioInformation:
$ref: '#/components/schemas/PortfolioInformation'
Cash:
title: Cash
description: Cash.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
Bond:
title: Bond
description: Bond.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
properties:
interestRate:
$ref: '#/components/schemas/InterestRate'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
issueDate:
description: Date at which the security was made available.
$ref: '#/components/schemas/Date'
conversionPrice:
description: Price of one target security in the conversion.
$ref: '#/components/schemas/Price'
currencyOfDenomination:
$ref: '#/components/schemas/Currency'
minimumDenomination:
type: number
example: 10000
description: Indicates the minimum denomination of a security.
minimumIncrement:
type: number
example: 1000
description: Indicates the minimum tradable increments of a security.
underlyingFinancialInstrument:
description: Financial instrument that would be subject to a conversion.
$ref: '#/components/schemas/FinancialInstrument'
Equity:
title: Equity
description: |
Equity, typically referred to as shareholders' equity (or owners' equity for privately held companies), represents the amount
of money that would be returned to a company's shareholders if all of the assets were liquidated and all of the company's debt
was paid off in the case of liquidation.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
Fund:
title: Fund
description: |
An investment fund is a supply of capital belonging to numerous investors used to collectively purchase securities while each
investor retains ownership and control of his own shares.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
Index:
title: Index
description: A financial index produces a numeric score based on inputs such as a variety of asset prices.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
Commodity:
title: Commodity
description: Commodity.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
Option:
title: Option
description: |
An option is a financial instrument that gives the holder the right, but not the obligation, to buy or sell an underlying
asset at a predetermined price within a given time frame.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- underlyingFinancialInstrument
properties:
expiryDate:
description: |
Date on which an order, a privilege, an entitlement or an offer terminates. For an interest bearing asset, it is the
date at which it becomes due and has to be repaid.
$ref: '#/components/schemas/Date'
exercisePrice:
description: Predetermined price at which the holder of a derivative will buy or sell the underlying instrument.
$ref: '#/components/schemas/Price'
contractSize:
$ref: '#/components/schemas/ContractSize'
optionType:
$ref: '#/components/schemas/OptionType'
optionStyle:
$ref: '#/components/schemas/OptionStyle'
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
Future:
title: Future
description: Futures are derivative financial contracts that obligate parties to buy or sell an asset at a predetermined future date and price.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- underlyingFinancialInstrument
properties:
expiryDate:
description: |
Date on which an order, a privilege, an entitlement or an offer terminates. For an interest bearing asset, it is the
date at which it becomes due and has to be repaid.
$ref: '#/components/schemas/Date'
contractSize:
$ref: '#/components/schemas/ContractSize'
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
exercisePrice:
description: Predetermined price at which the holder of a derivative will buy or sell the underlying instrument.
$ref: '#/components/schemas/Price'
FxForward:
title: FxForward
description: A forward contract is a customized contract between two parties to buy or sell currencies at a specified price on a future date.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- amountPaid
- amountReceived
- maturityDate
properties:
amountPaid:
description: Amount paid at the maturity of a contract (i.e. FX forward).
$ref: '#/components/schemas/CurrencyAmount'
amountReceived:
description: Amount received at the maturity of a contract (i.e. FX forward).
$ref: '#/components/schemas/CurrencyAmount'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
FxSwap:
title: FxSwap
description: |
A foreign currency swap is an agreement between two foreign parties to swap interest payments on a loan made in one currency
for interest payments on a loan made in another currency.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- nearAmountPaid
- nearAmountReceived
- farAmountPaid
- farAmountReceived
- nearMaturityDate
- maturityDate
properties:
nearAmountPaid:
description: Amount paid at the earlier part of an FX swap.
$ref: '#/components/schemas/CurrencyAmount'
nearAmountReceived:
description: Amount received at the earlier part of an FX swap.
$ref: '#/components/schemas/CurrencyAmount'
farAmountPaid:
description: Amount paid at the maturity of an FX swap.
$ref: '#/components/schemas/CurrencyAmount'
farAmountReceived:
description: Amount received at the maturity of an FX swap.
$ref: '#/components/schemas/CurrencyAmount'
nearMaturityDate:
description: Date of the settlement of the near leg.
$ref: '#/components/schemas/Date'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
FxOption:
title: FxOption
description: |
An FX option is a contract that gives the buyer the right, but not the obligation, to buy or sell a certain currency at a
specified exchange rate on or before a specified date. For this right, a premium is paid to the seller.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- expiryDateTime
- underlyingAmount
- counterAmount
properties:
expiryDateTime:
description: |
Date on which an order, a privilege, an entitlement or an offer terminates. For an interest bearing asset, it is the
date/time at which it becomes due and has to be repaid.
$ref: '#/components/schemas/DateTime'
underlyingAmount:
description: |
This field specifies the underlying currency and amount of the contract. The underlying currency is the currency which
is to be exchanged for the counter currency.
$ref: '#/components/schemas/CurrencyAmount'
counterAmount:
description: |
This field specifies the counter currency and amount of the contract. The counter currency is the currency
which is to be exchanged for the underlying currency.
$ref: '#/components/schemas/CurrencyAmount'
premium:
$ref: '#/components/schemas/CurrencyAmount'
optionType:
$ref: '#/components/schemas/OptionType'
optionStyle:
$ref: '#/components/schemas/OptionStyle'
Mortgage:
title: Mortgage
description: A mortgage is a type of loan used to purchase or maintain a home, plot of land, or other types of real estate.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- principalAmount
properties:
principalAmount:
description: The current amount subject to loan on which interest is calculated.
$ref: '#/components/schemas/CurrencyAmount'
interestRate:
$ref: '#/components/schemas/InterestRate'
limit:
type: number
example: 100000
description: Maximum principal amount allowed by the credit contract.
Credit:
title: Credit
description: Credit.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- principalAmount
properties:
principalAmount:
description: The current amount subject to loan or borrowing on which interest is calculated.
$ref: '#/components/schemas/CurrencyAmount'
interestRate:
$ref: '#/components/schemas/InterestRate'
limit:
type: number
example: 100000
description: Maximum principal amount allowed by the credit contract.
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
MoneyMarket:
title: MoneyMarket
description: The money market schema covers both fixed and callable loans and deposits.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- principalAmount
properties:
principalAmount:
description: The current amount subject to loan or borrowing on which interest is calculated.
$ref: '#/components/schemas/CurrencyAmount'
interestRate:
$ref: '#/components/schemas/InterestRate'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
InterestRateSwap:
title: InterestRateSwap
description: |
An interest rate swap is a forward contract in which one stream of future interest payments is exchanged for another based
on a specified principal amount.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- notionalAmount
- interestRatePaid
- interestRateReceived
properties:
notionalAmount:
description: The notional amount serves as the foundation for calculating interest and the returns on an investment.
$ref: '#/components/schemas/CurrencyAmount'
interestRatePaid:
description: Per annum ratio of interest paid to the principal amount of the financial instrument for a specific period of time.
$ref: '#/components/schemas/InterestRate'
interestRateReceived:
description: Per annum ratio of interest received to the principal amount of the financial instrument for a specific period of time.
$ref: '#/components/schemas/InterestRate'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
TotalReturnSwap:
title: TotalReturnSwap
description: |
A swap agreement in which Party A pays fees to Party B in exchange for the income or return generated by an asset owned by
Party B. If the private client is party A and the bank party B the property 'interestRatePaid' should be used to describe
the interest, for opposite parties 'interestRateReceived'.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- notionalAmount
- underlyingFinancialInstrument
properties:
notionalAmount:
description: The notional amount serves as the foundation for calculating interest and the returns on an investment.
$ref: '#/components/schemas/CurrencyAmount'
interestRatePaid:
description: Per annum ratio of interest paid to the principal amount of the financial instrument for a specific period of time.
$ref: '#/components/schemas/InterestRate'
interestRateReceived:
description: Per annum ratio of interest received to the principal amount of the financial instrument for a specific period of time.
$ref: '#/components/schemas/InterestRate'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
CreditDefaultSwap:
title: CreditDefaultSwap
description: A derivative product which serves as a form of insurance against the default of an underlying borrower or debt instrument.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
required:
- notionalAmount
properties:
notionalAmount:
description: The notional amount is the amount the risk 'buyer' agrees to pay the counter party in case of a default.
$ref: '#/components/schemas/CurrencyAmount'
maturityDate:
description: |
Planned date, at the time of issuance, on which an interest bearing financial instrument becomes due and principal
is repaid by the issuer to the investor.
$ref: '#/components/schemas/Date'
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
CryptoAsset:
title: CryptoAsset
description: Crypto Asset.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
OtherFinancialInstrument:
title: Other
type: object
description: Other financial instrument.
allOf:
- $ref: '#/components/schemas/FinancialInstrumentBase'
- type: object
properties:
underlyingFinancialInstrument:
$ref: '#/components/schemas/FinancialInstrument'
FinancialInstrumentType:
title: FinancialInstrumentType
type: string
description: Type of the financial instrument.
example: equity
enum:
- cash
- bond
- equity
- fund
- index
- commodity
- option
- future
- fxForward
- fxSwap
- fxOption
- mortgage
- credit
- fixedLoan
- fixedDeposit
- callableLoan
- callableDeposit
- interestRateSwap
- totalReturnSwap
- creditDefaultSwap
- cryptoAsset
- other
FinancialInstrumentIdentification:
title: FinancialInstrumentIdentification
type: object
description: Financial instrument identification in the form of a key value pair.
required:
- identifier
- type
properties:
identifier:
type: string
maxLength: 128
example: CH0012005267
description: Instrument identification.
type:
type: string
example: isin
description: Type of the instrument ID. isin is preferred.
enum:
- isin
- sedol
- cusip
- ric
- tickerSymbol
- bloomberg
- cta
- quick
- wertpapier
- dutch
- valoren
- sicovam
- belgian
- common
- iso3
- otherProprietaryIdentification
CfiCode:
title: CFICode
type: string
description: |
Indicates the type of the financial instrument. Must follow the ISO 10962, which is also known as CFI (classification of
financial instruments). At least indicate the CFI Category (1st character) and the CFI Group (2nd character). The CFI
attributes 1-4 (3rd to 6th character in the string) are optional.
pattern: ^[A-Z]{2,6}$
minLength: 2