-
Notifications
You must be signed in to change notification settings - Fork 1
/
permid_financial.txt
374 lines (374 loc) · 11 KB
/
permid_financial.txt
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
# baseURI: http://permid.org/ontology/financial/
# imports: http://permid.org/ontology/common/
# imports: http://permid.org/ontology/currency/
# imports: http://permid.org/ontology/organization/
# imports: http://permid.org/ontology/tr-vcard/
# imports: http://permid.org/ontology/trbc/
# prefix: tr-fin
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix tr-common: <http://permid.org/ontology/common/> .
@prefix tr-currency: <http://permid.org/ontology/currency/> .
@prefix tr-fin: <http://permid.org/ontology/financial/> .
@prefix tr-org: <http://permid.org/ontology/organization/> .
@prefix trbc: <http://permid.org/ontology/trbc/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
tr-fin:
rdf:type owl:Ontology ;
rdfs:label "Thomson Reuters Open Perm ID financial ontology"@en ;
owl:imports tr-common: ;
owl:imports tr-currency: ;
owl:imports tr-org: ;
owl:imports <http://permid.org/ontology/tr-vcard/> ;
owl:imports trbc: ;
.
tr-fin:AssetClass
rdf:type owl:Class ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Asset class"@en ;
rdfs:subClassOf skos:Concept ;
.
tr-fin:AssetClassScheme
rdf:type skos:ConceptScheme ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Asset class scheme"@en ;
.
tr-fin:Instrument
rdf:type owl:Class ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Instrument"@en ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty tr-common:hasName ;
] ;
.
tr-fin:InstrumentStatus
rdf:type owl:Class ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Instrument status"@en ;
rdfs:subClassOf skos:Concept ;
.
tr-fin:InstrumentStatusScheme
rdf:type skos:ConceptScheme ;
rdfs:comment "Instrument status." ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Instrument status scheme"@en ;
skos:hasTopConcept tr-fin:InstrumentStatusSuspended ;
skos:hasTopConcept tr-fin:instrumentStatusActive ;
skos:hasTopConcept tr-fin:instrumentStatusInactive ;
.
tr-fin:InstrumentStatusSuspended
rdf:type tr-fin:InstrumentStatus ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Suspended"@en ;
.
tr-fin:OptionType
rdf:type owl:Class ;
rdfs:comment "Call or Put"@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Option type"@en ;
rdfs:subClassOf skos:Concept ;
.
tr-fin:OptionTypeScheme
rdf:type skos:ConceptScheme ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Option type scheme"@en ;
skos:hasTopConcept tr-fin:optionTypeCall ;
skos:hasTopConcept tr-fin:optionTypePut ;
.
tr-fin:Quote
rdf:type owl:Class ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Quote"@en ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty tr-common:hasName ;
] ;
.
tr-fin:QuoteStatus
rdf:type owl:Class ;
rdfs:comment "An indicator which defines whether a security is actively traded or delisted."@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Quote status"@en ;
rdfs:subClassOf skos:Concept ;
.
tr-fin:QuoteStatusScheme
rdf:type skos:ConceptScheme ;
rdfs:comment "A scheme of indicators which defines whether a security is actively traded or delisted."@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Quote status scheme"@en ;
skos:hasTopConcept tr-fin:quoteStatusActive ;
skos:hasTopConcept tr-fin:quoteStatusInactive ;
skos:hasTopConcept tr-fin:quoteStatusSuspended ;
.
tr-fin:QuoteType
rdf:type owl:Class ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Quote type"@en ;
rdfs:subClassOf skos:Concept ;
.
tr-fin:QuoteTypeScheme
rdf:type skos:ConceptScheme ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Quote type scheme"@en ;
skos:hasTopConcept tr-fin:quoteTypeEvaluated ;
skos:hasTopConcept tr-fin:quoteTypeExecutable ;
skos:hasTopConcept tr-fin:quoteTypeFixing ;
skos:hasTopConcept tr-fin:quoteTypeIndicative ;
.
tr-fin:hasAssetClass
rdf:type owl:ObjectProperty ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has asset class"@en ;
rdfs:range tr-fin:AssetClass ;
.
tr-fin:hasCFICode
rdf:type owl:DatatypeProperty ;
rdfs:comment "ISO 10962 Classification of Financial Instruments."@en ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has CFI code"@en ;
rdfs:range xsd:string ;
.
tr-fin:hasExchangeCode
rdf:type owl:DatatypeProperty ;
rdfs:comment "Code indicating the exchange on which the quote is traded."@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has exchange code"@en ;
rdfs:range xsd:string ;
.
tr-fin:hasExchangeTicker
rdf:type owl:DatatypeProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has exchange ticker"@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf tr-common:hasIdentifier ;
.
tr-fin:hasExpiryDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "The agreed and predetermined final date on which an option or warrant can be bought (call) or sold (put)."@en ;
rdfs:domain [
rdf:type owl:Class ;
owl:unionOf (
tr-fin:Instrument
tr-fin:Quote
) ;
] ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has expiry date"@en ;
rdfs:range xsd:dateTime ;
.
tr-fin:hasInstrumentStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "An indicator which defines whether a security has any active quotes. Varies over time."@en ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has instrument status"@en ;
rdfs:range tr-fin:InstrumentStatus ;
.
tr-fin:hasMic
rdf:type owl:DatatypeProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has market identification code"@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf tr-common:hasIdentifier ;
.
tr-fin:hasOptionType
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has option type"@en ;
rdfs:range tr-fin:OptionType ;
.
tr-fin:hasOrganizationPrimaryQuote
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-org:Organization ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has organization primary quote"@en ;
rdfs:range tr-fin:Quote ;
.
tr-fin:hasPrimaryInstrument
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-org:Organization ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has primary instrument"@en ;
rdfs:range tr-fin:Instrument ;
owl:inverseOf tr-fin:isPrimarySecurityOf ;
.
tr-fin:hasPrimaryQuote
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has primary quote"@en ;
rdfs:range tr-fin:Quote ;
.
tr-fin:hasQuoteStatus
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has quote status"@en ;
rdfs:range tr-fin:QuoteStatus ;
.
tr-fin:hasQuoteType
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has quote type"@en ;
rdfs:range tr-fin:QuoteType ;
.
tr-fin:hasRic
rdf:type owl:DatatypeProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has Reuters Instrument Code (RIC)"@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf tr-common:hasIdentifier ;
.
tr-fin:hasStrikePrice
rdf:type owl:DatatypeProperty ;
rdfs:comment "The agreed predetermined price of the underlying asset at which the option owner can exercise the option before expiry - the price at which the agreement was struck. Also known as the exercise price."@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has strike price"@en ;
rdfs:range xsd:string ;
.
tr-fin:hasStrikePriceMultiplier
rdf:type owl:DatatypeProperty ;
rdfs:comment "Scaling factor defined for the options strike price."@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has strike price multiplier"@en ;
rdfs:range xsd:string ;
.
tr-fin:hasUnderlyingInstrument
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has underlying instrument"@en ;
rdfs:range tr-fin:Instrument ;
.
tr-fin:hasUnderlyingQuote
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Has underlying quote"@en ;
rdfs:range tr-fin:Quote ;
.
tr-fin:instrumentStatusActive
rdf:type tr-fin:InstrumentStatus ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Active"@en ;
skos:notation "AC" ;
.
tr-fin:instrumentStatusInactive
rdf:type tr-fin:InstrumentStatus ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Inactive"@en ;
skos:notation "DC" ;
.
tr-fin:instrumentStatusSuspended
rdf:type tr-fin:InstrumentStatus ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Suspended"@en ;
.
tr-fin:isIssuedBy
rdf:type owl:ObjectProperty ;
rdfs:comment "Indicates the issuer of the fund."@en ;
rdfs:domain tr-fin:Instrument ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Is issued by"@en ;
rdfs:range tr-org:Organization ;
.
tr-fin:isQuoteOf
rdf:type owl:ObjectProperty ;
rdfs:comment ""@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Is quote of"@en ;
rdfs:range tr-fin:Instrument ;
.
tr-fin:isQuotedIn
rdf:type owl:ObjectProperty ;
rdfs:comment "Indicates the currency and instrument is traded in."@en ;
rdfs:domain tr-fin:Quote ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Is quoted in"@en ;
rdfs:range tr-currency:Currency ;
.
tr-fin:optionTypeCall
rdf:type tr-fin:OptionType ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Call"@en ;
skos:notation "CALL" ;
.
tr-fin:optionTypePut
rdf:type tr-fin:OptionType ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Put"@en ;
skos:notation "PUT" ;
.
tr-fin:quoteStatusActive
rdf:type tr-fin:QuoteStatus ;
rdfs:comment "Security has been issued and is actively traded"@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Active"@en ;
.
tr-fin:quoteStatusInactive
rdf:type tr-fin:QuoteStatus ;
rdfs:comment "Security is no longer traded because it has been delisted from a Stock Exchange or no longer quoted by a contributor"@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Inactive"@en ;
.
tr-fin:quoteStatusSuspended
rdf:type tr-fin:QuoteStatus ;
rdfs:comment "Indicates whether a quote is suspended from trading by the Exchange."@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Suspended"@en ;
.
tr-fin:quoteTypeEvaluated
rdf:type tr-fin:QuoteType ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Evaluated"@en ;
.
tr-fin:quoteTypeExecutable
rdf:type tr-fin:QuoteType ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Executable"@en ;
.
tr-fin:quoteTypeFixing
rdf:type tr-fin:QuoteType ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Fixing"@en ;
.
tr-fin:quoteTypeIndicative
rdf:type tr-fin:QuoteType ;
rdfs:comment ""@en ;
rdfs:isDefinedBy tr-fin: ;
rdfs:label "Indicative"@en ;
.