CHAPTER 4

Phase 1 - Data Format

Phase 1 establishes the foundational data formats for 3D printing construction. This chapter explores JSON schemas for building models, material specifications, layer definitions, structural metadata, quality requirements, and process parameters that enable interoperability across the ecosystem.

JSON Schema Foundation

The WIA standard adopts JSON (JavaScript Object Notation) as its primary data interchange format. This decision balances human readability, tool support, compact representation, and widespread adoption across programming languages and platforms.

Why JSON?

Several factors motivated the choice of JSON over alternatives like XML, binary formats, or custom specifications:

JSON Schema Validation

All WIA data formats include corresponding JSON Schema definitions. These schemas:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WIA Building Project",
  "type": "object",
  "required": ["standard", "version", "project", "geometry"],
  "properties": {
    "standard": {
      "type": "string",
      "const": "WIA-3D-PRINTING-CONSTRUCTION"
    },
    "version": {
      "type": "string",
      "pattern": "^\\d+\\.\\d+\\.\\d+$"
    }
  }
}

Building Project Schema

The root schema for a 3D printing construction project encompasses all information needed to plan, execute, and document a build. This includes project metadata, geometry, materials, process parameters, and quality requirements.

Project Metadata

Core project information identifies and describes the project:

{
  "project": {
    "id": "uuid-v4-string",
    "name": "Residential Building A1",
    "type": "residential",
    "location": {
      "address": "123 Main Street",
      "city": "Austin",
      "state": "TX",
      "country": "USA",
      "coordinates": {
        "latitude": 30.2672,
        "longitude": -97.7431,
        "elevation": 150.0
      }
    },
    "dates": {
      "design": "2025-01-15",
      "printStart": "2025-03-01",
      "printEnd": "2025-03-20",
      "completion": "2025-05-01"
    },
    "stakeholders": {
      "owner": "...",
      "architect": "...",
      "contractor": "...",
      "materialSupplier": "..."
    }
  }
}
Field Type Required Description
id UUID Yes Unique project identifier
name String Yes Human-readable project name
type Enum Yes Building classification
location Object Yes Geographic location details
dates Object Yes Project timeline milestones

Geometry Specification

Geometric data defines the physical form of the structure. The WIA format supports multiple geometric representations to accommodate different workflows and tools.

Mesh Representation

Triangle meshes provide the most common 3D geometry representation:

{
  "geometry": {
    "format": "mesh",
    "meshData": {
      "vertices": [
        [0.0, 0.0, 0.0],
        [10000.0, 0.0, 0.0],
        [10000.0, 15000.0, 0.0],
        [0.0, 15000.0, 0.0]
      ],
      "faces": [
        [0, 1, 2],
        [0, 2, 3]
      ],
      "unit": "mm"
    },
    "boundingBox": {
      "min": [0.0, 0.0, 0.0],
      "max": [10000.0, 15000.0, 8000.0]
    }
  }
}

Parametric Representation

For simple geometric forms, parametric descriptions are more compact and editable:

{
  "geometry": {
    "format": "parametric",
    "components": [
      {
        "type": "wall",
        "path": [[0,0], [10000,0], [10000,15000], [0,15000], [0,0]],
        "height": 3000,
        "thickness": 250
      },
      {
        "type": "opening",
        "position": [2000, 0, 1000],
        "dimensions": [1000, 2100, 250],
        "purpose": "door"
      }
    ]
  }
}

Layer-Based Representation

Direct layer definitions suitable for immediate printing:

{
  "geometry": {
    "format": "layers",
    "layerHeight": 20,
    "layers": [
      {
        "number": 1,
        "height": 20,
        "paths": [
          {
            "type": "perimeter",
            "points": [[0,0], [10000,0], [10000,15000], ...],
            "width": 40
          },
          {
            "type": "infill",
            "points": [[100,100], [9900,100], ...],
            "width": 40,
            "density": 0.4
          }
        ]
      }
    ]
  }
}

Material Specifications

Comprehensive material specifications ensure consistent behavior and enable quality control. Materials are defined with properties relevant to both printing process and structural performance.

Material Library

Projects reference materials from standardized library:

{
  "materials": {
    "primary": {
      "id": "WIA-CONCRETE-STD-001",
      "name": "Standard Printable Concrete",
      "category": "concrete",
      "composition": {
        "cement": {
          "type": "Portland Type I",
          "proportion": 0.35
        },
        "sand": {
          "maxSize": "2mm",
          "proportion": 0.45
        },
        "water": {
          "proportion": 0.15
        },
        "additives": {
          "superplasticizer": 0.03,
          "accelerator": 0.02
        }
      },
      "properties": {
        "printability": {
          "flowRate": {
            "min": 500,
            "max": 1500,
            "unit": "mm³/s"
          },
          "extrusionPressure": {
            "target": 1.2,
            "unit": "MPa"
          },
          "buildability": {
            "greenStrength": 15,
            "unit": "kPa"
          },
          "openTime": {
            "value": 45,
            "unit": "minutes"
          }
        },
        "structural": {
          "compressiveStrength": {
            "28day": 30,
            "unit": "MPa"
          },
          "tensileStrength": {
            "value": 3.5,
            "unit": "MPa"
          },
          "modulusOfElasticity": {
            "value": 25000,
            "unit": "MPa"
          }
        },
        "durability": {
          "freezeThaw": "pass",
          "sulfateResistance": "high",
          "carbonation": "low"
        }
      }
    }
  }
}
Property Category Key Parameters Validation Method
Printability Flow rate, pressure, buildability ASTM C1749, rheometer testing
Structural Strength, stiffness, ductility ASTM C39, C78, C469
Durability Freeze-thaw, sulfate, carbonation ASTM C666, C1012, accelerated carbonation
Thermal Conductivity, expansion, capacity ASTM C518, E831, C351

Print Parameters

Process parameters control how material is deposited. These parameters must be precisely specified to achieve desired quality and performance.

{
  "printParameters": {
    "layerHeight": 20,
    "printSpeed": {
      "perimeter": 100,
      "infill": 150,
      "unit": "mm/s"
    },
    "pathWidth": {
      "outer": 40,
      "inner": 40,
      "unit": "mm"
    },
    "temperature": {
      "material": 25,
      "ambient": 20,
      "unit": "celsius"
    },
    "flowRate": {
      "target": 1000,
      "tolerance": 50,
      "unit": "mm³/s"
    },
    "acceleration": {
      "max": 500,
      "unit": "mm/s²"
    },
    "retraction": {
      "distance": 5,
      "speed": 50,
      "unit": "mm"
    }
  }
}

Quality Requirements

Quality specifications define acceptance criteria for completed work. These include dimensional tolerances, surface finish, structural performance, and testing requirements.

{
  "quality": {
    "dimensional": {
      "tolerances": {
        "horizontal": {
          "value": 5,
          "unit": "mm"
        },
        "vertical": {
          "value": 10,
          "unit": "mm"
        },
        "wallThickness": {
          "value": 3,
          "unit": "mm"
        }
      }
    },
    "surface": {
      "roughness": {
        "max": 5,
        "unit": "mm"
      },
      "waviness": {
        "max": 10,
        "unit": "mm"
      }
    },
    "structural": {
      "loadTesting": {
        "required": true,
        "loadFactor": 1.5,
        "duration": 24,
        "unit": "hours"
      }
    },
    "inspection": {
      "frequency": "per-layer",
      "methods": ["visual", "laser-scan", "ultrasonic"]
    }
  }
}

Reinforcement Integration

Most concrete structures require reinforcement. The data format supports specification of both traditional rebar and printed reinforcement.

{
  "reinforcement": {
    "type": "hybrid",
    "traditional": [
      {
        "id": "rebar-001",
        "material": "steel-grade-60",
        "diameter": 16,
        "path": "3d-polyline-coordinates",
        "placement": {
          "layer": 10,
          "pausePrint": true,
          "installMethod": "manual"
        }
      }
    ],
    "printed": [
      {
        "id": "fiber-001",
        "material": "fiber-composite",
        "diameter": 2,
        "distribution": "continuous-mesh",
        "pattern": "rectilinear"
      }
    ]
  }
}

Complete Project Example

Bringing together all components, here's a complete minimal project specification:

{
  "standard": "WIA-3D-PRINTING-CONSTRUCTION",
  "version": "1.0.0",
  "project": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Single Family Residence",
    "type": "residential",
    "location": {
      "coordinates": {"latitude": 30.2672, "longitude": -97.7431}
    }
  },
  "geometry": {
    "format": "parametric",
    "components": [
      {"type": "wall", "path": [[0,0],[10000,0]], "height": 3000, "thickness": 250}
    ],
    "unit": "mm"
  },
  "materials": {
    "primary": {
      "id": "WIA-CONCRETE-STD-001",
      "properties": {
        "compressiveStrength": {"value": 30, "unit": "MPa"}
      }
    }
  },
  "printParameters": {
    "layerHeight": 20,
    "printSpeed": 100,
    "pathWidth": 40
  },
  "quality": {
    "dimensional": {
      "tolerances": {"horizontal": 5, "vertical": 10}
    }
  }
}

Validation and Verification

Data format compliance must be verifiable. The standard provides validation tools and procedures to ensure data quality.

Schema Validation

All project files must validate against official JSON schemas. Validation checks:

Semantic Validation

Beyond syntax, semantic validation ensures data makes physical sense:

Reference Implementation

The WIA project provides open-source validation tools:

// Python example
from wia_standards import validate_project

result = validate_project('project.json')
if result.valid:
    print("Project data is valid")
else:
    for error in result.errors:
        print(f"Error: {error.message} at {error.path}")

Extensibility and Custom Fields

While the standard defines comprehensive core fields, projects often have unique requirements. The format supports extensibility through custom field namespaces.

{
  "standard": "WIA-3D-PRINTING-CONSTRUCTION",
  "version": "1.0.0",
  "project": { /* ... standard fields ... */ },
  "extensions": {
    "com.example.vendor": {
      "proprietaryFeature": "value",
      "customProcessing": {
        "enabled": true,
        "parameters": {...}
      }
    },
    "org.researchproject.experimental": {
      "algorithmVersion": "2.5",
      "testData": {...}
    }
  }
}

Extension namespaces prevent conflicts and clearly identify vendor-specific or experimental features.

Versioning and Compatibility

As the standard evolves, data format versioning ensures compatibility. Files include version numbers, and parsers handle multiple versions.

Version Specification

Every file must specify which standard version it conforms to:

{
  "standard": "WIA-3D-PRINTING-CONSTRUCTION",
  "version": "1.2.3",
  ...
}

Compatibility Rules

Migration Tools

For major version transitions, the standard provides migration utilities:

wia-convert --from 1.5.0 --to 2.0.0 old-project.json new-project.json

Chapter Summary

Phase 1 of the WIA standard establishes comprehensive data formats using JSON schemas. These formats cover all aspects of 3D printing construction projects: project metadata, geometry (mesh, parametric, or layer-based), material specifications, print parameters, quality requirements, and reinforcement integration.

The JSON-based approach balances human readability with machine processability. JSON Schema provides powerful validation capabilities ensuring data quality and consistency. The format supports multiple geometric representations to accommodate different workflows, from high-level design to low-level print paths.

Material specifications include both printability properties (flow, pressure, buildability) and structural performance (strength, durability). Process parameters precisely control material deposition. Quality requirements define acceptance criteria with measurable tolerances.

Extensibility mechanisms allow vendor-specific features without fragmenting the core standard. Versioning rules ensure compatibility as the standard evolves. Validation tools verify both syntactic correctness and semantic validity.

Key Takeaways

  1. JSON Foundation: JSON provides ideal balance of human readability, tool support, and extensibility for construction data exchange, with JSON Schema enabling rigorous validation.
  2. Comprehensive Coverage: Data format encompasses all project aspects—metadata, geometry, materials, processes, quality, reinforcement—creating complete specification.
  3. Multiple Geometric Representations: Support for mesh, parametric, and layer-based geometry accommodates different workflows from conceptual design to production printing.
  4. Material-Process Integration: Material specifications include both printability properties and structural performance, with process parameters ensuring compatibility.
  5. Validation and Extensibility: Rigorous validation ensures data quality while extension mechanisms allow innovation without fragmenting core interoperability.

Review Questions

  1. Compare JSON, XML, and binary formats for construction data exchange. What specific characteristics make JSON optimal for the WIA standard's requirements?
  2. The standard supports three geometric representations: mesh, parametric, and layer-based. For each, describe appropriate use cases and explain advantages and limitations.
  3. Material specifications include multiple property categories: printability, structural, durability, thermal. Explain why each category is necessary and how properties within each category influence printing and performance.
  4. How do print parameters (layer height, speed, path width, flow rate) interact with material properties to determine print quality? Give specific examples of parameter-property relationships.
  5. Analyze the extensibility mechanism using custom field namespaces. How does this approach balance standardization with vendor innovation? What problems could arise without namespacing?
  6. The standard employs semantic versioning (major.minor.patch) with specific compatibility rules. Explain what changes are appropriate for each version level and why backward compatibility matters for industry adoption.

Looking Ahead

With foundational data formats established, Chapter 5 explores Phase 2—API Interface specifications. We'll examine RESTful APIs that enable systems to exchange this data, coordinate operations, manage projects, track materials, control print jobs, and report quality metrics. The APIs build directly on the Phase 1 data formats, creating an integrated ecosystem for 3D construction printing.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.