Skip to content

Commit e5e924b

Browse files
committed
eng-1584 use bibo:status to designate our ontologies as draft
1 parent fc82a41 commit e5e924b

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

apps/website/public/schema/dg_base.ttl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
@prefix dc: <http://purl.org/dc/elements/1.1/> .
55
@prefix owl: <http://www.w3.org/2002/07/owl#> .
66
@prefix dgb: <https://discoursegraphs.com/schema/dg_base#> .
7+
@prefix bibo: <http://purl.org/ontology/bibo/> .
8+
@prefix status: <http://purl.org/ontology/bibo/status/> .
79

8-
<https://discoursegraphs.com/schema/dg_base#>
10+
<https://discoursegraphs.com/schema/dg_base>
911
dc:date "2025-12-22" ;
1012
rdfs:comment "DiscourseGraph foundation vocabulary"@en ;
1113
rdfs:label "DiscourseGraph foundation vocabulary"@en ;
12-
owl:versionInfo "0 (tentative)" ;
13-
a owl:Ontology.
14+
bibo:status status:draft;
15+
owl:versionInfo "0 (tentative)".
1416

1517
# This is inspired by https://hyperknowledge.org/schemas/hyperknowledge_frames.ttl
1618
# and topic mapping

apps/website/public/schema/dg_core.ttl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99
@prefix dgb: <https://discoursegraphs.com/schema/dg_base#> .
1010
@prefix dg: <https://discoursegraphs.com/schema/dg_core#> .
1111
@prefix schema: <http://schema.org/> .
12+
@prefix bibo: <http://purl.org/ontology/bibo/> .
13+
@prefix status: <http://purl.org/ontology/bibo/status/> .
14+
15+
<https://discoursegraphs.com/schema/dg_core> a owl:Ontology;
16+
dc:date "2025-12-22" ;
17+
dc:modified "2026-03-26" ;
18+
rdfs:comment "DiscourseGraph foundation vocabulary"@en ;
19+
rdfs:label "DiscourseGraph foundation vocabulary"@en ;
20+
bibo:status status:draft;
21+
owl:versionInfo "0.1 (tentative)".
1222

1323
dg:Question a dgb:NodeSchema;
1424
rdfs:label "Question"@en;

0 commit comments

Comments
 (0)