-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathObjState.rdf
55 lines (46 loc) · 2.95 KB
/
ObjState.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="owl2html.xsl"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<rdf:RDF xmlns="http://fedora.info/definitions/1/0/access/ObjState#"
xml:base="http://fedora.info/definitions/1/0/access/ObjState#"
xmlns:fedora="http://fedora.info/definitions/v4/repository#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<owl:Ontology rdf:about="http://fedora.info/definitions/1/0/access/ObjState">
<rdfs:label xml:lang="en">Fedora Commons Repository - Resource Status Ontology</rdfs:label>
<rdfs:comment xml:lang="en">Resource status ontology</rdfs:comment>
<owl:versionInfo>1/0/access/2016/06/02</owl:versionInfo>
</owl:Ontology>
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/1/0/access/ObjState#objState">
<rdfs:label xml:lang="en">status</rdfs:label>
<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/ObjState#ResourceStatus"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://fedora.info/definitions/1/0/access/ObjState#ResourceStatus">
<rdfs:label xml:lang="en">resource state</rdfs:label>
<rdfs:comment xml:lang="en">A value of the state property. Predefined values are active, inactive, and deleted, but additional values should be created as needed.</rdfs:comment>
</owl:Class>
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/ObjState#active">
<rdfs:label xml:lang="en">active</rdfs:label>
<rdfs:comment xml:lang="en">The resource is active.</rdfs:comment>
<rdf:type rdf:resource="http://fedora.info/definitions/1/0/access/ObjState#ResourceStatus"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/ObjState#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/ObjState#ResourceStatus"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/1/0/access/ObjState#deleted">
<rdfs:label xml:lang="en">deleted</rdfs:label>
<rdfs:comment xml:lang="en">The resource has been marked as deleted.</rdfs:comment>
<rdf:type rdf:resource="http://fedora.info/definitions/1/0/access/ObjState#ResourceStatus"/>
</owl:NamedIndividual>
</rdf:RDF>