-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarrrml.yaml_old
51 lines (47 loc) · 1.33 KB
/
yarrrml.yaml_old
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
prefixes:
ns: "http://example.org/"
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
xsd: "http://www.w3.org/2001/XMLSchema#"
mappings:
companies:
sources:
- ['nasdaq_screener.csv~csv']
s: ns:$(Symbol)
po:
- [a, ns:Company]
- [ns:symbol, $(Symbol)]
- [ns:name, $(Name)]
- [ns:lastSale, $(Last Sale), xsd:float]
- [ns:netChange, $(Net Change), xsd:float]
- [ns:percentChange, $(% Change), xsd:float]
- [ns:marketCap, $(Market Cap), xsd:float]
- [ns:country, $(Country)]
- [ns:ipoYear, $(IPO Year), xsd:integer]
- [ns:volume, $(Volume), xsd:integer]
- [ns:sector, $(Sector)]
- [ns:industry, $(Industry)]
executives:
sources:
- ['Executives.csv~csv']
s: ns:$(Name)
po:
- [a, ns:Person]
- [ns:name, $(Name)]
- [ns:title, $(Title)]
- [ns:isExecutiveOf, ns:$(Ticker)]
institutional_holders:
sources:
- ['Top_Institutional_Holders.csv~csv']
s: ns:$(Holder)
po:
- [a, ns:InstitutionalInvestor]
- [ns:name, $(Holder)]
investment:
sources:
- ['Top_Institutional_Holders.csv~csv']
s: ns:Investment_$(Ticker)_$(Holder)
po:
- [a, ns:Investment]
- [ns:investor, ns:$(Holder)]
- [ns:shareholderOf, ns:$(Ticker)]
- [ns:sharePercentage, $(Share), xsd:float]