summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-03-23 06:23:21 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-03-23 06:23:21 +0000
commit216bc438df979ef766e302da6827ffab6a29cdf9 (patch)
tree5f52960d088ed27e29f6f37db223f6d867dc2f44
parent6a546551e3b572bbe05a79fff1aa3e9d7544e22a (diff)
Added several filesystem properties according to #8
-rw-r--r--nfo/nfo.trig36
1 files changed, 36 insertions, 0 deletions
diff --git a/nfo/nfo.trig b/nfo/nfo.trig
index a71d8bc..a7fb8ff 100644
--- a/nfo/nfo.trig
+++ b/nfo/nfo.trig
@@ -173,6 +173,42 @@ nfo: {nfo:horizontalResolution
rdfs:label "Filesystem" ;
rdfs:subClassOf nfo:DataContainer .
+ nfo:filesystemType
+ a rdf:Property ;
+ rdfs:comment "Type of filesystem such as ext3 and ntfs." ;
+ rdfs:domain nfo:Filesystem ;
+ rdfs:range xsd:string ;
+ rdfs:label "filesystemType" .
+
+ nfo:totalSpace
+ a rdf:Property ;
+ rdfs:comment "Total storage space of the filesystem, which can be different from nie:contentSize because the latter includes filesystem format overhead." ;
+ rdfs:domain nfo:Filesystem ;
+ rdfs:range xsd:integer ;
+ rdfs:label "totalSpace" .
+
+ nfo:freeSpace
+ a rdf:Property ;
+ rdfs:comment "Unoccupied storage space of the filesystem." ;
+ rdfs:domain nfo:Filesystem ;
+ rdfs:range xsd:integer ;
+ rdfs:label "freeSpace" .
+
+ nfo:occupiedSpace
+ a rdf:Property ;
+ rdfs:comment "Occupied storage space of the filesystem." ;
+ rdfs:domain nfo:Filesystem ;
+ rdfs:range xsd:integer ;
+ rdfs:label "occupiedSpace" .
+
+ nfo:uuid
+ a rdf:Property ;
+ rdfs:subPropertyOf nie:identifier ;
+ rdfs:comment "Universally unique identifier of the filesystem. In the future, this property may have its parent changed to a more generic class." ;
+ rdfs:domain nfo:Filesystem ;
+ rdfs:range xsd:string ;
+ rdfs:label "uuid" .
+
nfo:definesFunction
a rdf:Property ;
rdfs:comment "A name of a function/method defined in the given source code file." ;