8.6.3.1 IfcClassification
8.6.3.1.1 Semantic definition
An IfcClassification is used for the arrangement of objects into a class or category according to a common purpose or their possession of common characteristics. A classification in the sense of IfcClassification is taxonomy, or taxonomic scheme, arranged in a hierarchical structure. A category of objects relates to other categories in a generalization-specialization relationship. Therefore the classification items in an classification are organized in a tree structure.
The IfcClassification identifies the classification system or source to which a classification reference refers to. Each classification reference may reference an instance of IfcClassification. A classification system declared may be either formally published, or it may be a locally defined method of classifiying information.
Examples for such formally published classifications are Omniclass, Uniclass, Masterformat, or DIN277.There are two methods to define and reference a classification system:
- Including the classification system structure within the dataset: Here a hierarchical tree of IfcClassificationReference's is included that defines the classification system including the relationship between the classification items. The ReferencedSource attribute of IfcClassificationReference links the classification item to the parent item, and the parent item finally to the IfcClassification.
- Referencing the classification system by a classification key or id: Here the IfcClassificationReference is used to assign a classification id or key as Identification attribute and it may link by ReferencedSource attribute directly to the IfcClassification.
8.6.3.1.2 Entity inheritance
8.6.3.1.3 Attributes
# | Attribute | Type | Description |
---|---|---|---|
IfcClassification (9) | |||
1 | Source | OPTIONAL IfcLabel |
Source (or publisher) for this classification. that the source of the classification means the person or organization that was the original author or the person or organization currently acting as the publisher. |
2 | Edition | OPTIONAL IfcLabel |
The edition or version of the classification system from which the classification notation is derived. the version labeling system is specific to the classification system. The attribute has been changed to be optional. |
3 | EditionDate | OPTIONAL IfcDate |
The date on which the edition of the classification used became valid. The indication of edition may be sufficient to identify the classification source uniquely but the edition date is provided as an optional attribute to enable more precise identification where required. The data type has been changed to IfcDate, the date string according to ISO8601. |
4 | Name | IfcLabel |
The name or label by which the classification used is normally known. Examples of names include CI/SfB, Masterformat, BSAB, Uniclass, STABU, DIN276, DIN277 etc. |
5 | Description | OPTIONAL IfcText |
Additional description provided for the classification. New attribute added at the end of the attribute list. |
6 | Specification | OPTIONAL IfcURIReference |
Resource identifier or locator, provided as URI, URN or URL, of the classification. New attribute added at the end of the attribute list. |
7 | ReferenceTokens | OPTIONAL LIST [1:?] OF IfcIdentifier |
The delimiter tokens that are used to mark the boundaries of individual facets (substrings) in a classification reference. This typically applies then the IfcClassification is used in conjunction with IfcClassificationReference's. If only one ReferenceToken is provided, it applies to all boundaries of individual facets, if more than one ReferenceToken are provided, the first token applies to the first boundary, the second token to the second boundary, and the n^th^ token to the n^th^ and any additional boundary. Tokens are typically recommended within the classification itself and each token will have a particular role. 1 To indicate that the facet delimiter used for DIN277-2 reference key "2.1" ("Office rooms") is ".", a single ReferenceToken ['.'] is provided. To indicate that the facet delimiter used for Omniclass Table 13 (space by function) reference key "13-15 11 34 11" ("Office") are "-" and " ", two ReferenceToken's ['-', ' '] are provided. 2 The use of ReferenceTokens can also be extended to include masks. The use need to be agreed in view definitions or implementer agreements that stipulates a "mask syntax" that should be used. New attribute added at the end of the attribute list. |
ClassificationForObjects | SET [0:?] OF IfcRelAssociatesClassification FOR RelatingClassification |
The classification with which objects are associated. New inverse attribute. |
|
HasReferences | SET [0:?] OF IfcClassificationReference FOR ReferencedSource |
The classification references to which the classification applies. It can either be the final classification notation, or an intermediate classification item. |
8.6.3.1.4 Formal representation
ENTITY IfcClassification
SUBTYPE OF (IfcExternalInformation);
Source : OPTIONAL IfcLabel;
Edition : OPTIONAL IfcLabel;
EditionDate : OPTIONAL IfcDate;
Name : IfcLabel;
Description : OPTIONAL IfcText;
Specification : OPTIONAL IfcURIReference;
ReferenceTokens : OPTIONAL LIST [1:?] OF IfcIdentifier;
INVERSE
ClassificationForObjects : SET [0:?] OF IfcRelAssociatesClassification FOR RelatingClassification;
HasReferences : SET [0:?] OF IfcClassificationReference FOR ReferencedSource;
END_ENTITY;