forked from catalyst-fp7/ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalyst_idea_extra.ttl
78 lines (57 loc) · 2.08 KB
/
catalyst_idea_extra.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
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix pa_ibis: <http://privatealpha.com/ontology/ibis/1#> .
@prefix aif: <http://www.arg.dundee.ac.uk/aif#> .
@prefix idea: <http://purl.org/catalyst/idea#> .
# all that follows is out-of-scope for Catalyst 1.
# Comparison
idea:ComparisonStatement
a owl:Class;
rdfs:subClassOf idea:IdeaRelation .
idea:is_compared
rdfs:subPropertyOf idea:relates_idea;
rdfs:range idea:ComparisonStatement.
idea:compares
owl:inverseOf idea:is_compared.
idea:is_compared_to owl:propertyChainAxiom (idea:is_compared idea:compares).
idea:DistinctionStatement
a owl:Class;
rdfs:subClassOf idea:ComparisonStatement.
idea:EquivalenceStatement
a owl:Class;
rdfs:subClassOf idea:ComparisonStatement.
# Abstraction
idea:AbstractionStatement
a owl:Class;
rdfs:subClassOf idea:ComparisonStatement, idea:DirectedIdeaRelation.
idea:is_abstracted
rdfs:subPropertyOf idea:target_idea;
rdfs:range idea:AbstractionStatement.
idea:abstracts
owl:inverseOf idea:is_abstracted.
idea:is_specialized
rdfs:subPropertyOf idea:source_idea;
rdfs:range idea:AbstractionStatement.
idea:specializes
owl:inverseOf idea:is_specialized.
idea:is_abstraction_of owl:propertyChainAxiom (idea:is_abstracted idea:specializes).
idea:is_abstraction_of owl:equivalentProperty pa_ibis:generalizes.
# Causality
idea:CausalStatement
a owl:Class;
rdfs:subClassOf idea:DirectedIdeaRelation.
idea:CausalInference
a owl:Class;
rdfs:subClassOf idea:DirectedIdeaRelation.
# Context.
idea:ContextOfExpression
a owl:Class;
owl:disjoint idea:GenericIdeaNode.
# Not sure that contexts are not ideas.
# This requires much future development.
# will be used to express quotes, hypothetical statements and inference, etc.
# Note that most Positions are hypothetical.