|
1 |
| -@prefix : <http://w3id.org/dppo/ontology/dpp-core/>. |
| 1 | +@prefix : <http://w3id.org/dppo/ontology/dpp-core/> . |
2 | 2 | @prefix dc: <http://purl.org/dc/elements/1.1/> .
|
3 | 3 | @prefix owl: <http://www.w3.org/2002/07/owl#> .
|
4 | 4 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
7 | 7 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
8 | 8 | @prefix vann: <http://purl.org/vocab/vann/> .
|
9 | 9 | @prefix dcterms: <http://purl.org/dc/terms/> .
|
10 |
| -@base <http://w3id.org/dppo/ontology/dpp-core/>. |
| 10 | +@base <http://w3id.org/dppo/ontology/dpp-core/> . |
11 | 11 |
|
12 | 12 | <http://w3id.org/dppo/ontology/dpp-core/> rdf:type owl:Ontology ;
|
13 | 13 | owl:versionIRI <http://w3id.org/dppo/ontology/dpp-core/0.1/> ;
|
14 | 14 | owl:imports <http://w3id.org/dppo/ontology/dpp-odp/> ;
|
15 |
| - dcterms:contributor "Eva Blomqvist" , |
16 |
| - "Huanyu Li" , |
17 |
| - "Robin Keskisärkkä" ; |
18 |
| - dcterms:created "2023-10-30"^^xsd:string ; |
19 |
| - dcterms:creator "Maike Jansen" ; |
20 |
| - dcterms:description "This is a minimal core ontology for DPPs, specialising the DPP ODP." ; |
21 |
| - dcterms:license "https://github.com/LiUSemWeb/DPP/blob/master/LICENSE"^^xsd:string ; |
22 |
| - dcterms:title "Core Digital Product Passport Ontology"^^xsd:string ; |
23 |
| - vann:preferredNamespacePrefix "dpp-core"^^xsd:string ; |
24 |
| - vann:preferredNamespaceUri "http://w3id.org/dppo/ontology/dpp-core/"^^xsd:string ; |
25 |
| - rdfs:seeAlso <https://github.com/LiUSemWeb/DPPO> ; |
26 |
| - owl:versionInfo "0.1" . |
| 15 | + dcterms:contributor "Eva Blomqvist" , |
| 16 | + "Huanyu Li" , |
| 17 | + "Robin Keskisärkkä" ; |
| 18 | + dcterms:created "2023-10-30" ; |
| 19 | + dcterms:creator "Maike Jansen" ; |
| 20 | + dcterms:description "This is a minimal core ontology for DPPs, specialising the DPP ODP." ; |
| 21 | + dcterms:license "https://github.com/LiUSemWeb/DPP/blob/master/LICENSE" ; |
| 22 | + dcterms:title "Core Digital Product Passport Ontology" ; |
| 23 | + vann:preferredNamespacePrefix "dpp-core" ; |
| 24 | + vann:preferredNamespaceUri "http://w3id.org/dppo/ontology/dpp-core/" ; |
| 25 | + rdfs:seeAlso <https://github.com/LiUSemWeb/DPPO> ; |
| 26 | + owl:versionInfo "0.1" . |
| 27 | + |
| 28 | +################################################################# |
| 29 | +# Annotation properties |
| 30 | +################################################################# |
| 31 | + |
| 32 | +### http://purl.org/dc/terms/contributor |
| 33 | +dcterms:contributor rdf:type owl:AnnotationProperty . |
| 34 | + |
| 35 | + |
| 36 | +### http://purl.org/dc/terms/created |
| 37 | +dcterms:created rdf:type owl:AnnotationProperty . |
| 38 | + |
| 39 | + |
| 40 | +### http://purl.org/dc/terms/creator |
| 41 | +dcterms:creator rdf:type owl:AnnotationProperty . |
| 42 | + |
| 43 | + |
| 44 | +### http://purl.org/dc/terms/description |
| 45 | +dcterms:description rdf:type owl:AnnotationProperty . |
| 46 | + |
| 47 | + |
| 48 | +### http://purl.org/dc/terms/license |
| 49 | +dcterms:license rdf:type owl:AnnotationProperty . |
| 50 | + |
| 51 | + |
| 52 | +### http://purl.org/dc/terms/title |
| 53 | +dcterms:title rdf:type owl:AnnotationProperty . |
| 54 | + |
| 55 | + |
| 56 | +### http://purl.org/vocab/vann/preferredNamespacePrefix |
| 57 | +vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty . |
| 58 | + |
| 59 | + |
| 60 | +### http://purl.org/vocab/vann/preferredNamespaceUri |
| 61 | +vann:preferredNamespaceUri rdf:type owl:AnnotationProperty . |
| 62 | + |
| 63 | + |
| 64 | +################################################################# |
| 65 | +# Object Properties |
| 66 | +################################################################# |
| 67 | + |
| 68 | +### http://w3id.org/dppo/ontology/dpp-odp/describes |
| 69 | +<http://w3id.org/dppo/ontology/dpp-odp/describes> rdf:type owl:ObjectProperty . |
| 70 | + |
27 | 71 |
|
28 | 72 | #################################################################
|
29 | 73 | # Classes
|
30 | 74 | #################################################################
|
31 | 75 |
|
32 | 76 | ### http://w3id.org/dppo/ontology/dpp-core/Component
|
33 | 77 | :Component rdf:type owl:Class ;
|
34 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> . |
| 78 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> ; |
| 79 | + rdfs:comment "A product that is a component of some other product."@en ; |
| 80 | + rdfs:label "Component"@en . |
35 | 81 |
|
36 | 82 |
|
37 | 83 | ### http://w3id.org/dppo/ontology/dpp-core/ComponentDPP
|
38 | 84 | :ComponentDPP rdf:type owl:Class ;
|
39 |
| - owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP> |
| 85 | + owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP> |
40 | 86 | [ rdf:type owl:Restriction ;
|
41 |
| - owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
| 87 | + owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
42 | 88 | owl:someValuesFrom :Component
|
43 | 89 | ]
|
44 | 90 | ) ;
|
45 | 91 | rdf:type owl:Class
|
46 | 92 | ] ;
|
47 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP>. |
| 93 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP> ; |
| 94 | + rdfs:comment "A DPP that describes a component."@en ; |
| 95 | + rdfs:label "Component DPP"@en . |
48 | 96 |
|
49 | 97 |
|
50 | 98 | ### http://w3id.org/dppo/ontology/dpp-core/ConsumerProduct
|
51 | 99 | :ConsumerProduct rdf:type owl:Class ;
|
52 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> . |
| 100 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> ; |
| 101 | + rdfs:comment "A consumer product, i.e. a product that is sold directly to end users (consumers)."@en ; |
| 102 | + rdfs:label "Consumer product"@en . |
53 | 103 |
|
54 | 104 |
|
55 | 105 | ### http://w3id.org/dppo/ontology/dpp-core/ConsumerProductDPP
|
56 | 106 | :ConsumerProductDPP rdf:type owl:Class ;
|
57 | 107 | owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP>
|
58 | 108 | [ rdf:type owl:Restriction ;
|
59 |
| - owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
| 109 | + owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
60 | 110 | owl:someValuesFrom :ConsumerProduct
|
61 | 111 | ]
|
62 | 112 | ) ;
|
63 | 113 | rdf:type owl:Class
|
64 | 114 | ] ;
|
65 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP>. |
| 115 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP> ; |
| 116 | + rdfs:comment "A DPP describing a consumer product."@en ; |
| 117 | + rdfs:label "Comsumer Product DPP"@en . |
66 | 118 |
|
67 | 119 |
|
68 | 120 | ### http://w3id.org/dppo/ontology/dpp-core/Material
|
69 | 121 | :Material rdf:type owl:Class ;
|
70 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> . |
| 122 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> ; |
| 123 | + rdfs:comment "A material, that is sold as a product by the producer."@en ; |
| 124 | + rdfs:label "Material"@en . |
71 | 125 |
|
72 | 126 |
|
73 | 127 | ### http://w3id.org/dppo/ontology/dpp-core/MaterialDPP
|
74 | 128 | :MaterialDPP rdf:type owl:Class ;
|
75 | 129 | owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP>
|
76 | 130 | [ rdf:type owl:Restriction ;
|
77 |
| - owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
| 131 | + owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
78 | 132 | owl:someValuesFrom :Material
|
79 | 133 | ]
|
80 | 134 | ) ;
|
81 | 135 | rdf:type owl:Class
|
82 | 136 | ] ;
|
83 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP> . |
| 137 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP> ; |
| 138 | + rdfs:comment "A DPP describing a material."@en ; |
| 139 | + rdfs:label "Material DPP"@en . |
84 | 140 |
|
85 | 141 |
|
86 | 142 | ### http://w3id.org/dppo/ontology/dpp-core/Substance
|
87 | 143 | :Substance rdf:type owl:Class ;
|
88 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> . |
| 144 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/Product> ; |
| 145 | + rdfs:comment "A substance, that is sold as a product by the producer."@en ; |
| 146 | + rdfs:label "Substance"@en . |
89 | 147 |
|
90 | 148 |
|
91 | 149 | ### http://w3id.org/dppo/ontology/dpp-core/SubstanceDPP
|
92 | 150 | :SubstanceDPP rdf:type owl:Class ;
|
93 |
| - owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP> |
| 151 | + owl:equivalentClass [ owl:intersectionOf ( <http://w3id.org/dppo/ontology/dpp-odp/DPP> |
94 | 152 | [ rdf:type owl:Restriction ;
|
95 |
| - owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
| 153 | + owl:onProperty <http://w3id.org/dppo/ontology/dpp-odp/describes> ; |
96 | 154 | owl:someValuesFrom :Substance
|
97 | 155 | ]
|
98 | 156 | ) ;
|
99 | 157 | rdf:type owl:Class
|
100 | 158 | ] ;
|
101 |
| - rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP>. |
| 159 | + rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-odp/DPP> ; |
| 160 | + rdfs:comment "A DPP describing a substance."@en ; |
| 161 | + rdfs:label "Substance DPP"@en . |
| 162 | + |
| 163 | + |
| 164 | +### http://w3id.org/dppo/ontology/dpp-odp/DPP |
| 165 | +<http://w3id.org/dppo/ontology/dpp-odp/DPP> rdf:type owl:Class . |
| 166 | + |
| 167 | + |
| 168 | +### http://w3id.org/dppo/ontology/dpp-odp/Product |
| 169 | +<http://w3id.org/dppo/ontology/dpp-odp/Product> rdf:type owl:Class . |
102 | 170 |
|
103 | 171 |
|
104 | 172 | ### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi
|
0 commit comments