Skip to content

Commit ed19156

Browse files
committed
thinking about range/domain.
1 parent e1652d9 commit ed19156

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

apps/roam/src/utils/getExportTypes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,7 @@ const getExportTypes = ({
613613
...getExportSettings(),
614614
includeDiscourseContext: false,
615615
};
616+
// TODO : Identify existing CURIES in the node definition
616617
/* eslint-disable @typescript-eslint/naming-convention */
617618
const nodeSchemaData = await Promise.all(
618619
allNodes.map(async (node: DiscourseNode) => {

apps/website/public/schema/dg_core.ttl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ dg:Opposes a dgb:BinaryRelationSchema;
2323
rdfs:range dg:Claim;
2424
rdfs:domain dg:Result.
2525

26+
# I might actually need to be more verbose than rdfs:range/domain... Still needs research.
27+
28+
# owl:subClassOf [
29+
# {
30+
# a owl:Restriction;
31+
# owl:onProperty dgb:source;
32+
# owl:allValuesFrom: dg:Claim
33+
# },
34+
# {
35+
# a owl:Restriction;
36+
# owl:onProperty dgb:destination;
37+
# owl:allValuesFrom: dg:Result
38+
# },
39+
# ],
40+
2641
dg:OpposedBy a dgb:BinaryRelationSchema;
2742
rdfs:label "OpposedBy"@en;
2843
owl:inverseOf dg:Opposes;

0 commit comments

Comments
 (0)