Skip to content

Commit 736956f

Browse files
committed
url issues
1 parent f7a099d commit 736956f

File tree

103 files changed

+65971
-3354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+65971
-3354
lines changed

cto-base.owl

Lines changed: 13 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
<?xml version="1.0"?>
2-
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/cto/cto-base.owl#"
3-
xml:base="http://purl.obolibrary.org/obo/cto/cto-base.owl"
4-
xmlns:dce="http://purl.org/dc/elements/1.1/"
2+
<rdf:RDF xmlns="https://nfdi4culture.de/ontology/cto/cto/cto-base.owl#"
3+
xml:base="https://nfdi4culture.de/ontology/cto/cto/cto-base.owl"
4+
xmlns:dc="http://purl.org/dc/elements/1.1/"
5+
xmlns:mo="http://purl.org/ontology/mo/"
6+
xmlns:n4c="https://nfdi4culture.de/id/"
57
xmlns:owl="http://www.w3.org/2002/07/owl#"
68
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
79
xmlns:xml="http://www.w3.org/XML/1998/namespace"
810
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
911
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10-
xmlns:dcterms="http://purl.org/dc/terms/">
11-
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/cto/cto-base.owl">
12-
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/cto/releases/2025-03-12/cto-base.owl"/>
13-
<dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
14-
<dcterms:description>The CTO ontology models cultural heritage research data and builds upon the NFDIcore ontology.
15-
</dcterms:description>
12+
xmlns:schema="http://schema.org/"
13+
xmlns:dcterms="http://purl.org/dc/terms/"
14+
xmlns:nfdicore="https://nfdi.fiz-karlsruhe.de/ontology/">
15+
<owl:Ontology rdf:about="https://nfdi4culture.de/ontology/cto/cto/cto-base.owl">
16+
<owl:versionIRI rdf:resource="https://nfdi4culture.de/ontology/cto/cto/releases/2025-03-14/cto-base.owl"/>
17+
<dc:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
18+
<dcterms:description>The CTO ontology models cultural heritage research data and builds upon the NFDIcore ontology.</dcterms:description>
1619
<dcterms:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
1720
<dcterms:title>NFDI4Culture Ontology (CTO)</dcterms:title>
18-
<owl:versionInfo>2025-03-12</owl:versionInfo>
21+
<owl:versionInfo>2025-03-14</owl:versionInfo>
1922
</owl:Ontology>
2023

2124

@@ -52,25 +55,6 @@
5255
<!-- http://purl.org/dc/terms/title -->
5356

5457
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
55-
56-
57-
58-
<!--
59-
///////////////////////////////////////////////////////////////////////////////////////
60-
//
61-
// Classes
62-
//
63-
///////////////////////////////////////////////////////////////////////////////////////
64-
-->
65-
66-
67-
68-
69-
<!-- http://purl.obolibrary.org/obo/CTO_0000000 -->
70-
71-
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CTO_0000000">
72-
<rdfs:label xml:lang="en">root node</rdfs:label>
73-
</owl:Class>
7458
</rdf:RDF>
7559

7660

cto-base.ttl

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
@prefix : <https://nfdi4culture.de/ontology/cto/cto/cto-base.ttl#> .
2+
@prefix dc: <http://purl.org/dc/elements/1.1/> .
3+
@prefix mo: <http://purl.org/ontology/mo/> .
4+
@prefix n4c: <https://nfdi4culture.de/id/> .
5+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
6+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
8+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
10+
@prefix schema: <http://schema.org/> .
11+
@prefix dcterms: <http://purl.org/dc/terms/> .
12+
@prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/> .
13+
@base <https://nfdi4culture.de/ontology/cto/cto/cto-base.ttl> .
14+
15+
<https://nfdi4culture.de/ontology/cto/cto/cto-base.ttl> rdf:type owl:Ontology ;
16+
owl:versionIRI <https://nfdi4culture.de/ontology/cto/cto/releases/2025-03-14/cto-base.ttl> ;
17+
dc:type <http://purl.obolibrary.org/obo/IAO_8000001> ;
18+
dcterms:description "The CTO ontology models cultural heritage research data and builds upon the NFDIcore ontology." ;
19+
dcterms:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
20+
dcterms:title "NFDI4Culture Ontology (CTO)" ;
21+
owl:versionInfo "2025-03-14" .
22+
23+
#################################################################
24+
# Annotation properties
25+
#################################################################
26+
27+
### http://purl.org/dc/elements/1.1/type
28+
dc:type rdf:type owl:AnnotationProperty .
29+
30+
31+
### http://purl.org/dc/terms/description
32+
dcterms:description rdf:type owl:AnnotationProperty .
33+
34+
35+
### http://purl.org/dc/terms/license
36+
dcterms:license rdf:type owl:AnnotationProperty .
37+
38+
39+
### http://purl.org/dc/terms/title
40+
dcterms:title rdf:type owl:AnnotationProperty .
41+
42+
43+
### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi

0 commit comments

Comments
 (0)