@prefix : .
@prefix dc: .
@prefix owl: .
@prefix rdf: .
@prefix xml: .
@prefix xsd: .
@prefix rdfs: .
@prefix vann: .
@prefix dcterms: .
@base .
rdf:type owl:Ontology ;
owl:versionIRI ;
dcterms:contributor "Eva Blomqvist" ,
"Huanyu Li" ,
"Robin Keskisärkkä" ;
dcterms:created "2023-10-30" ;
dcterms:creator "Maike Jansen" ;
dcterms:description "This is a minimal core Ontology Design Pattern defining what a DPP is, i.e. information about a product." ;
dcterms:license "https://creativecommons.org/licenses/by/4.0/" ;
dcterms:title "Digital Product Passport Ontology Design Pattern" ;
vann:preferredNamespacePrefix "dpp-odp" ;
vann:preferredNamespaceUri "http://w3id.org/dppo/ontology/dpp-odp/" ;
rdfs:seeAlso ;
owl:versionInfo "0.1" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://w3id.org/dppo/ontology/dpp-odp/describes
:describes rdf:type owl:ObjectProperty ;
rdfs:domain :DPP ;
rdfs:range :Product ;
rdfs:comment "The relation between a DPP and the product it describes."@en ;
rdfs:label "describes"@en .
### http://w3id.org/dppo/ontology/dpp-odp/hasPart
:hasPart rdf:type owl:ObjectProperty ;
rdfs:label "A relation between a whole and its parts."@en ,
"has part"@en .
#################################################################
# Classes
#################################################################
### http://w3id.org/dppo/ontology/dpp-odp/DPP
:DPP rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:allValuesFrom :DPP
] ;
rdfs:comment "A Digital Product Passport, containing information about a product, and which main contain sub-DPPs as its parts."@en ;
rdfs:label "Digital Product Passport"@en .
### http://w3id.org/dppo/ontology/dpp-odp/Product
:Product rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:allValuesFrom :Product
] ;
rdfs:comment "A product, in a broad sense, defined as anything that is sold by a value chain actor, and which can have other products as parts."@en ;
rdfs:label "Product"@en .
### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi