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

CP 94 Add isAllocated Property to FileFacet #327

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions ontology/observable/observable.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2849,6 +2849,12 @@ observable:FileFacet
rdfs:label "FileFacet"@en ;
rdfs:comment "A file facet is a grouping of characteristics unique to the storage of a file (computer resource for recording data discretely in a computer storage device) on a file system (process that manages how and where data on a storage device is stored, accessed and managed). [based on https://en.wikipedia.org/Computer_file and https://www.techopedia.com/definition/5510/file-system]"@en ;
sh:property
[
sh:datatype xsd:boolean ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path observable:isAllocated ;
] ,
[
sh:datatype xsd:boolean ;
sh:nodeKind sh:Literal ;
Expand Down Expand Up @@ -10228,6 +10234,13 @@ observable:isActive
rdfs:range xsd:boolean ;
.

observable:isAllocated
a owl:DatatypeProperty ;
rdfs:label "isAllocated"@en ;
rdfs:comment "Indicates whether the object is (soft) allocated in the filesystem."@en ;
rdfs:range xsd:boolean ;
.

observable:isDirectory
a owl:DatatypeProperty ;
rdfs:label "isDirectory"@en ;
Expand Down