-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from LiUSemWeb/dev
Modified imports and added composition info as its own module
- Loading branch information
Showing
2 changed files
with
93 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
@prefix : <http://w3id.org/dppo/ontology/dpp-comp/> . | ||
@prefix dc: <http://purl.org/dc/elements/1.1/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix vann: <http://purl.org/vocab/vann/> . | ||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix dpp-info: <http://w3id.org/dppo/ontology/dpp-info/0.1/>. | ||
@prefix dpp-core: <http://w3id.org/dppo/ontology/dpp-core/0.1/> . | ||
@base <http://w3id.org/dppo/ontology/dpp-comp/> . | ||
|
||
<http://w3id.org/dppo/ontology/dpp-comp/> rdf:type owl:Ontology ; | ||
owl:versionIRI <http://w3id.org/dppo/ontology/dpp-comp/0.1/> ; | ||
owl:imports <http://w3id.org/dppo/ontology/dpp-info/0.1/> ; | ||
owl:imports <http://w3id.org/dppo/ontology/dpp-core/0.1/> ; | ||
dcterms:contributor "Eva Blomqvist" , | ||
"Huanyu Li" , | ||
"Robin Keskisärkkä" ; | ||
dcterms:created "2023-11-27" ; | ||
dcterms:creator "Maike Jansen" ; | ||
dcterms:description "This is an ontology module focusing on the composition information of products." ; | ||
dcterms:license "https://github.com/LiUSemWeb/DPP/blob/master/LICENSE" ; | ||
dcterms:title "Digital Product Passport Product Composition" ; | ||
vann:preferredNamespacePrefix "dpp-comp" ; | ||
vann:preferredNamespaceUri "http://w3id.org/dppo/ontology/dpp-comp/" ; | ||
rdfs:seeAlso <https://github.com/LiUSemWeb/DPPO> ; | ||
owl:versionInfo "0.1" . | ||
|
||
################################################################# | ||
# Object Properties | ||
################################################################# | ||
|
||
### http://w3id.org/dppo/ontology/dpp-comp/aboutPart | ||
:aboutPart rdf:type owl:ObjectProperty ; | ||
rdfs:subPropertyOf dpp-info:isAbout ; | ||
rdfs:domain dpp-info:CompositionInformation ; | ||
rdfs:range <http://w3id.org/dppo/ontology/dpp-odp/Product> . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-comp/aboutWhole | ||
:aboutWhole rdf:type owl:ObjectProperty ; | ||
rdfs:subPropertyOf dpp-info:isAbout ; | ||
owl:inverseOf dpp-info:hasCompositionInformation ; | ||
rdfs:domain dpp-info:CompositionInformation ; | ||
rdfs:range <http://w3id.org/dppo/ontology/dpp-odp/Product> . | ||
|
||
|
||
|
||
|
||
################################################################# | ||
# Classes | ||
################################################################# | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-comp/SubstanceHinderingRecycling | ||
:SubstanceHinderingRecycling rdf:type owl:Class ; | ||
rdfs:subClassOf :SubstanceOfConcern . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-comp/SubstanceOfConcern | ||
:SubstanceOfConcern rdf:type owl:Class ; | ||
rdfs:subClassOf <http://w3id.org/dppo/ontology/dpp-core/Substance> . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-comp/ToxicSubstance | ||
:ToxicSubstance rdf:type owl:Class ; | ||
rdfs:subClassOf :SubstanceOfConcern . | ||
|
||
|
||
|
||
|
||
### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters