diff --git a/model/Software/Classes/File.md b/model/Software/Classes/File.md index 10d5810c0..6e63a2b85 100644 --- a/model/Software/Classes/File.md +++ b/model/Software/Classes/File.md @@ -11,6 +11,8 @@ Refers to any object that stores content on a computer. Refers to any object that stores content on a computer. The type of content can optionally be provided in the contentType property. +If the isDirectory property is specified and set to true, then the file represents a directory and all content stored in that directory. + ## Metadata - name: File @@ -22,9 +24,12 @@ The type of content can optionally be provided in the contentType property. - type: /Core/MediaType - minCount: 0 - maxCount: 1 +- isDirectory + - type: xsd:boolean + - minCount: 0 + - maxCount: 1 ## External properties restrictions - /Core/Element/name - minCount: 1 - diff --git a/model/Software/Properties/isDirectory.md b/model/Software/Properties/isDirectory.md new file mode 100644 index 000000000..7a4e2ca8e --- /dev/null +++ b/model/Software/Properties/isDirectory.md @@ -0,0 +1,18 @@ +SPDX-License-Identifier: Community-Spec-1.0 + +# isDirectory + +## Summary + +If true, denotes the Element is a directory. + +## Description + +If true, denotes the Element is a directory. + +## Metadata + +- name: isDirectory +- Nature: DataProperty +- Range: xsd:boolean +