![]()  | Document Confidentiality Enum | 
IfcDocumentConfidentialityEnum enables selection of the level of confidentiality of document information from a list of choices.
HISTORY New enumeration in IFC2x.
| Constant | Description | 
|---|---|
| PUBLIC | Document is publicly available. | 
| RESTRICTED | Document availability is restricted. | 
| CONFIDENTIAL | Document is confidential and its contents should not be revealed without permission. | 
| PERSONAL | Document is personal to the author. | 
| USERDEFINED | |
| NOTDEFINED | 
 <xs:simpleType name="IfcDocumentConfidentialityEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="public"/>
   <xs:enumeration value="restricted"/>
   <xs:enumeration value="confidential"/>
   <xs:enumeration value="personal"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcDocumentConfidentialityEnum = ENUMERATION OF (
 PUBLIC, 
 RESTRICTED, 
 CONFIDENTIAL, 
 PERSONAL, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;