-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathontology.ttl
134 lines (118 loc) · 5.48 KB
/
ontology.ttl
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
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfa: <http://www.w3.org/ns/rdfa#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:Organization a rdfs:Class ;
rdfs:subClassOf owl:Thing .
schema:Corporation a rdfs:Class ;
rdfs:label "Corporation" ;
dct:source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews> ;
schema:sameAs <https://schema.org/Corporation> ;
rdfs:comment "Organization: A business corporation." ;
rdfs:subClassOf schema:Organization .
schema:address a rdf:Property ;
rdfs:label "address" ;
schema:domainIncludes schema:GeoCoordinates,
schema:GeoShape,
schema:Organization,
schema:Person,
schema:Place ;
schema:rangeIncludes schema:PostalAddress,
schema:Text ;
schema:sameAs <https://schema.org/address> ;
rdfs:comment "Physical address of the item." .
schema:alternateName a rdf:Property ;
rdfs:label "alternateName" ;
schema:domainIncludes schema:Thing ;
schema:rangeIncludes schema:Text ;
schema:sameAs <https://schema.org/alternateName> ;
rdfs:comment "An alias for the item." .
schema:brand a rdf:Property ;
rdfs:label "brand" ;
schema:domainIncludes schema:Organization,
schema:Person,
schema:Product,
schema:Service ;
schema:rangeIncludes schema:Brand,
schema:Organization ;
schema:sameAs <https://schema.org/brand> ;
rdfs:comment "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person." .
schema:funder a rdf:Property ;
rdfs:label "funder" ;
schema:domainIncludes schema:CreativeWork,
schema:Event,
schema:MonetaryGrant,
schema:Organization,
schema:Person ;
schema:rangeIncludes schema:Organization,
schema:Person ;
schema:sameAs <https://schema.org/funder> ;
rdfs:comment "A person or organization that supports (sponsors) something through some kind of financial contribution." ;
rdfs:subPropertyOf schema:sponsor .
schema:name a rdf:Property ;
rdfs:label "name" ;
schema:domainIncludes schema:Thing ;
schema:rangeIncludes schema:Text ;
schema:sameAs <https://schema.org/name> ;
rdfs:comment "The name of the item." ;
rdfs:subPropertyOf <rdfs:label> ;
owl:equivalentProperty dct:title .
schema:numberOfEmployees a rdf:Property ;
rdfs:label "numberOfEmployees" ;
schema:domainIncludes schema:BusinessAudience,
schema:Organization ;
schema:rangeIncludes schema:QuantitativeValue ;
schema:sameAs <https://schema.org/numberOfEmployees> ;
rdfs:comment "The number of employees in an organization e.g. business." .
schema:tickerSymbol a rdf:Property ;
rdfs:label "tickerSymbol" ;
schema:domainIncludes schema:Corporation ;
schema:rangeIncludes schema:Text ;
schema:sameAs <https://schema.org/tickerSymbol> ;
rdfs:comment "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022." .
schema:url a rdf:Property ;
rdfs:label "url" ;
schema:domainIncludes schema:Thing ;
schema:rangeIncludes schema:URL ;
schema:sameAs <https://schema.org/url> ;
rdfs:comment "URL of the item." .
schema:description a rdf:Property ;
rdfs:label "description" ;
schema:domainIncludes schema:Thing ;
schema:rangeIncludes schema:Text ;
schema:sameAs <https://schema.org/description> ;
rdfs:comment "A description of the item." ;
owl:equivalentProperty dct:description .
schema:founder a rdf:Property ;
rdfs:label "founder" ;
schema:domainIncludes schema:Organization ;
schema:rangeIncludes schema:Person ;
schema:sameAs <https://schema.org/founder> ;
rdfs:comment "A person who founded this organization." .
schema:memberOf a rdf:Property ;
rdfs:label "memberOf" ;
schema:domainIncludes schema:Organization,
schema:Person ;
schema:inverseOf schema:member ;
schema:rangeIncludes schema:Organization,
schema:ProgramMembership ;
schema:sameAs <https://schema.org/memberOf> ;
rdfs:comment "An Organization (or ProgramMembership) to which this Person or Organization belongs." .
schema:parentOrganization a rdf:Property ;
rdfs:label "parentOrganization" ;
schema:domainIncludes schema:Organization ;
schema:inverseOf schema:subOrganization ;
schema:rangeIncludes schema:Organization ;
schema:sameAs <https://schema.org/parentOrganization> ;
rdfs:comment "The larger organization that this organization is a <a class=\"localLink\" href=\"http://schema.org/subOrganization\">subOrganization</a> of, if any." .
schema:subOrganization a rdf:Property ;
rdfs:label "subOrganization" ;
schema:domainIncludes schema:Organization ;
schema:inverseOf schema:parentOrganization ;
schema:rangeIncludes schema:Organization ;
schema:sameAs <https://schema.org/subOrganization> ;
rdfs:comment "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property." .