@prefix : <http://sjka.site/ontology/seips#> .
@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#> .
@base <http://sjka.site/ontology/seips#> .

<http://sjka.site/ontology/seips#> rdf:type owl:Ontology ;
                                    owl:imports <http://www.w3.org/ns/prov-o#> ;
                                    <http://purl.org/dc/elements/1.1/contributor> "Junli Liang"@en ,
                                                                                  "Rob Brennan"@en ;
                                    <http://purl.org/dc/elements/1.1/creator> "Sajjad Karimian"@en ;
                                    <http://purl.org/dc/terms/bibliographicCitation> "Carayon P, Wooldridge A, Hoonakker P, Hundt AS, Kelly MM, Seidl KL, et al. SEIPS 3.0: Human-centered design of the patient journey for patient safety. Applied Ergonomics. 2020;84:103033."@en ,
                                                                                     "Karimian, S., Corrigan, S., Ward, M.E., Brennan, R. (2025). Enhancing Healthcare Data Transparency through a FAIR Ontology for the Systems Engineering Initiative for Patient Safety (SEIPS). Proceedings of the 33rd International Conference on Artificial Intelligence and Cognitive Science (AICS 2025)."@en ;
                                    <http://purl.org/dc/terms/created> "2026-01-06"^^xsd:date ;
                                    <http://purl.org/dc/terms/description> "Ontology for modelling the SEIPS work system constructs (Person, Task, Technology and Tools, Environment, Organisation) to support Atlas-based data transparency and provenance modelling. This ontology captures the SEIPS work system layer used in the thesis and is aligned with PROV-O and the Atlas ontology."@en ;
                                    <http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0/> ;
                                    <http://purl.org/dc/terms/rights> "Copyright © 2026 Sajjad Karimian. Licensed under CC BY 4.0."@en ;
                                    <http://purl.org/dc/terms/title> "SEIPS Work System Ontology"@en ;
                                    rdfs:label "SEIPS Work System Ontology"@en ;
                                    owl:versionInfo "1.2" .

#################################################################
#    Annotation properties
#################################################################

###  http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/rights
<http://purl.org/dc/terms/rights> rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .


#################################################################
#    Datatypes
#################################################################

###  http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .


#################################################################
#    Object Properties
#################################################################

###  http://sjka.site/ontology/seips#memberOf
:memberOf rdf:type owl:ObjectProperty ;
          rdfs:domain :Person ;
          rdfs:range :Organisation ;
          rdfs:comment "Relates a Person to the Organisation they belong to."@en ;
          rdfs:label "memberOf"@en .


###  http://sjka.site/ontology/seips#organisationSituatedInEnv
:organisationSituatedInEnv rdf:type owl:ObjectProperty ;
                           rdfs:domain :Organisation ;
                           rdfs:range :Environment ;
                           rdfs:comment "Relates an Organisation to the Environment in which it is situated."@en ;
                           rdfs:label "organisationSituatedInEnv"@en .


###  http://sjka.site/ontology/seips#performsTask
:performsTask rdf:type owl:ObjectProperty ;
              rdfs:domain :Person ;
              rdfs:range :Task ;
              rdfs:comment "Indicates that a Person performs a Task."@en ;
              rdfs:label "performsTask"@en .


###  http://sjka.site/ontology/seips#providesTechnologyAndTools
:providesTechnologyAndTools rdf:type owl:ObjectProperty ;
                            rdfs:domain :Organisation ;
                            rdfs:range :TechnologyAndTools ;
                            rdfs:comment "Indicates that an Organisation provides Technology and Tools used within the work system."@en ;
                            rdfs:label "providesTechnologyAndTools"@en .


###  http://sjka.site/ontology/seips#responsibleForTask
:responsibleForTask rdf:type owl:ObjectProperty ;
                    rdfs:domain :Organisation ;
                    rdfs:range :Task ;
                    rdfs:comment "Indicates that an Organisation is responsible for a Task (governance/accountability view)."@en ;
                    rdfs:label "responsibleForTask"@en .


###  http://sjka.site/ontology/seips#situatedInEnv
:situatedInEnv rdf:type owl:ObjectProperty ;
               rdfs:domain :Task ;
               rdfs:range :Environment ;
               rdfs:comment "Relates a Task to the Environment in which it is performed."@en ;
               rdfs:label "situatedInEnv"@en .


###  http://sjka.site/ontology/seips#usesTechnologyAndTools
:usesTechnologyAndTools rdf:type owl:ObjectProperty ;
                        rdfs:domain :Task ;
                        rdfs:range :TechnologyAndTools ;
                        rdfs:comment "Relates a Task to the Technology and Tools used to carry it out."@en ;
                        rdfs:label "usesTechnologyAndTools"@en .


###  http://sjka.site/ontology/seips#worksInEnvironment
:worksInEnvironment rdf:type owl:ObjectProperty ;
                    rdfs:domain :Person ;
                    rdfs:range :Environment ;
                    rdfs:comment "Indicates the Environment where a Person works."@en ;
                    rdfs:label "worksInEnvironment"@en .


#################################################################
#    Classes
#################################################################

###  http://sjka.site/ontology/seips#Environment
:Environment rdf:type owl:Class ;
             rdfs:comment "The physical and contextual surroundings in which tasks are performed."@en ;
             rdfs:label "Environment"@en .


###  http://sjka.site/ontology/seips#Organisation
:Organisation rdf:type owl:Class ;
              rdfs:subClassOf <http://www.w3.org/ns/prov#Agent> ;
              rdfs:comment "An organisational unit responsible for tasks and provision of resources in the work system (modelled as a PROV Agent)."@en ;
              rdfs:label "Organisation"@en .


###  http://sjka.site/ontology/seips#Person
:Person rdf:type owl:Class ;
        rdfs:subClassOf <http://www.w3.org/ns/prov#Agent> ;
        rdfs:comment "A human actor in the SEIPS work system."@en ;
        rdfs:label "Person"@en .


###  http://sjka.site/ontology/seips#Task
:Task rdf:type owl:Class ;
      rdfs:subClassOf <http://www.w3.org/ns/prov#Activity> ;
      rdfs:comment "A unit of work performed within the SEIPS work system."@en ;
      rdfs:label "Task"@en .


###  http://sjka.site/ontology/seips#TechnologyAndTools
:TechnologyAndTools rdf:type owl:Class ;
                    rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
                    rdfs:comment "Technological systems or tools used to perform tasks in the SEIPS work system."@en ;
                    rdfs:label "Technology and Tools"@en .


###  Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/
