-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthorityIdentification.ts
More file actions
101 lines (101 loc) · 3.28 KB
/
AuthorityIdentification.ts
File metadata and controls
101 lines (101 loc) · 3.28 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
/**
* Specifies the external authority identification scheme name code in the format of character string with a maximum length of 4 characters.
* ISO20022 External Code
* Original name: ExternalAuthorityIdentification1Code
*/
export enum AuthorityIdentification {
/** Austrian Financial Market Authority (FMA) */
ATFM = "ATFM",
/** Australian Securities and Investments Commission (ASIC) */
AUAS = "AUAS",
/** Financial Services and Markets Authority (FSMA) */
BEFS = "BEFS",
/** National Bank of Belgium */
BENB = "BENB",
/** Financial Supervision Commission (FSC) */
BGFS = "BGFS",
/** Canadian Securities Transition Office (CSTO) */
CACS = "CACS",
/** Authority for the Supervision and Development of Cooperative Societies */
CYAS = "CYAS",
/** Central Bank of Cyprus (CBC) */
CYCB = "CYCB",
/** Cyprus Securities and Exchange Commission (CySEC) */
CYCY = "CYCY",
/** Czech National Bank (CNB) */
CZCN = "CZCN",
/** Federal Financial Supervisory Authority (BaFin) */
DEBA = "DEBA",
/** Finanstilsynet */
DKFI = "DKFI",
/** Estonian Financial Supervision Authority (EFSA) */
EEEF = "EEEF",
/** Bank of Spain (BDE) */
ESBD = "ESBD",
/** Comisión Nacional del Mercado de Valores (CNMV) */
ESCN = "ESCN",
/** European Securities and Markets Authority (ESMA) */
EUES = "EUES",
/** Finanssivalvonta (FSA) */
FIFS = "FIFS",
/** Autorité de Contrôle Prudentiel et de Résolution (ACPR) */
FRAC = "FRAC",
/** Autorité des Marchés Financiers (AMF) */
FRAM = "FRAM",
/** Financial Conduct Authority (FCA) */
GBFC = "GBFC",
/** Financial Services Authority (FSA) */
GBFS = "GBFS",
/** Prudential Regulation Authority (PRA) */
GBPR = "GBPR",
/** Gibraltar FSC (FSC) */
GIFS = "GIFS",
/** Bank of Greece (BOG) */
GRBO = "GRBO",
/** Hellenic Capital Market Commission (HCMC) */
GRHC = "GRHC",
/** Croatian Financial Services Supervisory Agency (HANFA) */
HRHA = "HRHA",
/** Hungarian Financial Supervisory Authority (PSZAF) */
HUPS = "HUPS",
/** Central Bank of Ireland (CBI) */
IECB = "IECB",
/** Iceland Financial Supervisory Authority (FME) */
ISFM = "ISFM",
/** BANCA D'ITALIA (BDI) */
ITBD = "ITBD",
/** Commissione Nazionale per le Societa e la Borsa (CONSOB) */
ITCO = "ITCO",
/** Financial Market Authority (FMA) */
LIFM = "LIFM",
/** Bank of Lithuania (LSC) */
LTLS = "LTLS",
/** Commission de Surveillance du Secteur Financier (CSSF) */
LUCS = "LUCS",
/** Financial & Capital Market Commission (FKTK) */
LVFK = "LVFK",
/** Malta Financial Services Authority (MFSA) */
MTMF = "MTMF",
/** Netherlands Authority for the Financial Markets (AFM) */
NLAF = "NLAF",
/** Nederlandse Bank (DNB) */
NLDN = "NLDN",
/** Norwegian Financial Supervisory Authority (Finanstilsynet) */
NOFI = "NOFI",
/** Polish Financial Supervisory Commission (KNF) */
PLKN = "PLKN",
/** Banco de Portugal (BP) */
PTBP = "PTBP",
/** Comissão do Mercado de Valores Mobiliários (CMVM) */
PTCM = "PTCM",
/** Romanian Financial Supervisory Authority (ASF) */
ROAS = "ROAS",
/** Finansinspektionen (FI) */
SEFI = "SEFI",
/** Securities Market Agency (ATVP) */
SIAT = "SIAT",
/** National Bank of Slovakia (NBS) */
SKNB = "SKNB",
/** US Commodity Futures Trading Commission (CFTC) */
USCF = "USCF",
}