Skip to content

Commit 126d3fc

Browse files
removed date declaration in update script
1 parent 78ea890 commit 126d3fc

8 files changed

Lines changed: 1899 additions & 1900 deletions

File tree

scripts/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def increment_version(ver):
5353

5454
# === Add updated version info ===
5555
g.add((ontology_iri, OWL.versionInfo, Literal(new_version)))
56-
g.add((ontology_iri, DCTERMS.modified, Literal(MODIFIED_DATE, datatype=XSD.date)))
56+
g.add((ontology_iri, DCTERMS.modified, Literal(MODIFIED_DATE)))
5757
g.add((ontology_iri, OWL.versionIRI, new_iri))
5858

5959
# === Write updated ontology ===

sulo.ttl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ sulo: a owl:Ontology ;
9494
dcterms:issued "2025-07-11" ;
9595
dcterms:language <http://lexvo.org/id/iso639-1/en> ;
9696
dcterms:license <https://creativecommons.org/publicdomain/zero/1.0> ;
97-
dcterms:modified "2026-05-19"^^xsd:date ;
97+
dcterms:modified "2026-05-19" ;
9898
dcterms:publisher <https://orcid.org/0000-0003-4727-9435> ;
9999
dcterms:title "Simplified Upper Level Ontology"@en ;
100100
pav:authoredBy <https://orcid.org/0000-0003-4727-9435> ;
@@ -103,8 +103,8 @@ sulo: a owl:Ontology ;
103103
rdfs:comment "The Simplified Upper Level Ontology (SULO) is ontology with a minimal set of classes and relations to guide the development of a personal health knowledge graph."@en ;
104104
owl:backwardCompatibleWith sulo:sulo-0.2.3.ttl ;
105105
owl:priorVersion sulo:sulo-0.2.3.ttl ;
106-
owl:versionIRI sulo:sulo-0.2.13.ttl ;
107-
owl:versionInfo "0.2.13" ;
106+
owl:versionIRI sulo:sulo-0.2.14.ttl ;
107+
owl:versionInfo "0.2.14" ;
108108
dcat:accessURL sulo:sulo.ttl ;
109109
foaf:homepage <https://github.com/AIDAVA-DEV/sulo> ;
110110
schema:funding "This work is partially supported by the AIDAVA project (GA 101057062), as part of the European Union's Horizon Europe research and innovation programme."@en ;
@@ -232,9 +232,6 @@ sulo:TimeInterval a owl:Class ;
232232
rdfs:label "time interval" ;
233233
rdfs:comment "A time interval is a quantity for a continuous and bounded extent of time, characterized by a start time and an end time."@en ;
234234
rdfs:subClassOf [ a owl:Restriction ;
235-
owl:onProperty sulo:hasDirectPart ;
236-
owl:someValuesFrom sulo:StartTime ],
237-
[ a owl:Restriction ;
238235
owl:onProperty sulo:hasPart ;
239236
owl:someValuesFrom sulo:Duration ],
240237
[ a owl:Restriction ;
@@ -243,6 +240,9 @@ sulo:TimeInterval a owl:Class ;
243240
[ a owl:Restriction ;
244241
owl:onProperty sulo:hasDirectPart ;
245242
owl:someValuesFrom sulo:EndTime ],
243+
[ a owl:Restriction ;
244+
owl:onProperty sulo:hasDirectPart ;
245+
owl:someValuesFrom sulo:StartTime ],
246246
sulo:Time .
247247

248248
sulo:hasDirectPart a owl:ObjectProperty ;

0 commit comments

Comments
 (0)