Skip to content

Commit 769fbed

Browse files
committed
Rename ClaimOrEvidence to Argument, and define as marker class for reusability.
1 parent 8874a94 commit 769fbed

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

apps/website/public/schema/context.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"Claim": "dgc:Claim",
4747
"Evidence": "dgc:Evidence",
4848
"SourceDocument": "dgc:SourceDocument",
49-
"ClaimOrEvidence": "dgc:ClaimOrEvidence",
49+
"Argument": "dgc:Argument",
5050
"observationStatement": {
5151
"@id": "dgc:observationStatement",
5252
"@type": "@id"

apps/website/public/schema/dg_core.ttl

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,20 @@
2121
bibo:status status:draft;
2222
owl:versionInfo "0.1 (tentative)".
2323

24+
dg:Argument a owl:Class;
25+
rdfs:comment "A marker class for nodes that can serve as arguments".
26+
2427
dg:Question a dgb:NodeSchema;
2528
rdfs:label "Question"@en;
2629
rdfs:comment "Scientific unknowns that we want to make known, and are addressable by the systematic application of research methods"@en.
2730

2831
dg:Claim a dgb:NodeSchema;
32+
rdfs:subClassOf dg:Argument;
2933
rdfs:label "Claim"@en;
3034
rdfs:comment "Atomic, generalized assertions about the world that (propose to) answer research questions"@en.
3135

3236
dg:Evidence a dgb:NodeSchema;
37+
rdfs:subClassOf dg:Argument;
3338
rdfs:label "Evidence"@en;
3439
rdfs:comment "A specific empirical observation from a particular application of a research method"@en;
3540
owl:subClassOf [rdf:type owl:Restriction ; owl:onProperty dg:observationStatement ; owl:cardinality 1],
@@ -80,30 +85,26 @@ dg:sourceDocument a dgb:RelationDef;
8085
rdfs:domain dg:Evidence;
8186
rdfs:range dg:SourceDocument.
8287

83-
dg:ClaimOrEvidence owl:equivalentClass [
84-
owl:unionOf (dg:Evidence dg:Claim)
85-
].
86-
8788
dg:opposes a dgb:RelationDef;
8889
rdfs:label "Opposes"@en;
8990
rdfs:range dg:Claim;
90-
rdfs:domain dg:ClaimOrEvidence.
91+
rdfs:domain dg:Argument.
9192

9293
dg:opposedBy a dgb:RelationDef;
9394
rdfs:label "Opposed by"@en;
9495
owl:inverseOf dg:opposes;
95-
rdfs:range dg:ClaimOrEvidence;
96+
rdfs:range dg:Argument;
9697
rdfs:domain dg:Claim.
9798

9899
dg:supports a dgb:RelationDef;
99100
rdfs:label "Supports"@en;
100101
rdfs:range dg:Claim;
101-
rdfs:domain dg:ClaimOrEvidence.
102+
rdfs:domain dg:Argument.
102103

103104
dg:supportedBy a dgb:RelationDef;
104105
rdfs:label "Supported by"@en;
105106
owl:inverseOf dg:supports;
106-
rdfs:range dg:ClaimOrEvidence;
107+
rdfs:range dg:Argument;
107108
rdfs:domain dg:Claim.
108109

109110
dg:addresses a dgb:RelationDef;

0 commit comments

Comments
 (0)