-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathactus-dictionary.json
3933 lines (3932 loc) · 174 KB
/
actus-dictionary.json
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
{
"version": {
"Version": "1.4",
"Date": "2023-12-08"
},
"taxonomy": {
"annuity": {
"identifier": "annuity",
"name": "Annuity",
"acronym": "ANN",
"family": "Basic",
"class": "Fixed Income",
"description": "Principal payment fully at IED and interest plus principal repaid periodically in constant amounts till MD. If variable rate, total amount for interest and principal is recalculated to be fully matured at MD.",
"coverage": "Classical level payment mortgages, leasing contracts etc.",
"status": "Released"
},
"boundaryControlledSwitch": {
"identifier": "boundaryControlledSwitch",
"name": "Boundary Controlled Switch",
"acronym": "BCS",
"family": "Combined",
"class": "Asymmetric",
"description": "A boundary controlled switch is a derivative contract with subcontract legs which can be activated (knocked in) or extinguished (knocked out) when the underlying asset price reaches a specified value. The underlying asset may be a stock, index, or exchange-traded fund. Boundary controlled switch contracts with a single boundary are currently defined.",
"coverage": "Knock-in and Knock-out barrier options with a single boundary. Bonus contracts with payout when underlying asset price remains above or below a specified level for specified period.",
"status": "Implemented"
},
"callMoney": {
"identifier": "callMoney",
"name": "Call Money",
"acronym": "CLM",
"family": "Basic",
"class": "Fixed Income",
"description": "Loans that are rolled over as long as they are not called. Once called it has to be paid back after the stipulated notice period.",
"coverage": "Interbank loans with call features.",
"status": "Released"
},
"capFloor": {
"identifier": "capFloor",
"name": "Cap Floors",
"acronym": "CAPFL",
"family": "Combined",
"class": "Asymmetric",
"description": "Interest rate option expressed in a maximum or minimum interest rate.",
"coverage": "Caps and Floor options.",
"status": "Implemented"
},
"cash": {
"identifier": "cash",
"name": "Cash",
"acronym": "CSH",
"family": "Basic",
"class": "Ownership",
"description": "Cash or cash equivalent position",
"coverage": "Cash, deposits at central bank.",
"status": "Released"
},
"collateral": {
"identifier": "collateral",
"name": "Collateral",
"acronym": "CEC",
"family": "Credit Enhancement",
"class": "Credit Enhancement",
"description": "Collateral creates a relationship between a collateral an obligee and a debtor, covering the exposure from the debtor with the collateral.",
"coverage": "Mortgages include a collateral contract. Any coverage with financial or physical collateral.",
"status": "Implemented"
},
"commodity": {
"identifier": "commodity",
"name": "Commodity",
"acronym": "COM",
"family": "Basic",
"class": "Ownership",
"description": "This is not a financial contract in its propper sense. However it traks movements of commodities such as oil, gas or even houses. Such commodities can serve as underlyings of commodity futures, guarantees or simply asset positions.",
"coverage": "Oil, gas, electricity, houses etc.",
"status": "Released"
},
"convertibleNote": {
"identifier": "convertibleNote",
"name": "Convertible Note",
"acronym": "BNDCP",
"family": "Combined",
"class": "Asymmetric",
"description": "Bonds with a call or put option. If option is exercised, underlying bond ceases to exist.",
"coverage": "Callable and puttable bonds or loans."
},
"creditDefaultSwap": {
"identifier": "creditDefaultSwap",
"name": "Credit Default Swap",
"acronym": "CDSWP",
"family": "Combined",
"class": "Asymmetric",
"description": "A payment is triggered if one or more of the ndelying counterparties defaults.",
"coverage": "All sorts of credit default swaps",
"status": "Implemented"
},
"creditLinkedNote": {
"identifier": "creditLinkedNote",
"name": "Credit Linked Note",
"acronym": "CLNTE",
"family": "Combined",
"class": "Asymmetric",
"description": "A credit linked note is a security with an embedded CDSWP"
},
"eXOTi": {
"identifier": "eXOTi",
"name": "EXOTi",
"acronym": "EXOTi",
"family": "Combined",
"class": "Asymmetric",
"description": "As of current, most of the exotic options which were popular before 2008 are out of favor and factually irrelevant.Which of the exotic options will be implemented will depend on the real relevance in the future.",
"coverage": "Knock-in and Knock-out, Barrier, Ladder, Rainbow options etc."
},
"exoticAnnuity": {
"identifier": "exoticAnnuity",
"name": "Exotic Annuity",
"acronym": "ANX",
"family": "Basic",
"class": "Fixed Income",
"description": "Exotic version of ANN However step ups with respect to (i) Principal, (ii) Interest rates are possible. Highly flexible to match totally irregular principal payments. Principal can also be paid out in steps.",
"coverage": "A special version of this kind are teaser rate loans and mortgages with annuity features."
},
"exoticLinearAmortizer": {
"identifier": "exoticLinearAmortizer",
"name": "Exotic Linear Amortizer",
"acronym": "LAX",
"family": "Basic",
"class": "Fixed Income",
"description": "Exotic version of LAM. However step ups with respect to (i) Principal, (ii) Interest rates are possible. Highly flexible to match totally irregular principal payments. Principal can also be paid out in steps.",
"coverage": "A special version of this kind are teaser rate loans and mortgages.",
"status": "Released"
},
"exoticNegativeAmortizer": {
"identifier": "exoticNegativeAmortizer",
"name": "Exotic Negative Amortizer",
"acronym": "NAX",
"family": "Basic",
"class": "Fixed Income",
"description": "Exotic version of NAM However step ups with respect to (i) Principal, (ii) Interest rates are possible. Highly flexible to match totally irregular principal payments. Principal can also be paid out in steps.",
"coverage": "A special version of this kind are teaser rate loans and mortgages with variable MD.",
"status": "Planned"
},
"foreignExchangeOutright": {
"identifier": "foreignExchangeOutright",
"name": "Foreign Ex-change Outright",
"acronym": "FXOUT",
"family": "Combined",
"class": "Symmetric",
"description": "Two parties agree to exchange two fixed cash flows in different currencies at a certain point in time in future.",
"coverage": "Any FX-outright transaction at a future date. This is also the underlying of FX-options and FX futures.",
"status": "Released"
},
"future": {
"identifier": "future",
"name": "Future",
"acronym": "FUTUR",
"family": "Combined",
"class": "Symmetric",
"description": "Keeps track of value changes for any basic CT as underlying (PAM, ANN etc. but also FXOUT, STK, COM). Handles margining calls.",
"coverage": "Standard interest rate, FX, stock and commodity futures.",
"status": "Implemented"
},
"guarantee": {
"identifier": "guarantee",
"name": "Guarantee",
"acronym": "CEG",
"family": "Credit Enhancement",
"class": "Credit Enhancement",
"description": "Guarantee creates a relationship between a guarantor, an obligee and a debtor, moving the exposure from the debtor to the guarantor.",
"coverage": "Personal guarantee. Government guarantee. Underlyings of CDO´s.",
"status": "Implemented"
},
"linearAmortizer": {
"identifier": "linearAmortizer",
"name": "Linear Amortizer",
"acronym": "LAM",
"family": "Basic",
"class": "Fixed Income",
"description": "Principal payment fully at IED. Principal repaid periodically in constant amounts till MD. Interest gets reduced accordingly. If variable rate, only interest payment is recalculated. Fixed and variable rates.",
"coverage": "Many amortizing loans.",
"status": "Released"
},
"margining": {
"identifier": "margining",
"name": "Margining",
"acronym": "MAR",
"family": "Credit Enhancement",
"class": "Credit Enhancement",
"description": "A Margining contract traces the value changes and the different margin categories like inital and variation margin.",
"coverage": "Margin contracts as applied in central depositories for any underlying or portfolio of underlying instruments.",
"status": "Implemented"
},
"negativeAmortizer": {
"identifier": "negativeAmortizer",
"name": "Negative Amortizer",
"acronym": "NAM",
"family": "Basic",
"class": "Fixed Income",
"description": "Similar as ANN. However when resetting rate, total amount (interest plus principal) stay constant. MD shifts. Only variable rates.",
"coverage": "Special class of ARM´s (adjustable rate mortgages), Certain loans.",
"status": "Released"
},
"option": {
"identifier": "option",
"name": "Option",
"acronym": "OPTNS",
"family": "Combined",
"class": "Asymmetric",
"description": "Calculates straight option pay-off for any basic CT as underlying (PAM, ANN etc.) but also SWAPS, FXOUT, STK and COM. Single, periodic and continuous strike is supported.",
"coverage": "European, American and Bermudan options with Interest rate, FX and stock futures as underlying instruments.",
"status": "Implemented"
},
"perpetualBonds": {
"identifier": "perpetualBonds",
"name": "Perpetual Bonds",
"acronym": "PBN",
"family": "Basic",
"class": "Fixed Income",
"description": "Bonds without any maturity date. Interest is paid into eternity if is not terminated.",
"coverage": "Consoles, war loans."
},
"plainVanillaSwap": {
"identifier": "plainVanillaSwap",
"name": "Plain Vanilla Swap",
"acronym": "SWPPV",
"family": "Combined",
"class": "Symmetric",
"description": "Plain vanilla swaps where the underlyings are always two identical PAM´s however with one leg fixed and the other variable.",
"coverage": "More than 90% of all interest rate swaps follow this simple pattern.",
"status": "Released"
},
"principalAtMaturity": {
"identifier": "principalAtMaturity",
"name": "Principal at Maturity",
"acronym": "PAM",
"family": "Basic",
"class": "Fixed Income",
"description": "Principal payment fully at Initial Exchange Date (IED) and repaid at Maturity Date (MD). Fixed and variable rates.",
"coverage": "All kind of bonds, term deposits, bullet loans and mortgages etc.",
"status": "Released"
},
"repurchaseAgreement": {
"identifier": "repurchaseAgreement",
"name": "Repurchase Agreement",
"acronym": "REP",
"family": "Credit Enhancement",
"class": "Credit Enhancement",
"description": "A Repo contract controls and manages the sale and repurchase of assets on the books.",
"coverage": "Classical repo and reverse repo agreements.",
"status": "Planned"
},
"securitizationCreditRisk": {
"identifier": "securitizationCreditRisk",
"name": "Securitization Credit Risk",
"acronym": "SCRCR",
"family": "Combined",
"class": "Securitization",
"description": "Securitiazion contracts where contracs are ranked according to credit default. The lower ranked tranches are hit by the first defaults. Only when the lowest tranches are wiped out, the next higher tranch is hit.",
"coverage": "CDO´s"
},
"securitizationMarketRisk": {
"identifier": "securitizationMarketRisk",
"name": "Securitization Market Risk",
"acronym": "SCRMR",
"family": "Combined",
"class": "Securitization",
"description": "Securitiazion contracts where all underlying contracts are treated equal. The buyer of a tranche gets a part of the cash-flows.",
"coverage": "ABS´s, MBS´s of all sorts. Could be a simple tranche or more complex tranch like interest only and principal only."
},
"stock": {
"identifier": "stock",
"name": "Stock",
"acronym": "STK",
"family": "Basic",
"class": "Ownership",
"description": "Any instrument which is bought at a certain amount (market price normally) and then follows an index.",
"coverage": "All straight stocks.",
"status": "Released"
},
"swap": {
"identifier": "swap",
"name": "Swap",
"acronym": "SWAPS",
"family": "Combined",
"class": "Symmetric",
"description": "Exchange of two basic CT´s (PAM, ANN etc.). Normally one is fixed, the other variable. However all variants possible including different currencies for cross currency swaps, basic swaps or even different principal exchange programs.",
"coverage": "All kind of swaps. The variety is defined by the underlying CT´s which often are PAM and ANN in all its flavors. With each new basic CT the variety rises.",
"status": "Implemented"
},
"totalReturnSwap": {
"identifier": "totalReturnSwap",
"name": "Total Return Swap",
"acronym": "TRSWP",
"family": "Combined",
"class": "Asymmetric",
"description": "A total return swap is a swap agreement in which one party makes payments based on a set rate, either fixed or variable, while the other party makes payments based on the return of an underlying asset, which includes both the income it generates and any capital gains."
},
"undefinedMaturityProfile": {
"identifier": "undefinedMaturityProfile",
"name": "Undefined Maturity Profile",
"acronym": "UMP",
"family": "Basic",
"class": "Fixed Income",
"description": "Principal paid in and out at any point in time without prefixed schedule. Interest calculated on outstanding and capitalized periodically. Needs link to a behavioral function describing expected flows.",
"coverage": "Saving products of all kind, current accounts. In some countries even variable rate mortgages can be represented with this CT.",
"status": "Released"
},
"warrant": {
"identifier": "warrant",
"name": "Warrant",
"acronym": "BNDWR",
"family": "Combined",
"class": "Asymmetric",
"description": "Bonds with a warrant. If option is exercised, underlying bond continues to exist.",
"coverage": "Warrants."
}
},
"terms": {
"accruedInterest": {
"identifier": "accruedInterest",
"group": "Interest",
"name": "Accrued Interest",
"acronym": "IPAC",
"type": "Real",
"allowedValues": [],
"default": "",
"description": "Accrued interest as per SD. In case of NULL, this value will be recalculated using IPANX, IPCL and IPNR information. Can be used to represent irregular next IP payments."
},
"amortizationDate": {
"identifier": "amortizationDate",
"group": "Notional Principal",
"name": "Amortization Date",
"acronym": "AMD",
"type": "Timestamp",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "This Date is used to calculate the annuity amounts for ANN and ANX NGX CT's. Needs only to be set in case where the contract balloon at MD and MD is less than AD."
},
"arrayCycleAnchorDateOfInterestPayment": {
"identifier": "arrayCycleAnchorDateOfInterestPayment",
"group": "Interest",
"name": "Array Cycle Anchor Date Of Interest Payment",
"acronym": "ARIPANXi",
"type": "Timestamp[]",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "Same like IPANX but as array"
},
"arrayCycleAnchorDateOfPrincipalRedemption": {
"identifier": "arrayCycleAnchorDateOfPrincipalRedemption",
"group": "Notional Principal",
"name": "Array Cycle Anchor Date Of Principal Redemption",
"acronym": "ARPRANXj",
"type": "Timestamp[]",
"allowedValues": [],
"default": "",
"description": "Same like PRANX but as array"
},
"arrayCycleAnchorDateOfRateReset": {
"identifier": "arrayCycleAnchorDateOfRateReset",
"group": "Rate Reset",
"name": "Array Cycle Anchor Date Of Rate Reset",
"acronym": "ARRRANX",
"type": "Timestamp[]",
"allowedValues": [],
"default": "",
"description": "Same like RRANX but as array"
},
"arrayCycleOfInterestPayment": {
"identifier": "arrayCycleOfInterestPayment",
"group": "Interest",
"name": "Array Cycle Of Interest Payment",
"acronym": "ARIPCLi",
"type": "Cycle[]",
"allowedValues": [],
"default": "",
"description": "Same like IPCL but as array"
},
"arrayCycleOfPrincipalRedemption": {
"identifier": "arrayCycleOfPrincipalRedemption",
"group": "Notional Principal",
"name": "Array Cycle Of Principal Redemption",
"acronym": "ARPRCLj",
"type": "Cycle[]",
"allowedValues": [],
"default": "",
"description": "Same like PRCL but as array"
},
"arrayCycleOfRateReset": {
"identifier": "arrayCycleOfRateReset",
"group": "Rate Reset",
"name": "Array Cycle Of Rate Reset",
"acronym": "ARRRCL",
"type": "Cycle[]",
"allowedValues": [],
"default": "",
"description": "Same like RRCL but as array"
},
"arrayFixedVariable": {
"identifier": "arrayFixedVariable",
"group": "Rate Reset",
"name": "Array Fixed Variable",
"acronym": "ARFIXVAR",
"type": "Enum[]",
"allowedValues": [
{
"option": "0",
"identifier": "fixedRate",
"name": "Fixed Rate",
"acronym": "F",
"description": "Rate spread represents a fixed rate.\r"
},
{
"option": "1",
"identifier": "variableRate",
"name": "Variable Rate",
"acronym": "V",
"description": "Rate spread represents the spread on top of a reference rate."
}
],
"default": "",
"description": "For array-type rate reset schedules, this attributes defines the meaning of ARRATE."
},
"arrayIncreaseDecrease": {
"identifier": "arrayIncreaseDecrease",
"group": "Notional Principal",
"name": "Array Increase Decrease",
"acronym": "ARINCDEC",
"type": "Enum[]",
"allowedValues": [
{
"option": "0",
"identifier": "increase",
"name": "Increase",
"acronym": "INC",
"description": "Notional is increased in this period.\r"
},
{
"option": "1",
"identifier": "decrease",
"name": "Decrease",
"acronym": "DEC",
"description": "Notional is decreased in this period."
}
],
"default": "",
"description": "Indicates whether a certain PRNXT element in ARPRNX increases the principal (NT) or decreases it.\r\nApplies only for ANX, NAX, LAX Maturity CTs. For all other Maturity CTs the first principal payment is always in the opposite direction of all other (following) payments."
},
"arrayNextPrincipalRedemptionPayment": {
"identifier": "arrayNextPrincipalRedemptionPayment",
"group": "Notional Principal",
"name": "Array Next Principal Redemption Payment",
"acronym": "ARPRNXTj",
"type": "Real[]",
"allowedValues": [],
"default": "",
"description": "Same like PRNXT but as array"
},
"arrayRate": {
"identifier": "arrayRate",
"group": "Rate Reset",
"name": "Array Rate",
"acronym": "ARRATE",
"type": "Real[]",
"allowedValues": [],
"default": "",
"description": "For array-type rate reset schedules, this attribute represents either an interest rate (corresponding to IPNR) or a spread (corresponding to RRSP). Which case applies depends on the attribute ARFIXVAR: if ARFIXVAR=FIX then it represents the new IPNR and if ARFIXVAR=VAR then the applicable RRSP."
},
"boundaryCrossedFlag": {
"identifier": "boundaryCrossedFlag",
"group": "Boundary",
"name": "Boundary Crossed Flag",
"acronym": "BCF",
"type": "Boolean",
"allowedValues": [],
"default": "FALSE",
"description": "Initializes the value of Boundary Crossed Flag state variable at statusDate"
},
"boundaryDirection": {
"identifier": "boundaryDirection",
"group": "Boundary",
"name": "Boundary Direction",
"acronym": "BDR",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "fromBelow",
"name": "From Below",
"acronym": "INCR",
"description": "Boundary effect is trigerred if the observed underlying asset value is greater than or equal to the boundary value at a monitor time.\r"
},
{
"option": "1",
"identifier": "fromAbove",
"name": "From Above",
"acronym": "DECR",
"description": "Boundary action if observed market object value less than or equal to boundary value at a monitor time."
}
],
"default": "",
"description": "Boundary direction specifies the direction of motion in the underlying asset's price which will be considered a valid crossing of the boundary and trigger the boundary effect changing which, if any, of the boundary legs is active."
},
"boundaryEffect": {
"identifier": "boundaryEffect",
"group": "Boundary",
"name": "Boundary Effect",
"acronym": "BEF",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "knockINFirstLeg",
"name": "KnockIN First Leg",
"acronym": "INFIL",
"description": "effect of boundary crossing is to knock IN the first leg making this the active contract; monitoring of the boundary stops.\r"
},
{
"option": "1",
"identifier": "knockINSecondLeg",
"name": "KnockIN Second Leg",
"acronym": "INSEL",
"description": "effect of boundary crossing is to knock IN the Second Leg making this the active contract; monitoring of the boundary stops.\r"
},
{
"option": "2",
"identifier": "knockOUTCurrentLeg",
"name": "KnockOUT Current Leg",
"acronym": "OUT",
"description": "effect of boundary crossing is to knockOUT any active contract so there is no active contract after the boundary crossing; monitoring of the boundary stops."
}
],
"default": "",
"description": "This term specifies which leg - if any- becomes the active subcontract when the underlying asset's price crosses the specified boundary value in the specified direction triggerring a boundary crossing event."
},
"boundaryLegInitiallyActive": {
"identifier": "boundaryLegInitiallyActive",
"group": "Boundary",
"name": "Boundary Leg Initially Active",
"acronym": "BLIA",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "firstLeg",
"name": "First Leg",
"acronym": "FIL",
"description": "the first leg is active when the boundary controlled switch contract is initialized.\r"
},
{
"option": "1",
"identifier": "secondLeg",
"name": "Second Leg",
"acronym": "SEL",
"description": "the second leg is active when the boundary controlled switch contract starts.\r"
},
{
"option": "2",
"identifier": "Null",
"name": "Null",
"acronym": "Null",
"description": "there is no active subcontract when the boundary controlled switch contract starts."
}
],
"default": "there is no active subcontract",
"description": "Specifies which leg - if any - is the active contract in effect when the boundary controlled switch contract starts."
},
"boundaryMonitoringAnchorDate": {
"identifier": "boundaryMonitoringAnchorDate",
"group": "Boundary",
"name": "Boundary Monitoring Anchor Date",
"acronym": "BMANX",
"type": "Timestamp",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "The first Boundary monitoring event occurs on this date"
},
"boundaryMonitoringCycle": {
"identifier": "boundaryMonitoringCycle",
"group": "Boundary",
"name": "Boundary Monitoring Cycle",
"acronym": "BMCL",
"type": "Cycle",
"allowedValues": [
"ISO8601 Duration"
],
"default": "",
"description": "The frequency with which boundary monitoring events occur. It defines how often the system checks to test whether the market value of the underlying asset has crossed the boundary in the specified direction triggerring a boundary crossing event."
},
"boundaryMonitoringEndDate": {
"identifier": "boundaryMonitoringEndDate",
"group": "Barrier",
"name": "Boundary Monitoring End Date",
"acronym": "BMED",
"type": "Timestamp",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "Boundary monitoring ends on this date"
},
"boundaryValue": {
"identifier": "boundaryValue",
"group": "Boundary",
"name": "Boundary Value",
"acronym": "BV",
"type": "Real",
"allowedValues": [],
"default": "",
"description": "Boundary value in a barrier options contract, when reached, triggers the boundary effect specified e.g. Knock-In or Knock-out"
},
"businessDayConvention": {
"identifier": "businessDayConvention",
"group": "Calendar",
"name": "Business Day Convention",
"acronym": "BDC",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "noShift",
"name": "No Shift",
"acronym": "NOS",
"description": "No shift applied to non-business days.\r"
},
{
"option": "1",
"identifier": "shiftCalculateFollowing",
"name": "Shift-Calculate Following",
"acronym": "SCF",
"description": "Shift event dates first then calculate accruals etc. Strictly shift to the next following business day.\r"
},
{
"option": "2",
"identifier": "shiftCalculateModifiedFollowing",
"name": "Shift-Calculate Modified-Following",
"acronym": "SCMF",
"description": "Shift event dates first then calculate accruals etc. Shift to the next following business day if this falls in the same month. Shift to the most recent preceding business day otherwise.\r"
},
{
"option": "3",
"identifier": "calculateShiftFollowing",
"name": "Calculate-Shift Following",
"acronym": "CSF",
"description": "Calculate accruals etc. first then shift event dates. Strictly shift to the next following business day.\r"
},
{
"option": "4",
"identifier": "calculateShiftModifiedFollowing",
"name": "Calculate-Shift Modified-Following",
"acronym": "CSMF",
"description": "Calculate accruals etc. first then shift event dates. Shift to the next following business day if this falls in the same month. Shift to the most recent preceding business day otherwise.\r"
},
{
"option": "5",
"identifier": "shiftCalculatePreceding",
"name": "Shift-Calculate Preceding",
"acronym": "SCP",
"description": "Shift event dates first then calculate accruals etc. Strictly shift to the most recent preceding business day.\r"
},
{
"option": "6",
"identifier": "shiftCalculateModifiedPreceding",
"name": "Shift-Calculate Modified-Preceding",
"acronym": "SCMP",
"description": "Shift event dates first then calculate accruals etc. Shift to the most recent preceding business day if this falls in the same month. Shift to the next following business day otherwise.\r"
},
{
"option": "7",
"identifier": "calculateShiftPreceding",
"name": "Calculate-Shift Preceding",
"acronym": "CSP",
"description": "Calculate accruals etc. first then shift event dates. Strictly shift to the most recent preceding business day.\r"
},
{
"option": "8",
"identifier": "calculateShiftModifiedPreceding",
"name": "Calculate-Shift Modified-Preceding",
"acronym": "SCMP",
"description": "Calculate accruals etc. first then shift event dates. Shift to the most recent preceding business day if this falls in the same month. Shift to the next following business day otherwise."
}
],
"default": "nos",
"description": "BDC's are linked to a calendar. Calendars have working and non-working days. A BDC value other than N means that cash flows cannot fall on non-working days, they must be shifted to the next business day (following) or the previous on (preceding).\r\nThese two simple rules get refined twofold:\r\n- Following modified (preceding): Same like following (preceding), however if a cash flow gets shifted into a new month, then it is shifted to preceding (following) business day.\r\n- Shift/calculate (SC) and calculate/shift (CS). Accrual, principal, and possibly other calculations are affected by this choice. In the case of SC first the dates are shifted and after the shift cash flows are calculated. In the case of CS it is the other way round.\r\nAttention: Does not affect non-cyclical dates such as PRD, MD, TD, IPCED since they can be set to the correct date directly."
},
"calendar": {
"identifier": "calendar",
"group": "Calendar",
"name": "Calendar",
"acronym": "CLDR",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "noCalendar",
"name": "No Calendar",
"acronym": "NC",
"description": "No holidays defined\r"
},
{
"option": "1",
"identifier": "mondayToFriday",
"name": "MondayToFriday",
"acronym": "MF",
"description": "Saturdays and Sundays are holidays"
}
],
"default": "noCalendar",
"description": "Calendar defines the non-working days which affect the dates of contract events (CDE's) in combination with EOMC and BDC. Custom calendars can be added as additional enum options."
},
"capitalizationEndDate": {
"identifier": "capitalizationEndDate",
"group": "Interest",
"name": "Capitalization End Date",
"acronym": "IPCED",
"type": "Timestamp",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "If IPCED is set, then interest is not paid or received but added to the balance (NT) until IPCED. If IPCED does not coincide with an IP cycle, one additional interest payment gets calculated at IPCED and capitalized. Thereafter normal interest payments occur."
},
"clearingHouse": {
"identifier": "clearingHouse",
"group": "Margining",
"name": "Clearing House",
"acronym": "MRCLH",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "isClearingHouse",
"name": "Is Clearing House",
"acronym": "Y",
"description": "Contract creator is the clearing house.\r"
},
{
"option": "1",
"identifier": "isNotClearingHouse",
"name": "Is Not Clearing House",
"acronym": "N",
"description": "Contract creator is not the clearing house."
}
],
"default": "",
"description": "Indicates wheter CRID takes a clearing house function or not. In other word, whether CRID receive margins (MRIM, MRVM)."
},
"contractDealDate": {
"identifier": "contractDealDate",
"group": "Notional Principal",
"name": "Contract Deal Date",
"acronym": "CDD",
"type": "Timestamp",
"allowedValues": [
"ISO8601 Datetime"
],
"default": "",
"description": "This date signifies the origination of the contract where an agreement between the customer and the bank has been settled. From this date on, the institution will have a (market) risk position for financial contracts. This is even the case when IED is in future."
},
"contractID": {
"identifier": "contractID",
"group": "Contract identification",
"name": "Contract Identifier",
"acronym": "CID",
"type": "Varchar",
"allowedValues": [],
"default": "",
"description": "Unique identifier of a contract. \r\nIf the system is used on a single firm level, an internal unique ID can be generated. If used on a national or globally level, a globally unique ID is required."
},
"contractPerformance": {
"identifier": "contractPerformance",
"group": "Counterparty",
"name": "Contract Performance",
"acronym": "PRF",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "performant",
"name": "Performant",
"acronym": "PF",
"description": "Contract is performing according to terms and conditions.\r"
},
{
"option": "1",
"identifier": "delayed",
"name": "Delayed",
"acronym": "DL",
"description": "Contractual payment obligations are delayed according to the Grace Period.\r"
},
{
"option": "2",
"identifier": "delinquent",
"name": "Delinquent",
"acronym": "DQ",
"description": "Contractual payment obligations are delinquent according to the Delinquency Period.\r"
},
{
"option": "3",
"identifier": "default",
"name": "Default",
"acronym": "DF",
"description": "Contract defaulted on payment obligations according to Delinquency Period.\r"
},
{
"option": "4",
"identifier": "matured",
"name": "Matured",
"acronym": "MA",
"description": "Contract matured.\r"
},
{
"option": "5",
"identifier": "terminated",
"name": "Terminated",
"acronym": "TE",
"description": "Contract has been terminated."
}
],
"default": "PF",
"description": "Indicates the current contract performance status. Different states of the contract range from performing to default."
},
"contractRole": {
"identifier": "contractRole",
"group": "Contract identification",
"name": "Contract Role",
"acronym": "CNTRL",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "realPositionAsset",
"name": "Real Position Asset",
"acronym": "RPA",
"description": "Contract creator takes the asset or lender side.\r"
},
{
"option": "1",
"identifier": "realPositionLiability",
"name": "Real Position Liability",
"acronym": "RPL",
"description": "Contract creator takes the liability or borrower side. \r"
},
{
"option": "2",
"identifier": "receiveFirstLegl",
"name": "Receive First Leg",
"acronym": "RFL",
"description": "Contract creator receives the first leg. \r"
},
{
"option": "3",
"identifier": "payFirstLeg",
"name": "Pay First Leg",
"acronym": "PFL",
"description": "Contract creator pays the first leg.\r"
},
{
"option": "4",
"identifier": "receiveFix",
"name": "Receive Fix",
"acronym": "RF",
"description": "Contract creator receives the fixed leg.\r"
},
{
"option": "5",
"identifier": "payFix",
"name": "Pay Fix",
"acronym": "PF",
"description": "Contract creator pays the fixed leg.\r"
},
{
"option": "6",
"identifier": "buyer",
"name": "Buyer",
"acronym": "BUY",
"description": "Contract creator holds the right to buy the underlying / exercise the option. \r"
},
{
"option": "7",
"identifier": "seller",
"name": "Seller",
"acronym": "SEL",
"description": "Contract creator holds the obligation to sell the underlying / deliver the option. \r"
},
{
"option": "8",
"identifier": "collateralPosition",
"name": "Collateral Position",
"acronym": "COL",
"description": "Contract represents a collateral to an underlying instrument\r"
},
{
"option": "9",
"identifier": "closeOutNetting",
"name": "Close out Netting",
"acronym": "CNO",
"description": "Contract creator and counterparty agree on netting payment obligations of underlying instruments in case of default. \r"
},
{
"option": "10",
"identifier": "underlying",
"name": "Underlying",
"acronym": "UDL",
"description": "Contract represents the underlying to a composed contract. Role of the underlying is derived from the parent. \r"
},
{
"option": "11",
"identifier": "underlyingPlus",
"name": "Underlying Plus",
"acronym": "UDLP",
"description": "Contract represents the underlying to a composed contract. Role of the underlying is derived from the parent. When considered a standalone contract the underlying’s creator takes the asset side. \r"
},
{
"option": "12",
"identifier": "underlyingMinus",
"name": "Underlying Minus",
"acronym": "UDLM",
"description": "Contract represents the underlying to a composed contract. Role of the underlying is derived from the parent. When considered a standalone contract the underlying’s creator takes the liability side."
}
],
"default": "",
"description": "CNTRL defines which position the CRID ( the creator of the contract record ) takes in a contract. For example, whether the contract is an asset or liability, a long or short position for the CRID. \r\nMost contracts are simple on or off balance sheet positions which are assets, liabilities. Such contracts can also play a secondary role as a collateral. \r\nThe attribute is highly significant since it determines the direction of all cash flows. The exact meaning is given with each CT in the ACTUS High Level Specification document."
},
"contractStructure": {
"identifier": "contractStructure",
"group": "Contract identification",
"name": "Contract Structure",
"acronym": "CTS",
"type": "ContractReference[]",
"allowedValues": [],
"default": "",
"description": "A structure identifying individual or sets of underlying contracts. E.g. for FUTUR, this structure identifies the single underlying contract, for SWAPS, the FirstLeg and SecondLeg are identified, or for CEG, CEC the structure identifies Covered and Covering contracts."
},
"contractType": {
"identifier": "contractType",
"group": "Contract identification",
"name": "Contract Type",
"acronym": "CT",
"type": "Enum",
"allowedValues": [
{
"option": "0",
"identifier": "principalAtMaturity",
"name": "Principal at Maturity",
"acronym": "PAM",
"description": "Lending agreements with full amortization at maturity.\r"
},
{
"option": "1",
"identifier": "annuity",
"name": "Annuity",
"acronym": "ANN",
"description": "Lending agreements with fixed periodic payments consisting of an interest and principal portion. The periodic payments are adjusted for variable rate instruments such that maturity remains fixed.\r"
},
{
"option": "2",
"identifier": "negativeAmortizer",
"name": "Negative Amortizer",
"acronym": "NAM",
"description": "Lending agreements with fixed periodic payments consisting of an interest and principal portion. Maturity changes for variable rate instruments. \r"
},
{
"option": "3",
"identifier": "linearAmortizer",
"name": "Linear Amortizer",
"acronym": "LAM",
"description": "Lending agreements with fixed principal repayment amounts and variable interest payments.\r"
},
{
"option": "4",
"identifier": "exoticLinearAmortizer",
"name": "Exotic Linear Amortizer",
"acronym": "LAX",
"description": "Lending agreements with exotic repayment schedules.\r"
},
{
"option": "5",
"identifier": "callMoney",
"name": "Call Money",
"acronym": "CLM",
"description": "Lonas that are rolled over as long as they are not called. Once called it has to be paid back after the stipulated notice period.\r"
},
{
"option": "6",
"identifier": "undefinedMaturityProfile",
"name": "Undefined Maturity Profile",
"acronym": "UMP",
"description": "Interest paying cash accounts (current / savings / etc.). \r"
},
{
"option": "7",
"identifier": "cash",
"name": "Cash",
"acronym": "CSH",