Skip to content

Commit f4a9078

Browse files
authored
ENG-1584 Add draft status to ontology files (#920)
1 parent a4c9a41 commit f4a9078

2 files changed

Lines changed: 18 additions & 5 deletions

File tree

apps/website/public/schema/dg_base.ttl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
22
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
33
@prefix : <http://www.w3.org/2000/01/rdf-schema#> .
4-
@prefix dc: <http://purl.org/dc/elements/1.1/> .
4+
@prefix dct: <http://purl.org/dc/terms/> .
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#>
9-
dc:date "2025-12-22" ;
10+
<https://discoursegraphs.com/schema/dg_base#> a owl:Ontology;
11+
dct:created "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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
33
@prefix : <http://www.w3.org/2000/01/rdf-schema#> .
44
@prefix dc: <http://purl.org/dc/elements/1.1/> .
5+
@prefix dct: <http://purl.org/dc/terms/> .
56
@prefix owl: <http://www.w3.org/2002/07/owl#> .
67
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
78
@prefix sioc: <http://rdfs.org/sioc/ns#> .
89
@prefix prov: <http://www.w3.org/ns/prov#> .
910
@prefix dgb: <https://discoursegraphs.com/schema/dg_base#> .
1011
@prefix dg: <https://discoursegraphs.com/schema/dg_core#> .
1112
@prefix schema: <http://schema.org/> .
13+
@prefix bibo: <http://purl.org/ontology/bibo/> .
14+
@prefix status: <http://purl.org/ontology/bibo/status/> .
15+
16+
<https://discoursegraphs.com/schema/dg_core#> a owl:Ontology;
17+
dct:created "2025-12-22" ;
18+
dct:modified "2026-03-26" ;
19+
rdfs:comment "DiscourseGraph core vocabulary"@en ;
20+
rdfs:label "DiscourseGraph core vocabulary"@en ;
21+
bibo:status status:draft;
22+
owl:versionInfo "0.1 (tentative)".
1223

1324
dg:Question a dgb:NodeSchema;
1425
rdfs:label "Question"@en;

0 commit comments

Comments
 (0)