Skip to content

Commit

Permalink
[#29] Extend record manager ontology with generic record states.
Browse files Browse the repository at this point in the history
  • Loading branch information
kostobog committed Dec 7, 2023
1 parent bff6079 commit 4e7dddb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/main/resources/model.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ rm:relates-to rdf:type owl:ObjectProperty .
rm:was-treated-at rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rm:relates-to .

### http://onto.fel.cvut.cz/ontologies/record-manager/has-state
rm:has-state rdf:type owl:ObjectProperty ;
rdfs:label "has-state"@en .


#################################################################
# Data properties
Expand Down Expand Up @@ -163,5 +167,28 @@ rm:user rdf:type owl:Class ;
rm:impersonator rdf:type owl:Class ;
rdfs:label "Impersonator"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/record-state
rm:record-state rdf:type owl:Class ;
rdfs:label "record state"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/open-record-state
rm:open-record-state rdf:type owl:Class ;
rdfs:subClassOf rm:record-state ;
rdfs:label "open record state"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/valid-record-state
rm:valid-record-state rdf:type owl:Class ;
rdfs:subClassOf rm:record-state ;
rdfs:label "valid record state"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/completed-record-state
rm:completed-record-state rdf:type owl:Class ;
rdfs:subClassOf rm:record-state ;
rdfs:label "completed record state"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/published-record-state
rm:published-record-state rdf:type owl:Class ;
rdfs:subClassOf rm:record-state ;
rdfs:label "published record state"@en .

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

0 comments on commit 4e7dddb

Please sign in to comment.