-
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 #19 from LiUSemWeb/dev
Split out provenance part from info module.
- Loading branch information
Showing
2 changed files
with
83 additions
and
44 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
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,83 @@ | ||
@prefix : <http://w3id.org/dppo/ontology/dpp-prov/> . | ||
@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/>. | ||
@base <http://w3id.org/dppo/ontology/dpp-prov/> . | ||
|
||
<http://w3id.org/dppo/ontology/dpp-prov/> rdf:type owl:Ontology ; | ||
owl:versionIRI <http://w3id.org/dppo/ontology/dpp-prov/0.1/> ; | ||
owl:imports <http://w3id.org/dppo/ontology/dpp-info/0.1/> ; | ||
dcterms:contributor "Eva Blomqvist" , | ||
"Huanyu Li" , | ||
"Robin Keskisärkkä" ; | ||
dcterms:created "2023-11-27" ; | ||
dcterms:creator "Maike Jansen" ; | ||
dcterms:description "Provenance information for DPP information." ; | ||
dcterms:license "https://github.com/LiUSemWeb/DPP/blob/master/LICENSE" ; | ||
dcterms:title "Digital Product Passport Information Provenance" ; | ||
vann:preferredNamespacePrefix "dpp-prov" ; | ||
vann:preferredNamespaceUri "http://w3id.org/dppo/ontology/dpp-prov" ; | ||
rdfs:seeAlso <https://github.com/LiUSemWeb/DPPO> ; | ||
owl:versionInfo "0.1" . | ||
|
||
################################################################# | ||
# Object Properties | ||
################################################################# | ||
|
||
### http://w3id.org/dppo/ontology/dpp-prov/responsibleActor | ||
:responsibleActor rdf:type owl:ObjectProperty ; | ||
rdfs:domain dpp-info:DPPInformation ; | ||
rdfs:range :Actor . | ||
|
||
|
||
|
||
|
||
################################################################# | ||
# Data properties | ||
################################################################# | ||
|
||
### http://w3id.org/dppo/ontology/dpp-prov/creationTimeStamp | ||
:creationTimeStamp rdf:type owl:DatatypeProperty ; | ||
rdfs:subPropertyOf :timestamp . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-prov/invalidAtTimeStamp | ||
:invalidAtTimeStamp rdf:type owl:DatatypeProperty ; | ||
rdfs:subPropertyOf :timestamp . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-prov/timestamp | ||
:timestamp rdf:type owl:DatatypeProperty ; | ||
rdfs:domain dpp-info:DPPInformation . | ||
|
||
|
||
################################################################# | ||
# Classes | ||
################################################################# | ||
|
||
### http://w3id.org/dppo/ontology/dpp-info/Actor | ||
:Actor rdf:type owl:Class . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-info/Authority | ||
:Authority rdf:type owl:Class ; | ||
rdfs:subClassOf :Actor . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-info/Consumer | ||
:Consumer rdf:type owl:Class ; | ||
rdfs:subClassOf :Actor . | ||
|
||
|
||
### http://w3id.org/dppo/ontology/dpp-info/ValueChainActor | ||
:ValueChainActor rdf:type owl:Class ; | ||
rdfs:subClassOf :Actor . | ||
|
||
|
||
### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi |