CHAPTER 4

Phase 1 - Data Format

Technical specifications for e-waste classification schemas, WEEE categories, hazardous material tracking, product lifecycle data structures, and the standardized formats that enable information exchange across the e-waste management ecosystem.

The Foundation of Interoperability

Data standardization forms the bedrock upon which all other phases build. Without common formats for describing devices, materials, and processes, systems cannot communicate effectively. Manufacturers would describe products using proprietary schemas incompatible with recycler systems. Collectors would track information that processing facilities cannot interpret. Regulators would require reports in formats that organizations struggle to generate. These incompatibilities perpetuate inefficiency and prevent the coordinated action necessary for effective e-waste management.

The WIA Phase 1 Data Format specifications address this fragmentation by defining JSON-based schemas for all core e-waste management data. These schemas cover device classification, material composition, lifecycle events, processing outcomes, and compliance documentation. By adopting these common formats, stakeholders speak a shared language that enables seamless information exchange regardless of underlying software systems.

Device Classification and Identification

Every electronic device entering the waste stream must be classified and uniquely identified. Classification determines appropriate handling procedures, while unique identification enables tracking through the recycling process. The standard employs a hierarchical classification system aligned with WEEE directive categories but extended with device-specific subcategories.

Primary WEEE Categories

The standard adopts the six WEEE categories as primary classifiers:

Category Code Category Name Description Typical Weight Range
WEEE-1 Temperature Exchange Refrigerators, Air conditioners, Heat pumps 15-100 kg
WEEE-2 Screens and Monitors TVs, Computer monitors, Laptops, Tablets 2-30 kg
WEEE-3 Lamps LED, Fluorescent, CFL lamps 0.05-1 kg
WEEE-4 Large Equipment Washing machines, Dryers, Dishwashers 30-150 kg
WEEE-5 Small Equipment Smartphones, Cameras, Toasters, Vacuums 0.1-10 kg
WEEE-6 Small IT/Telecom Routers, Keyboards, Mice, Calculators 0.05-2 kg

Device Subcategories and Types

Within each WEEE category, the standard defines subcategories that provide finer-grained classification. For example, WEEE-5 (Small Equipment) includes subcategories for:

Unique Device Identification

Each device receives a UUID (Universally Unique Identifier) following RFC 4122 version 4 specifications. This identifier, generated at manufacturing or first registration, persists throughout the device lifecycle. QR codes encoding the UUID enable rapid scanning and tracking at collection and processing facilities.

{
  "device_id": "550e8400-e29b-41d4-a716-446655440000",
  "weee_category": "WEEE-5",
  "weee_subcategory": "smartphone",
  "manufacturer": "TechCorp Inc.",
  "model_name": "TechPhone Pro 15",
  "model_number": "TP15-256-BK",
  "manufacturing_date": "2024-03-15",
  "manufacturing_facility": "FC-CN-SZ-001",
  "serial_number": "TC24031512345",
  "weight_kg": 0.189,
  "dimensions_mm": {
    "length": 146.7,
    "width": 71.5,
    "depth": 7.8
  }
}

Material Composition Declaration

Accurate material composition information is critical for safe processing and efficient recovery. Manufacturers must declare all significant materials, hazardous substances, and valuable resources contained in devices. This declaration follows standardized formats that specify substance identifiers, quantities, locations, and extraction methods.

Bill of Materials Structure

The material declaration uses hierarchical structure reflecting device assembly. Top-level components (display, battery, circuit board, housing) contain sub-assemblies and individual materials. Each material is identified by CAS (Chemical Abstracts Service) number, providing unambiguous specification.

{
  "device_id": "550e8400-e29b-41d4-a716-446655440000",
  "bill_of_materials": {
    "version": "1.2.0",
    "last_updated": "2024-03-15",
    "components": [
      {
        "component_name": "Main Circuit Board",
        "component_type": "PCB",
        "weight_g": 18.5,
        "materials": [
          {
            "substance": "Copper",
            "cas_number": "7440-50-8",
            "weight_g": 5.2,
            "percentage": 28.1,
            "location": "Traces and layers"
          },
          {
            "substance": "Gold",
            "cas_number": "7440-57-5",
            "weight_g": 0.024,
            "percentage": 0.13,
            "location": "Connectors and contacts"
          },
          {
            "substance": "FR4 Substrate",
            "cas_number": "N/A",
            "weight_g": 10.8,
            "percentage": 58.4,
            "location": "Board substrate"
          }
        ],
        "hazardous_substances": [
          {
            "substance": "Lead",
            "cas_number": "7439-92-1",
            "weight_g": 0.15,
            "location": "Legacy solder joints",
            "concentration_ppm": 8100,
            "rohs_exempt": true,
            "exemption_code": "7a"
          }
        ]
      }
    ]
  }
}

Hazardous Substance Tracking

All hazardous substances require explicit declaration with quantities, locations, and handling requirements. The standard maintains a comprehensive hazardous substance registry aligned with RoHS, REACH, and other international frameworks. For each hazardous substance, declarations must include:

Hazardous Substance Common Sources Typical Quantity Handling Priority
Mercury (Hg) Backlights, Switches 3-5 mg per lamp High - Remove first
Lead (Pb) Solder, CRT glass, Batteries 50-500 mg per device High - Segregate
Cadmium (Cd) NiCd batteries, Pigments 10-100 mg per battery High - Isolate
Brominated flame retardants Plastic housings, PCBs 1-3% by weight Medium - Track
Lithium (in batteries) Li-ion batteries 2-5 g per battery High - Fire risk

Valuable Material Documentation

Beyond hazards, declarations identify valuable materials warranting recovery efforts. Precious metals (gold, silver, platinum, palladium), rare earth elements (neodymium, dysprosium, yttrium), and strategic materials (tantalum, cobalt) receive detailed documentation including:

Lifecycle Event Tracking Schema

Devices accumulate history as they move from manufacturing through use and eventual recycling. The lifecycle tracking schema captures all significant events, creating comprehensive audit trails that support compliance verification, warranty management, and recycling optimization.

Event Types and Structure

The standard defines standardized event types covering the complete device lifecycle:

{
  "device_id": "550e8400-e29b-41d4-a716-446655440000",
  "lifecycle_events": [
    {
      "event_id": "evt_001",
      "event_type": "manufacturing_complete",
      "timestamp": "2024-03-15T14:23:00Z",
      "location": {
        "facility_id": "FC-CN-SZ-001",
        "address": "Shenzhen, China",
        "coordinates": {
          "latitude": 22.5431,
          "longitude": 114.0579
        }
      },
      "metadata": {
        "production_line": "Line-7",
        "quality_check": "passed",
        "batch_number": "2024-Q1-B0342"
      }
    },
    {
      "event_id": "evt_002",
      "event_type": "first_sale",
      "timestamp": "2024-04-22T10:15:00Z",
      "location": {
        "facility_id": "RT-US-NY-042",
        "address": "New York, NY, USA"
      },
      "metadata": {
        "retailer": "TechStore NYC",
        "warranty_start": "2024-04-22",
        "warranty_duration_months": 24
      }
    },
    {
      "event_id": "evt_003",
      "event_type": "collected_for_recycling",
      "timestamp": "2025-11-08T09:45:00Z",
      "location": {
        "facility_id": "COL-US-NY-018",
        "address": "Brooklyn, NY, USA"
      },
      "metadata": {
        "collection_method": "retail_takeback",
        "device_condition": "functional_obsolete",
        "data_wiped": true,
        "collector_id": "COL-12345"
      }
    }
  ]
}

Collection and Processing Events

E-waste management events receive particular attention, with detailed schemas capturing collection conditions, processing stages, and material recovery outcomes. These events include:

Material Recovery Reporting Format

Processing outcomes must be documented to close the circular economy loop. Recovery reports link processed devices to recovered materials, documenting quantities, purities, and destination of all outputs. This transparency enables EPR cost allocation, compliance verification, and continuous process improvement.

{
  "recovery_report_id": "RR-2025-11-08-001",
  "processing_facility": "RC-US-NY-003",
  "processing_date": "2025-11-08",
  "input_devices": [
    {
      "device_id": "550e8400-e29b-41d4-a716-446655440000",
      "weight_kg": 0.189
    }
  ],
  "total_input_weight_kg": 52.7,
  "total_devices_processed": 250,
  "recovered_materials": [
    {
      "material": "Copper",
      "cas_number": "7440-50-8",
      "weight_kg": 6.8,
      "purity_percentage": 94.5,
      "recovery_method": "mechanical_separation",
      "destination": "secondary_smelter",
      "destination_facility": "SM-US-PA-001",
      "estimated_value_usd": 64.60
    },
    {
      "material": "Gold",
      "cas_number": "7440-57-5",
      "weight_g": 6.2,
      "purity_percentage": 99.2,
      "recovery_method": "hydrometallurgical",
      "destination": "precious_metal_refinery",
      "destination_facility": "PM-CH-ZH-001",
      "estimated_value_usd": 372.00
    }
  ],
  "residual_outputs": [
    {
      "material_type": "mixed_plastics",
      "weight_kg": 18.3,
      "disposition": "energy_recovery",
      "facility": "EF-US-NJ-002"
    },
    {
      "material_type": "hazardous_residues",
      "weight_kg": 2.1,
      "disposition": "secure_landfill",
      "facility": "HW-US-DE-001",
      "certification": "TSCA_approved"
    }
  ],
  "recovery_efficiency": {
    "overall_recovery_rate": 89.2,
    "material_recovery_rate": 72.5,
    "energy_recovery_rate": 16.7
  }
}

Data Validation and Quality Assurance

Data quality directly impacts system effectiveness. Invalid or incomplete data compromises tracking, undermines compliance verification, and reduces processing efficiency. The standard includes comprehensive validation rules and quality assurance mechanisms.

Schema Validation Rules

JSON Schema definitions specify required fields, data types, value ranges, and format constraints for all data elements. Validation libraries check conformance before data acceptance, rejecting invalid submissions with specific error messages. Key validation categories include:

Data Quality Scoring

Beyond binary valid/invalid assessment, the standard defines data quality scoring that evaluates completeness and richness. High-quality submissions include optional fields that enhance processing efficiency even when not strictly required. Quality scores influence certification levels and may affect EPR fee calculations.

Quality Level Criteria Score Range Implications
Minimal Required fields only 0-40 Accepted but limited utility
Standard Required + common optional fields 41-70 Supports basic operations
Enhanced Comprehensive material declarations 71-90 Enables optimized processing
Exemplary Complete data with disassembly guides 91-100 Maximum processing efficiency

Privacy and Data Security Considerations

E-waste tracking must balance transparency with privacy protection. Consumer personal information should not be exposed through lifecycle tracking. The standard incorporates privacy-by-design principles including:

Extensibility and Future-Proofing

Technology evolves continuously, introducing new device types, materials, and processing methods. The data format standard accommodates this evolution through extensibility mechanisms that allow new fields and categories without breaking existing implementations.

Custom Field Extensions

Organizations can add custom fields using namespaced extensions that don't conflict with standard fields. This allows industry-specific or experimental data collection while maintaining interoperability for core data.

{
  "device_id": "550e8400-e29b-41d4-a716-446655440000",
  "weee_category": "WEEE-5",
  "manufacturer": "TechCorp Inc.",
  "extensions": {
    "techcorp:internal_tracking": {
      "factory_batch": "FC7-2024-Q1",
      "qc_inspector": "QC-42",
      "custom_warranty_tier": "premium"
    },
    "recycler:condition_assessment": {
      "screen_condition": "excellent",
      "battery_health": 87,
      "reuse_score": 8.5
    }
  }
}

Version Migration Strategies

As the standard evolves, data must migrate between versions. The standard specifies migration procedures and provides tools for automatic conversion. Backward compatibility receives high priority—newer systems must interpret older data formats gracefully, though older systems may not understand newer features.

Chapter Summary

Phase 1 Data Format specifications provide the foundational vocabulary for e-waste management. Through standardized schemas for device classification, material composition, lifecycle tracking, and recovery reporting, diverse stakeholders can exchange information effectively. Validation rules ensure data quality while extensibility mechanisms accommodate technological evolution.

Key Takeaways

  • Hierarchical device classification using WEEE categories and subcategories enables consistent sorting and appropriate processing method selection across facilities
  • Comprehensive material declarations using CAS numbers and structured formats provide recyclers with critical information for safe processing and efficient recovery
  • Lifecycle event tracking creates audit trails from manufacturing through recycling, supporting compliance verification and process optimization
  • Material recovery reporting closes the circular economy loop by documenting what materials were recovered from which devices and where they went next
  • Data quality validation and extensibility mechanisms ensure both reliability and future-proofing of the standard as technology and practices evolve

Review Questions

  1. Explain the relationship between WEEE categories and device subcategories. Why is this hierarchical classification necessary?
  2. Describe the essential elements of a material composition declaration. What makes CAS numbers valuable for this purpose?
  3. How do lifecycle events support Extended Producer Responsibility implementation? What specific events are most critical for EPR?
  4. Compare the information needs of collectors, processors, and regulators. How does the standard accommodate these different perspectives?
  5. Discuss the privacy considerations in e-waste tracking. How does the standard balance transparency with personal data protection?
  6. Why is data quality scoring valuable beyond simple validation? How might quality scores influence recycling operations or costs?

Looking Ahead

With standardized data formats established, Chapter 5 examines Phase 2: API Interface specifications. These APIs enable software systems to exchange Phase 1 data, coordinate operations, and integrate e-waste management into broader business and regulatory systems.

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.

Korea Industrial Cluster, National Strategic Technologies, Workforce Development

Korea operates a comprehensive industrial cluster system. Korea Top 12 National Strategic Technologies (5th Science and Technology Master Plan 2023-2027): (1) Semiconductors and Displays (2) Secondary Batteries (3) Advanced Mobility (autonomous driving, UAM) (4) Next-Generation Nuclear (SMR) (5) Advanced Bio (6) Aerospace and Marine (7) Hydrogen (8) Cybersecurity (9) Artificial Intelligence (10) Next-Generation Communications (11) Advanced Robotics and Manufacturing (12) Quantum. 12 fields receive direct investment of 5 trillion KRW annually, cumulative 30 trillion KRW by 2030. Korea Major Industrial Clusters: Pangyo IT Cluster (1,300+ companies, 100 trillion KRW revenue), Gangnam Fintech (200+ companies), Songdo BT Bio Cluster, Daegu Medical Cluster, Ulsan Industry (shipbuilding, petrochemicals, automotive), Changwon Machinery, Changwon National Industrial Complex, Siheung and Banwol (SME manufacturing), Yeosu Petrochemicals, Pyeongtaek Semiconductor (Samsung Electronics Pyeongtaek Campus), Icheon and Cheongju Semiconductor (SK hynix Icheon and Cheongju Campuses), Asan Display (Samsung Display Asan Campus), Gumi Mobile (Samsung Gumi Campus), Pohang Steel (POSCO Pohang Steel Mill), Gwangyang Steel (POSCO Gwangyang Steel Mill), Dangjin Steel (Hyundai Steel Dangjin), Ulsan Automotive (Hyundai Motor Ulsan Plant), Asan Automotive (Hyundai Asan Plant), Kia Gwangju and Sohari, POSCO Gwangyang and Pohang Steel Mills, SK hynix Icheon and Cheongju, Samsung Electronics Hwaseong, Giheung, Pyeongtaek, Onyang, Cheonan, Asan Semiconductor Facilities. Major Industrial Complexes and Techno Valleys: Pangyo Techno Valley (1st 800 companies, 2nd 600 companies, 3rd 1,200 companies), Dongtan Techno Valley, Gwanggyo Techno Valley, Songdo IBD, Yeouido Financial District, Gangnam Teheran-ro Valley, Sihwa, Banwol, Gumi, Ulsan, Changwon, Geoje, Yeosu, Ulsan Mipo, Onsan, Cheongju, Iksan, Gwangyang, Yeosu, POSCO Gwangyang Steel Mill, Asan Bay, Seosan, Songdo, Incheon Airport, Sejong, Cheongna, Geomdan, Pyeongtaek Automotive Industrial Complex, Giheung Semiconductor Complex, Icheon Semiconductor Complex, Asan Display Complex, Gumi Mobile Complex, Changwon National Industrial Complex, Ulsan Mipo National Industrial Complex, Yeosu National Industrial Complex, Onsan National Industrial Complex. Korea Workforce Statistics: STEM undergraduate students 700,000 (26% of all university students), STEM graduate students 170,000, PhD researchers 140,000, STEM doctorates conferred 8,000 annually (Seoul National University 1,200, KAIST 800, POSTECH 400, Yonsei University 700, Korea University 600, UNIST 250, DGIST 100, GIST 200, KISTI 50, KIST and ETRI postdoctoral programs 1,000), information security experts 300,000 (KISA-trained and private), AI experts 50,000 (NIA, IITP, NIPA, Samsung, LG, SK, NAVER, Kakao trained), semiconductor experts 260,000 (Samsung Electronics 60,000, SK hynix 30,000, DB HiTek, SK siltron). National R&D Project Operation: National R&D projects 100,000+ annually (MSIT 35,000, MOTIE 25,000, MSS 20,000, MOE 15,000, others 5,000), R&D participating institutions 25,000+, R&D participating researchers 530,000, National R&D output (papers, patents) 540,000 annually. Korea Corporate R&D Investment Top 10 (2024): Samsung Electronics 28 trillion KRW, LG Electronics 9 trillion KRW, SK hynix 8 trillion KRW, Hyundai Motor 6 trillion KRW, Kia 4 trillion KRW, LG Chem 3.5 trillion KRW, LG Display 3.2 trillion KRW, POSCO 3 trillion KRW, Samsung SDI 2.7 trillion KRW, SK Innovation 2.5 trillion KRW.