Unified Namespace in the Construction Industry

Content

Batch numbers on packaging and delivery notes have long been mandatory in the construction industry — the EU Construction Products Regulation (CPR) requires this anyway for every Declaration of Performance. A Unified Namespace (UNS) in the construction industry doesn’t replace this practice. Instead, it brings the data together in a structured, real-time way, across a company’s own plants and legally independent partner plants. That replaces manually reconciling delivery notes and spreadsheets from different sites. Partner plants keep their own IT/OT landscape entirely to themselves. The UNS doesn’t access it directly. It only brings together a contractually agreed subset of data.

Two construction workers in safety vests and hard hats look out over a construction site with a crane and an unfinished building silhouetted against the sunset — a modern scene from the construction industry, where concepts like the Unified Namespace (UNS) drive innovation.

This article shows what sets a Unified Namespace in a federated construction industry manufacturing network apart from a generic manufacturing architecture. It covers industry-specific use cases for AI and digital twins, plus concrete best practices. For the technical fundamentals of a UNS itself, see What Is the Unified Namespace (UNS)?

 

Unified Namespace Requirements in the Construction Industry

Building material manufacturers with their own plants and global manufacturing partners face requirements that go beyond a single organization. The following drivers determine how data needs to be modeled, stored, and evaluated.

Conceptual and Regulatory Drivers: CPR, ETA/ETAG 004, and Federated Manufacturing Networks

The EU Construction Products Regulation (CPR) requires a Declaration of Performance (DoP) for every construction product. Under Article 11(6), it must reference the type, batch, or serial number. For External Thermal Insulation Composite Systems (ETICS), the European Technical Assessment (ETA) under ETAG 004 adds another layer. Base coat, reinforcement mesh, insulation board, and top coat may only be combined as a fully tested system. Mixing components of different origin on a job site can invalidate the system approval, even if each component was manufactured correctly on its own.

On top of that comes a structural peculiarity. A brand manufacturer often produces not only in its own plants, but also through legally independent partner plants worldwide, all making the same formulation. These partner plants run their own IT/OT landscape entirely on their own. A UNS therefore has to model a federated data boundary, not central control.

 

What Makes a Federated Manufacturing Network Technically Different

Unlike a single manufacturing organization, a construction project often draws material from several plants over months of build time. Shade and formulation deviations between batches are a visible risk here. Two batches of the same product can have measurably different color values, even when both fall within specification. On a continuous facade surface, that becomes visible. A Unified Namespace in the construction industry therefore has to do more than track batches. It has to assign them to a specific construction project, across plant and organizational boundaries.

 

Construction-Industry-Specific Topic Structure

In a Unified Namespace in the construction industry, the physical hierarchy stays stable: plant, production line, equipment, measurement. It doesn’t change with whichever batch is currently running. This follows the same ISA-95 principles as in MQTT Topic Namespace Best Practices. What’s industry-specific here, in addition, is the federation boundary. Every batch carries a field for which data subset is contractually shared with the brand manufacturer. That includes batch, shade, and certification status. Internal process parameters of the partner plant do not.

Typical topic hierarchy, independent of the batch:

  • hohenberg/production/line1/mixer/temperature/actual
  • hohenberg/production/line1/mixer/temperature/status

Batch, certification, and project events, on the other hand, get their own one-off topics:

  • hohenberg/production/line1/batch/CHG-2026-0718-B14/batch-record
  • project/PROJ-NORDPARK-2026/system-compliance/ETA-CHECK-20260718

This data model has three industry-specific properties:

  1. Continuous process values stay independent of the batch. A mixer temperature sensor publishes continuously on a fixed topic, with no batch ID in the path.
  2. Batch and certification events get their own topics, because each one is an individually auditable record under CPR. That applies whether the batch originated at the company’s own plant or at a partner’s.
  3. System compliance under ETA is tracked at the project level, not the plant level. It concerns which components actually got delivered together to a construction project, not just what a single plant produced.

The following use cases trace this structure through one continuous example network: the Hohenberg plant (own) and partner plant P-07 (external), the FacadeSystem X200 product family, and construction project “Nordpark.”

 

UNS Use Cases in the Construction Industry

The following use cases show how this data model pays off in practice, from classic batch traceability to AI-driven insights and digital twins.

Batch and Shade Traceability Across Plants for a Construction Project

A construction project often draws material from several plants. The Unified Namespace links every delivered batch, whether from the company’s own plant or a partner plant, directly to the construction project and its measured color value. Instead of manually reconciling delivery notes from multiple sites, it’s immediately clear whether every batch for one continuous facade surface falls within shade tolerance.

Topic: project/PROJ-NORDPARK-2026/batch-assignment/CHG-2026-0718-B14

JSON Payload:

{
	"projectId": "PROJ-NORDPARK-2026",
	"batchId": "CHG-2026-0718-B14",
	"productLine": "facade-system-x200-topcoat",
	"productionSite": "plant-hohenberg",
	"colorReferenceStandard": "RAL-7016-REF",
	"measuredDeltaE": 0.6,
	"toleranceMaxDeltaE": 1.0,
	"withinTolerance": true,
	"deliveryDate": "2026-07-20",
	"timestamp": "2026-07-18T14:00:00Z"
}

 

Declaration of Performance (DoP) Under the EU Construction Products Regulation

Every batch is linked directly, through its batch ID, to its associated Declaration of Performance, including thermal conductivity, reaction to fire, mechanical properties, and test standard. An audit that requires tracing a batch back to its tested Declaration of Performance under CPR Article 11(6) becomes a query instead of a manual research project.

Topic: hohenberg/quality/dop/CHG-2026-0718-B14/declaration-of-performance

JSON Payload:

{
	"batchId": "CHG-2026-0718-B14",
	"productLine": "facade-system-x200-topcoat",
	"dopNumber": "DOP-X200-2026-0331",
	"ceMarking": true,
	"declaredPerformance": {
		"thermalConductivityWPerMk": 0.041,
		"reactionToFireClass": "B-s1,d0",
		"tensileAdhesionStrengthMpa": 0.3
	},
	"testStandard": "EN_13500",
	"cprArticleReference": "11(6)",
	"status": "released",
	"timestamp": "2026-07-18T09:00:00Z"
}

 

ETA System Component Compliance at the Project Level

For a construction project, base coat, reinforcement mesh, insulation board, and top coat have to form an approved ETA system together, regardless of which plant each individual component came from. The Unified Namespace brings together every component actually delivered to a construction project and checks it against the approved system combination. Formal ETA assessment itself remains the job of the technical assessment body, and the UNS only checks whether the delivered combination matches the approved one.

Topic: project/PROJ-NORDPARK-2026/system-compliance/ETA-CHECK-20260718

JSON Payload:

{
	"projectId": "PROJ-NORDPARK-2026",
	"etaNumber": "ETA-X200-04/0123",
	"componentsDelivered": [
		{
			"componentType": "insulation_board",
			"batchId": "CHG-2026-0715-A02",
			"productionSite": "plant-hohenberg",
			"approvedForEtaSystem": true
		},
		{
			"componentType": "topcoat",
			"batchId": "CHG-2026-0718-B14",
			"productionSite": "plant-hohenberg",
			"approvedForEtaSystem": true
		},
		{
			"componentType": "reinforcement_mesh",
			"batchId": "CHG-2026-0716-P07-C09",
			"productionSite": "partner-plant-p07",
			"approvedForEtaSystem": true
		}
	],
	"systemComplete": true,
	"complianceStatus": "compliant",
	"flaggedComponents": [],
	"timestamp": "2026-07-18T15:30:00Z"
}

 

AI Use Cases in the Construction Industry

AI use cases for a Unified Namespace in the construction industry need context. Their value only emerges from linking raw material, process, and quality data across plants. Generic anomaly detection alone isn’t enough.

Shade Deviation Prediction Across Plants

Colorimetric measurement of a batch has long been standard at every plant. A model additionally links pigment lot variance and mixing time deviation, to assess a batch’s deviation risk before the measurement is even complete. That’s especially relevant when a construction project draws batches from several plants at once. The model never replaces the colorimetric measurement itself.

Topic: hohenberg/ai/shade-prediction/CHG-2026-0718-B14

JSON Payload:

{
	"batchId": "CHG-2026-0718-B14",
	"model": "shade-deviation-v1.4",
	"predictedDeltaE": 0.7,
	"contributingFactors": [
		{
			"source": "raw_material",
			"factor": "pigment_lot_variance_percent",
			"value": 2.1
		},
		{
			"source": "process",
			"factor": "mixing_time_deviation_s",
			"value": 12
		}
	],
	"replacesColorimeterMeasurement": false,
	"recommendation": "release_pending_measurement",
	"timestamp": "2026-07-18T13:00:00Z"
}

 

Functional Quality Risk from Regional Raw Material Variance

Partner plants often use locally available raw materials, such as regional sand or binder lots. A model uses this variance to estimate the risk that a functional metric, like thermal conductivity or tensile adhesion strength, deviates from the declared performance. The official DoP testing stays untouched by this. The model only helps prioritize samples earlier.

Topic: partner-plant-p07/ai/functional-risk/CHG-2026-0718-C22

JSON Payload:

{
	"batchId": "CHG-2026-0718-C22",
	"productionSite": "partner-plant-p07",
	"model": "functional-risk-v1.0",
	"predictedThermalConductivityDeviationPercent": 3.2,
	"contributingFactors": [
		{
			"source": "local_raw_material",
			"factor": "aggregate_lot_variance_percent",
			"value": 4.5
		}
	],
	"riskLevel": "moderate",
	"replacesDopTesting": false,
	"recommendation": "increase_sampling_frequency",
	"timestamp": "2026-07-18T10:00:00Z"
}

 

Digital Twin in the Construction Industry

The digital twin in the Unified Namespace becomes especially valuable once it integrates cross-plant batch and system data alongside equipment parameters.

ETICS Component Prescreening Twin

The digital twin simulates the expected performance of a new component combination before it’s submitted for formal ETA testing. That helps narrow down promising combinations in advance. The twin never replaces the physical ETA assessment by the technical assessment body. It only speeds up deciding which combination should go through that costly testing in the first place.

Topic: hohenberg/twin/eta-prescreening/simulation

JSON Payload:

{
	"simulationId": "SIM-ETA-2026071801",
	"scenario": "alternative_reinforcement_mesh_test",
	"inputComponents": [
		"insulation-board-v3",
		"topcoat-x200",
		"reinforcement-mesh-alternative-04"
	],
	"predictedTensileAdhesionMpa": 0.31,
	"minRequiredMpa": 0.25,
	"result": "promising",
	"replacesEtaAssessment": false,
	"recommendation": "submit_for_formal_eta_testing",
	"timestamp": "2026-07-17T22:00:00Z"
}

 

Construction Project Batch Twin

The twin simulates which available batches from multiple plants best stay within shade tolerance for a construction project, before delivery gets scheduled. That way, batch selection can be validated without having to sort already-delivered material on site afterward.

Topic: project/PROJ-NORDPARK-2026/twin/batch-assignment/simulation

JSON Payload:

{
	"simulationId": "SIM-PROJ-2026071802",
	"projectId": "PROJ-NORDPARK-2026",
	"candidateBatches": [
		"CHG-2026-0718-B14",
		"CHG-2026-0716-P07-C09"
	],
	"predictedMaxDeltaE": 0.8,
	"toleranceMaxDeltaE": 1.0,
	"result": "sufficient",
	"recommendedForDelivery": true,
	"timestamp": "2026-07-17T20:00:00Z"
}

 

Best Practices for UNS Adoption in the Construction Industry

Do

  • Model batch, shade, and construction project ID as a continuous chain: only that keeps a facade surface traceable for shade consistency across multiple deliveries and plants.
  • Carry the federation boundary explicitly as a data field: every batch carries which data subset is contractually shared with the partner plant, not implicitly through system access.
  • Carry ETA system membership per component: only that makes it visible at the project level whether a delivered combination matches the approved system.
  • Carry calibration status: the calibration status of color measurement devices and test sensors belongs in the UNS, so audits can trace measurement accuracy end to end.

Avoid

  • Setting up direct write access to partner plant OT systems: undermines the partner’s legal and organizational independence.
  • Combining system components without an ETA membership check: can invalidate the system approval, even if each component individually meets specification.
  • Leaving shade and batch data only in the partner’s ERP: makes cross-project shade consistency checks across multiple plants harder.

 

Conclusion

A Unified Namespace in the construction industry is more than a generic manufacturing architecture with a construction label slapped on. Batch, shade, Declaration of Performance, and ETA system compliance are separate data objects that shape the topic structure from the ground up, across plant and organizational boundaries. Three key takeaways:

  1. Federated traceability comes before general architecture: batch, shade, and system component are separate fields, linked through an explicit federation boundary, not through a different broker choice.
  2. AI and digital twins need context. Their value only emerges from linking raw material, process, and project data across plants. They never replace the Declaration of Performance or the physical ETA assessment.
  3. The construction project is the real aggregation unit. It’s not the plant or the batch alone. The assignment to a specific construction project is what makes shade consistency and system compliance checkable in the first place.

Building these industry-specific requirements into the topic structure from day one avoids costly rework later. It also leaves you ready to build AI and digital-twin use cases directly on a solid, cross-plant data foundation.

About i-flow: i-flow is an industrial software company based in southern Germany. The company stands for a new era of self-connecting factories — and the end of manual integration. Its platform connects factories fully automatically, at any scale, worldwide. Over 750 million data operations per day in production-critical environments demonstrate the scalability of the software and the deep trust that customers place in i-flow. This success is based on close collaboration with customers and partners worldwide, including renowned Fortune 500 companies and industry leaders like Bosch.

Related Articles

Your question has not been answered? Contact us.

Eine Frau mit braunen Haaren, einem dunkelblauen Hemd und einer hellen Hose steht lächelnd mit den Händen in den Taschen vor einem steinernen Gebäude mit großen Fenstern.

Your Contact:

Marieke Severiens (i-flow GmbH)
content@i-flow.io

Download the UNS architecture checklist for evaluating roles in UNS now.