Skip to content

Commit 712fd9f

Browse files
updated ontology
1 parent 5a44b74 commit 712fd9f

17 files changed

Lines changed: 34213 additions & 17 deletions

src/ontology/catalog-v001.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<catalog prefer="public" xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public">
33
<group id="odk-managed-catalog" prefer="public">
4-
<uri name="https://w3id.org/pmd/distel/imports/pmdco_import.owl" uri="imports/pmdco_import.owl"/>
5-
<uri name="https://w3id.org/pmd/distel/components/imports-edit.owl" uri="components/imports-edit.owl"/>
6-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-axioms-shared.owl" uri="components/distel-mech-axioms-shared.owl"/>
7-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-tensile-test.owl" uri="components/distel-mech-tensile-test.owl"/>
8-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-fatigue.owl" uri="components/distel-mech-fatigue.owl"/>
9-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-hardness.owl" uri="components/distel-mech-hardness.owl"/>
10-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-device.owl" uri="components/distel-mech-device.owl"/>
11-
<uri name="https://w3id.org/pmd/distel/components/distel-mech-materials.owl" uri="components/distel-mech-materials.owl"/>
12-
<uri name="https://w3id.org/pmd/distel/components/noes-shared.owl" uri="components/noes-shared.owl"/>
4+
<uri name="https://w3id.org/pmd/distel/imports/pmdco_import.owl" uri="imports/pmdco_import.owl" />
5+
<uri name="https://w3id.org/pmd/distel/components/imports-edit.owl" uri="components/imports-edit.owl" />
6+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-axioms-shared.owl" uri="components/distel-mech-axioms-shared.owl" />
7+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-tensile-test.owl" uri="components/distel-mech-tensile-test.owl" />
8+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-fatigue.owl" uri="components/distel-mech-fatigue.owl" />
9+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-hardness.owl" uri="components/distel-mech-hardness.owl" />
10+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-device.owl" uri="components/distel-mech-device.owl" />
11+
<uri name="https://w3id.org/pmd/distel/components/distel-mech-materials.owl" uri="components/distel-mech-materials.owl" />
12+
<uri name="https://w3id.org/pmd/distel/components/noes-shared.owl" uri="components/noes-shared.owl" />
1313
</group>
1414
</catalog>

src/ontology/distel-base.owl

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0"?>
2+
<rdf:RDF xmlns="https://w3id.org/pmd/distel/distel-base.owl#"
3+
xml:base="https://w3id.org/pmd/distel/distel-base.owl"
4+
xmlns:dce="http://purl.org/dc/elements/1.1/"
5+
xmlns:owl="http://www.w3.org/2002/07/owl#"
6+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7+
xmlns:xml="http://www.w3.org/XML/1998/namespace"
8+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
9+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10+
xmlns:dcterms="http://purl.org/dc/terms/">
11+
<owl:Ontology rdf:about="https://w3id.org/pmd/distel/distel-base.owl">
12+
<owl:versionIRI rdf:resource="https://w3id.org/pmd/distel/releases/2026-01-20/distel-base.owl"/>
13+
<dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
14+
<dcterms:description>None</dcterms:description>
15+
<dcterms:license rdf:resource="https://creativecommons.org/licenses/unspecified"/>
16+
<dcterms:title>DiStEL Mechanical Testing Ontology</dcterms:title>
17+
<owl:versionInfo>2026-01-20</owl:versionInfo>
18+
</owl:Ontology>
19+
20+
21+
22+
<!--
23+
///////////////////////////////////////////////////////////////////////////////////////
24+
//
25+
// Annotation properties
26+
//
27+
///////////////////////////////////////////////////////////////////////////////////////
28+
-->
29+
30+
31+
32+
33+
<!-- http://purl.org/dc/elements/1.1/type -->
34+
35+
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
36+
37+
38+
39+
<!-- http://purl.org/dc/terms/description -->
40+
41+
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
42+
43+
44+
45+
<!-- http://purl.org/dc/terms/license -->
46+
47+
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
48+
49+
50+
51+
<!-- http://purl.org/dc/terms/title -->
52+
53+
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
54+
</rdf:RDF>
55+
56+
57+
58+
<!-- Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi -->
59+

src/ontology/distel-base.ttl

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@prefix : <https://w3id.org/pmd/distel/distel-base.ttl#> .
2+
@prefix dce: <http://purl.org/dc/elements/1.1/> .
3+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
4+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
5+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
6+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
7+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8+
@prefix dcterms: <http://purl.org/dc/terms/> .
9+
@base <https://w3id.org/pmd/distel/distel-base.ttl> .
10+
11+
<https://w3id.org/pmd/distel/distel-base.ttl> rdf:type owl:Ontology ;
12+
owl:versionIRI <https://w3id.org/pmd/distel/releases/2026-01-20/distel-base.ttl> ;
13+
dce:type <http://purl.obolibrary.org/obo/IAO_8000001> ;
14+
dcterms:description "None" ;
15+
dcterms:license <https://creativecommons.org/licenses/unspecified> ;
16+
dcterms:title "DiStEL Mechanical Testing Ontology" ;
17+
owl:versionInfo "2026-01-20" .
18+
19+
#################################################################
20+
# Annotation properties
21+
#################################################################
22+
23+
### http://purl.org/dc/elements/1.1/type
24+
dce:type rdf:type owl:AnnotationProperty .
25+
26+
27+
### http://purl.org/dc/terms/description
28+
dcterms:description rdf:type owl:AnnotationProperty .
29+
30+
31+
### http://purl.org/dc/terms/license
32+
dcterms:license rdf:type owl:AnnotationProperty .
33+
34+
35+
### http://purl.org/dc/terms/title
36+
dcterms:title rdf:type owl:AnnotationProperty .
37+
38+
39+
### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi

src/ontology/distel-edit.owl

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,41 @@ Prefix(dcterms:=<http://purl.org/dc/terms/>)
99

1010

1111
Ontology(<https://w3id.org/pmd/distel.owl>
12-
12+
Import(<https://w3id.org/pmd/distel/components/distel-mech-axioms-shared.owl>)
13+
Import(<https://w3id.org/pmd/distel/components/distel-mech-device.owl>)
14+
Import(<https://w3id.org/pmd/distel/components/distel-mech-fatigue.owl>)
15+
Import(<https://w3id.org/pmd/distel/components/distel-mech-hardness.owl>)
16+
Import(<https://w3id.org/pmd/distel/components/distel-mech-materials.owl>)
17+
Import(<https://w3id.org/pmd/distel/components/distel-mech-tensile-test.owl>)
18+
Import(<https://w3id.org/pmd/distel/components/imports-edit.owl>)
19+
Import(<https://w3id.org/pmd/distel/components/noes-shared.owl>)
1320
Import(<https://w3id.org/pmd/distel/imports/pmdco_import.owl>)
14-
15-
1621
Annotation(dcterms:description "None")
1722
Annotation(dcterms:license <https://creativecommons.org/licenses/unspecified>)
1823
Annotation(dcterms:title "DiStEL Mechanical Testing Ontology")
1924

20-
2125
Declaration(Class(<https://w3id.org/pmd/DISTEL_0000000>))
2226
Declaration(AnnotationProperty(dcterms:description))
2327
Declaration(AnnotationProperty(dcterms:license))
2428
Declaration(AnnotationProperty(dcterms:title))
25-
2629
############################
2730
# Annotation Properties
2831
############################
2932

33+
# Annotation Property: dcterms:description (description)
34+
3035
AnnotationAssertion(rdfs:label dcterms:description "description")
36+
37+
# Annotation Property: dcterms:license (dcterms:license)
38+
3139
AnnotationAssertion(rdfs:label dcterms:license "license")
40+
41+
# Annotation Property: dcterms:title (title)
42+
3243
AnnotationAssertion(rdfs:label dcterms:title "title")
3344

45+
46+
3447
############################
3548
# Classes
3649
############################
@@ -40,4 +53,4 @@ AnnotationAssertion(rdfs:label dcterms:title "title")
4053
AnnotationAssertion(rdfs:label <https://w3id.org/pmd/DISTEL_0000000> "root node"@en)
4154

4255

43-
)
56+
)

0 commit comments

Comments
 (0)