-
Notifications
You must be signed in to change notification settings - Fork 4
/
oplcorp.ttl
105 lines (91 loc) · 3.7 KB
/
oplcorp.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
#
# oplcorp ontology - enhanced properties for corporations < Organizations
#
#
#
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix schema: <http://schema.org/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix oplcorp: <http://www.openlinksw.com/ontology/oplcorp#> .
#Define this ontology
oplcorp:
a owl:Ontology ;
schema:name "OpenLink Corporation Ontology" .
# Classes
oplcorp:Corporation
a rdfs:Class ;
rdfs:label "Corporation class" ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Corporation class" ;
dc:title "Corporation class" ;
rdfs:subClassOf schema:Corporation ,
foaf:Organization .
oplcorp:ValueProposition
a rdfs:Class ;
rdfs:label "Corporate Value Proposition" ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Corporate Value Proposition" ;
dc:title "Corporate Value Proposition" .
oplcorp:ClaimSpecification
a rdfs:Class ;
rdfs:label "Claim Specification" ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Specifies the nature of claims, e.g., catering to primary claim's associated supplementary claims." ;
dc:title "Claim Specification" .
oplcorp:PrimaryClaim
a rdfs:Class ;
rdfs:label "Primary Value Proposition Claim" ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "A Primary Value Proposition Claim Claim" ;
dc:title "Primary Value Proposition Claim" .
oplcorp:AdditionalClaim
a rdfs:Class ;
rdfs:label "Additional Value Proposition Claim" ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "An Additional Value Proposition Claim Claim" ;
dc:title "Additional Value Proposition Claim" .
# Properties
oplcorp:hasValueProposition
a rdfs:Property ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Mapping from a Corporation to its Value Propositions" ;
dc:title "has value proposition" ;
rdfs:label "has value proposition" ;
rdfs:domain oplcorp:Corporation ;
rdfs:range oplcorp:ValueProposition .
oplcorp:hasClaimSpecification
a rdfs:Property ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Associates a Value Proposition with a Claim Specification." ;
rdfs:label "hasClaimSpecification" ;
dc:title "has claim specification" ;
rdfs:domain oplcorp:ValueProposition ;
rdfs:range oplcorp:ClaimSpecification .
oplcorp:hasPrimaryClaim
a rdfs:Property ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Primary claim with Claim Specification" ;
rdfs:label "hasPrimaryClaim" ;
dc:title "primary claim" ;
rdfs:domain oplcorp:ClaimSpecification ;
rdfs:range oplcorp:PrimaryClaim ;
rdfs:subPropertyOf schema:name .
oplcorp:hasAdditionalClaim
a rdfs:Property ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Supplemental claim" ;
rdfs:label "hasAdditionalClaim" ;
dc:title "has additional claim" ;
rdfs:domain oplcorp:ClaimSpecification ;
rdfs:range oplcorp:AdditionalClaim ;
rdfs:subPropertyOf schema:name .
oplcorp:vpdepiction a rdfs:Property ;
rdfs:isDefinedBy oplcorp: ;
rdfs:comment "Image to depict a value proposition" ;
dc:title "value proposition depiction" ;
rdfs:domain oplcorp:ClaimSpecification ;
rdfs:subPropertyOf dc:description ;
rdfs:range xsd:anyURI .