Variable HeaderSchema_WorkerConst

HeaderSchema_Worker: ZodObject<{
    date: ZodOptional<ZodString>;
    fileName: ZodOptional<ZodString>;
    ifcProject: ZodOptional<ZodString>;
    ifcSpatialStructureElement: ZodOptional<ZodString>;
    isExternal: ZodOptional<ZodBoolean>;
    reference: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
    date?: string;
    fileName?: string;
    ifcProject?: string;
    ifcSpatialStructureElement?: string;
    isExternal?: boolean;
    reference?: string;
}, {
    date?: string;
    fileName?: string;
    ifcProject?: string;
    ifcSpatialStructureElement?: string;
    isExternal?: boolean;
    reference?: string;
}> = ...

Header node contains information about the IFC files relevant to this topic. The "files" should be used to match which models to be opened when displaying the topic viewpoints. As IFC-files don't have an unique id, this matching might not be fully automated. Therefore the software importing the BCF file should give the user a possibility to match these files, with the internal models.

Type declaration

  • date: ZodOptional<ZodString>

    Date of the BIM file. For IFC files this is the second entry of the FILE_NAME entry in the IFC file's header. When the timestamp given in the header does not provide timezone, it is interpreted as UTC.

  • fileName: ZodOptional<ZodString>

    The BIM file related to this topic. For IFC files this is the first item in the FILE_NAME entry in the IFC file's header.

  • ifcProject: ZodOptional<ZodString>

    IfcGuid Reference to the project to which this topic is related in the IFC file

  • ifcSpatialStructureElement: ZodOptional<ZodString>

    IfcGuid Reference to the spatial structure element, e.g. IfcBuildingStorey, to which this topic is related.

  • isExternal: ZodOptional<ZodBoolean>

    Is the IFC file external or within the bcfzip. (Default = true).

  • reference: ZodOptional<ZodString>

    URI to IfcFile.
    IsExternal=false “..\example.ifc“ (within bcfzip)
    IsExternal=true “https://.../example.ifc“

Type declaration

  • Optional date?: string

    Date of the BIM file. For IFC files this is the second entry of the FILE_NAME entry in the IFC file's header. When the timestamp given in the header does not provide timezone, it is interpreted as UTC.

  • Optional fileName?: string

    The BIM file related to this topic. For IFC files this is the first item in the FILE_NAME entry in the IFC file's header.

  • Optional ifcProject?: string

    IfcGuid Reference to the project to which this topic is related in the IFC file

  • Optional ifcSpatialStructureElement?: string

    IfcGuid Reference to the spatial structure element, e.g. IfcBuildingStorey, to which this topic is related.

  • Optional isExternal?: boolean

    Is the IFC file external or within the bcfzip. (Default = true).

  • Optional reference?: string

    URI to IfcFile.
    IsExternal=false “..\example.ifc“ (within bcfzip)
    IsExternal=true “https://.../example.ifc“

Type declaration

  • Optional date?: string

    Date of the BIM file. For IFC files this is the second entry of the FILE_NAME entry in the IFC file's header. When the timestamp given in the header does not provide timezone, it is interpreted as UTC.

  • Optional fileName?: string

    The BIM file related to this topic. For IFC files this is the first item in the FILE_NAME entry in the IFC file's header.

  • Optional ifcProject?: string

    IfcGuid Reference to the project to which this topic is related in the IFC file

  • Optional ifcSpatialStructureElement?: string

    IfcGuid Reference to the spatial structure element, e.g. IfcBuildingStorey, to which this topic is related.

  • Optional isExternal?: boolean

    Is the IFC file external or within the bcfzip. (Default = true).

  • Optional reference?: string

    URI to IfcFile.
    IsExternal=false “..\example.ifc“ (within bcfzip)
    IsExternal=true “https://.../example.ifc“

Generated using TypeDoc