Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add inactive state to Object Status Property list #37

Merged
merged 1 commit into from
May 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 9 additions & 3 deletions objState.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@

<owl:ObjectProperty rdf:about="http://fedora.info/definitions/1/0/access/objState">
<rdfs:label xml:lang="en">status</rdfs:label>
<rdfs:comment xml:lang="en">Describes the state of a resource, such as active or deleted.</rdfs:comment>
<rdfs:comment xml:lang="en">Describes the state of a resource, such as active, inactive, or deleted.</rdfs:comment>
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Resource"/>
<rdfs:range rdf:resource="http://fedora.info/definitions/1/0/access/ResourceStatus"/>
</owl:ObjectProperty>

<owl:Class rdf:about="http://fedora.info/definitions/1/0/access/ResourceStatus">
<rdfs:label xml:lang="en">resource state</rdfs:label>
<rdfs:comment xml:lang="en">Values of the state property. The out-of-the-box values are active and deleted -- but additional values can be created.</rdfs:comment>
<rdfs:comment xml:lang="en">Values of the state property. The out-of-the-box values are active, inactive, and deleted -- but additional values can be created.</rdfs:comment>
</owl:Class>

<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/active">
Expand All @@ -40,10 +40,16 @@
<rdf:type rdf:resource="http://fedora.info/definitions/1/0/access/ResourceStatus"/>
</owl:NamedIndividual>

<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/inactive">
<rdfs:label xml:lang="en">inactive</rdfs:label>
<rdfs:comment xml:lang="en">The resource is inactive.</rdfs:comment>
<rdf:type rdf:resource="http://fedora.info/definitions/1/0/access/ResourceStatus"/>
</owl:NamedIndividual>

<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/deleted">
<rdfs:label xml:lang="en">deleted</rdfs:label>
<rdfs:comment xml:lang="en">The resource has been marked for deletion.</rdfs:comment>
<rdf:type rdf:resource="http://fedora.info/definitions/1/0/access/ResourceStatus"/>
</owl:NamedIndividual>

</rdf:RDF>
</rdf:RDF>