The effectiveness of any healthcare information standard depends fundamentally on its data models and formats. Well-designed data structures enable seamless information exchange, support interoperability across systems, facilitate analytics and decision support, and ensure data integrity and consistency. The WIA-SENIOR-002 Dementia Care Standard establishes comprehensive data formats spanning all aspects of dementia care technology—from cognitive assessments and safety events to care activities and caregiver observations. These formats build upon established healthcare standards while addressing the unique requirements of dementia care, creating a robust foundation for the next generation of integrated care systems.
This chapter explores the data formats and structures specified by WIA-SENIOR-002 in detail. We examine the core data models for cognitive assessment results, safety monitoring events, medication management records, care coordination information, and caregiver support data. We discuss how these formats integrate with existing healthcare standards including HL7 FHIR (Fast Healthcare Interoperability Resources), ensuring compatibility with electronic health record systems and broader health information exchanges. We also address critical considerations including data privacy and security requirements, versioning and extensibility mechanisms, and validation approaches that ensure data quality while maintaining flexibility.
Understanding these data formats is essential for anyone implementing dementia care technology systems compliant with WIA-SENIOR-002. Software developers building cognitive assessment tools, safety monitoring devices, care coordination platforms, or integrated care ecosystems must adhere to these specifications to achieve interoperability. Healthcare organizations seeking to implement standardized dementia care technology will recognize how these formats facilitate information flow across systems and care settings. Researchers analyzing dementia care data will appreciate how standardization enables large-scale data aggregation and analysis while protecting individual privacy.
The WIA-SENIOR-002 data model employs a layered architecture consisting of base resources, domain-specific profiles, and extension mechanisms. Base resources define fundamental data structures common across all dementia care data—patient demographics, timestamps, identifiers, and provenance information. Domain-specific profiles extend these base resources with specialized fields for cognitive assessment, safety monitoring, medication management, and other dementia care functions. Extension mechanisms allow implementers to add custom fields when needed while maintaining interoperability for core data elements.
This architecture draws inspiration from HL7 FHIR's resource-based approach while optimizing for dementia care use cases. Each data type is defined as a JSON schema with required fields, optional fields, data types, value constraints, and validation rules. JSON was selected as the primary serialization format due to its ubiquity in modern web and mobile applications, human readability facilitating debugging, compact size optimizing network transmission, and extensive tool support across programming languages. Alternative formats including XML and Protocol Buffers are supported through transformation specifications.
All WIA-SENIOR-002 data resources share a common base structure providing essential metadata and ensuring consistent handling across systems. This base structure includes a resource type identifier specifying the data category, a unique resource ID enabling unambiguous references, version information supporting data evolution, timestamps recording creation and modification times, and provenance data documenting information sources and processing history.
{
"resourceType": "DementiaCare.BaseResource",
"id": "550e8400-e29b-41d4-a716-446655440000",
"meta": {
"versionId": "1",
"lastUpdated": "2025-01-15T10:30:00Z",
"profile": ["http://wia.org/fhir/StructureDefinition/DementiaCare"]
},
"standard": "WIA-SENIOR-002",
"standardVersion": "1.0.0",
"subject": {
"reference": "Patient/example-patient-123",
"display": "Anonymous Patient"
},
"source": {
"device": "CognitiveAssessment/device-001",
"system": "MindTrack Pro v2.1",
"timestamp": "2025-01-15T10:29:45Z"
}
}
| Field | Type | Required | Description |
|---|---|---|---|
| resourceType | string | Yes | Identifies the specific resource type |
| id | UUID | Yes | Globally unique identifier (UUID v4) |
| meta | object | Yes | Metadata including version and profile |
| standard | string | Yes | Always "WIA-SENIOR-002" |
| standardVersion | semver | Yes | Version of standard used (e.g., "1.0.0") |
| subject | Reference | Yes | Patient reference (may be de-identified) |
| source | object | Yes | Origin information for provenance tracking |
Cognitive assessment data represents one of the most critical information types in dementia care, documenting cognitive status over time and enabling detection of decline or response to interventions. The WIA-SENIOR-002 cognitive assessment format accommodates diverse assessment types—from brief screening tools like MMSE or MoCA to comprehensive neuropsychological batteries to digital game-based assessments—while maintaining consistency in core data elements.
Each cognitive assessment session is represented as a comprehensive resource capturing all relevant information about the assessment context, administration, and results. The session resource includes assessment metadata identifying the instrument used and administration conditions, temporal information recording when the assessment occurred, performance metrics quantifying cognitive function across domains, and contextual factors that might influence results such as time of day, environmental conditions, or recent life events.
{
"resourceType": "DementiaCare.CognitiveAssessment",
"id": "ca-2025-01-15-001",
"meta": {
"versionId": "1",
"lastUpdated": "2025-01-15T11:00:00Z"
},
"standard": "WIA-SENIOR-002",
"standardVersion": "1.0.0",
"subject": {
"reference": "Patient/p-12345",
"display": "Patient 12345"
},
"assessmentType": "MMSE",
"assessmentVersion": "2001",
"administeredBy": {
"reference": "Practitioner/dr-smith",
"display": "Dr. Jane Smith, MD"
},
"assessmentDate": "2025-01-15",
"assessmentTime": "10:30:00Z",
"duration": "PT15M",
"setting": "clinic",
"domains": [
{
"name": "orientation",
"maxScore": 10,
"achievedScore": 8,
"percentile": 80,
"severity": "mild-impairment"
},
{
"name": "memory",
"maxScore": 6,
"achievedScore": 3,
"percentile": 50,
"severity": "moderate-impairment"
},
{
"name": "attention",
"maxScore": 5,
"achievedScore": 4,
"percentile": 80,
"severity": "mild-impairment"
},
{
"name": "language",
"maxScore": 8,
"achievedScore": 7,
"percentile": 87.5,
"severity": "minimal-impairment"
},
{
"name": "visuospatial",
"maxScore": 1,
"achievedScore": 1,
"percentile": 100,
"severity": "normal"
}
],
"totalScore": {
"maxScore": 30,
"achievedScore": 23,
"percentile": 76.67,
"interpretation": "mild-cognitive-impairment"
},
"contextualFactors": {
"timeOfDay": "morning",
"patientMood": "cooperative",
"environmentalDistractions": "minimal",
"medicationTiming": "1-hour-post-dose"
},
"notes": "Patient showed particular difficulty with delayed recall tasks. Attention and concentration adequate. No significant change from previous assessment 3 months ago."
}
Cognitive assessments evaluate multiple cognitive domains, each requiring detailed scoring and interpretation. The WIA-SENIOR-002 format standardizes domain representation across different assessment instruments, enabling cross-instrument comparisons and longitudinal tracking even when assessment methods change. Each domain includes the domain name using standardized terminology, raw scores representing actual performance, normalized scores enabling comparisons across assessments, percentile rankings contextualizing performance, and severity classifications providing clinical interpretation.
| Standard Domain | MMSE Component | MoCA Component | Digital Game Equivalent |
|---|---|---|---|
| Orientation | Time + Place orientation | Date + Place orientation | Context awareness tasks |
| Memory | Registration + Recall | Memory recall tasks | Sequence remembering games |
| Attention | Serial 7s / WORLD backward | Digit span + vigilance | Focus and concentration tasks |
| Executive Function | N/A in standard MMSE | Trail making + abstraction | Problem-solving challenges |
| Language | Naming + repetition + command | Naming + fluency | Vocabulary and communication |
| Visuospatial | Pentagon copying | Cube + clock drawing | Spatial reasoning puzzles |
Safety monitoring generates critical real-time data requiring immediate action and careful documentation. The WIA-SENIOR-002 safety event format supports diverse event types—falls, wandering episodes, medication errors, environmental hazards, and behavioral safety concerns—while maintaining consistent structure enabling automated processing and alerting.
Falls represent one of the most serious safety concerns for individuals with dementia. The fall event resource captures comprehensive information supporting immediate response and long-term fall prevention. This includes precise event timing enabling response time analysis, location information guiding responders, sensor data from wearables or environmental monitors, impact characteristics indicating severity, patient status following the fall, and response actions taken.
{
"resourceType": "DementiaCare.SafetyEvent.Fall",
"id": "fall-event-2025-01-15-003",
"standard": "WIA-SENIOR-002",
"standardVersion": "1.0.0",
"subject": {
"reference": "Patient/p-12345"
},
"eventType": "fall-detected",
"severity": "moderate",
"detectionMethod": "wearable-accelerometer",
"timestamp": "2025-01-15T14:23:17.342Z",
"location": {
"type": "indoor",
"room": "bathroom",
"gpsCoordinates": {
"latitude": 37.7749,
"longitude": -122.4194,
"accuracy": "5m"
},
"beaconId": "beacon-bathroom-001"
},
"sensorData": {
"accelerometer": {
"x": 2.3,
"y": -9.8,
"z": 1.2,
"magnitude": 10.2
},
"impactForce": 8.7,
"impactDuration": "0.45s"
},
"patientStatus": {
"conscious": true,
"responsive": true,
"injured": false,
"mobility": "assisted-standing"
},
"response": {
"alertSent": "2025-01-15T14:23:18.100Z",
"alertRecipients": ["caregiver-primary", "emergency-contact-1"],
"firstResponder": "caregiver-alice",
"arrivalTime": "2025-01-15T14:25:30Z",
"responseTime": "PT2M13S",
"actionsTaken": [
"assessed-patient-condition",
"checked-for-injuries",
"assisted-patient-to-chair",
"monitored-vital-signs"
],
"medicalAttentionRequired": false
},
"environmentalFactors": {
"lighting": "adequate",
"floorCondition": "dry",
"obstacles": "none-noted",
"assistiveDevices": "walker-not-used"
},
"notes": "Patient attempted to stand from toilet without using grab bars. No apparent injuries. Reminded to use safety equipment."
}
Wandering behavior poses significant safety risks and creates substantial caregiver anxiety. The wandering event resource documents departure from safe areas, movement patterns, location tracking data, and safe return or intervention outcomes. This information supports immediate response while building historical patterns that inform prevention strategies.
Documenting care activities enables coordination among caregivers, supports quality improvement, facilitates reimbursement, and provides evidence of care delivery. The WIA-SENIOR-002 care activity format accommodates diverse activities—personal care assistance, medication administration, social engagement, therapy sessions, and care coordination meetings—while maintaining structure supporting analysis and reporting.
{
"resourceType": "DementiaCare.CareActivity",
"id": "activity-2025-01-15-042",
"standard": "WIA-SENIOR-002",
"standardVersion": "1.0.0",
"subject": {
"reference": "Patient/p-12345"
},
"activityType": "personal-care",
"activityCategory": "bathing-assistance",
"performedBy": {
"reference": "Caregiver/alice-jones",
"role": "home-health-aide",
"certifications": ["CNA", "dementia-care-specialist"]
},
"scheduledTime": "2025-01-15T09:00:00Z",
"actualStartTime": "2025-01-15T09:05:00Z",
"actualEndTime": "2025-01-15T09:35:00Z",
"duration": "PT30M",
"location": "home-bathroom",
"status": "completed",
"patientCooperation": "good",
"patientMood": "pleasant",
"notesAndObservations": "Patient cooperative during bathing. Noticed slight redness on left heel - will monitor. Patient enjoyed selecting clothes for the day.",
"skillsRequired": ["bathing-assistance", "fall-prevention", "dementia-communication"],
"equipmentUsed": ["shower-chair", "grab-bars", "non-slip-mat"],
"safetyConcerns": "none",
"careplanAlignment": "activity-aligns-with-careplan-hygiene-003",
"qualityMetrics": {
"patientSatisfaction": 5,
"safetyCompliance": true,
"timeEfficiency": 1.0
}
}
Medication management data tracks medication administration, adherence, and related events. The WIA-SENIOR-002 medication format extends standard medication resources with dementia-specific considerations including cognitive status during administration, administration assistance level, patient comprehension of medication purpose, and behavioral factors affecting adherence.
| Event Type | Description | Required Actions | Alert Priority |
|---|---|---|---|
| administered-as-scheduled | Medication given on time as prescribed | Documentation only | None |
| administered-late | Medication given past scheduled time | Document reason, adjust next dose timing | Low |
| dose-refused | Patient refused medication | Document reason, notify prescriber | Medium |
| dose-missed | Medication not administered | Document reason, contact prescriber | High |
| adverse-reaction | Negative response to medication | Immediate medical attention | Critical |
| dose-error | Wrong medication, dose, route, or time | Immediate correction, incident report | Critical |
The WIA-SENIOR-002 standard is designed for seamless integration with HL7 FHIR, the leading standard for healthcare data exchange. This integration enables dementia care data to flow into electronic health records, health information exchanges, and other clinical systems while maintaining compatibility with the broader healthcare ecosystem. The standard provides FHIR mapping specifications showing how each WIA-SENIOR-002 resource maps to FHIR resources and extensions.
WIA-SENIOR-002 cognitive assessments map to FHIR Observation resources with specialized profiles. Safety events map to DetectedIssue resources for immediate concerns and Procedure resources for interventions. Care activities map to CarePlan and Procedure resources. Medication data maps directly to MedicationStatement and MedicationAdministration resources. These mappings preserve all dementia-specific data through standardized FHIR extensions while maintaining core FHIR compatibility.
// Example: WIA-SENIOR-002 Cognitive Assessment to FHIR Observation
{
"resourceType": "Observation",
"id": "cognitive-assessment-mmse-001",
"meta": {
"profile": ["http://wia.org/fhir/StructureDefinition/DementiaCognitiveAssessment"]
},
"status": "final",
"category": [{
"coding": [{
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
"code": "survey",
"display": "Survey"
}]
}],
"code": {
"coding": [{
"system": "http://loinc.org",
"code": "72107-6",
"display": "Mini-Mental State Examination"
}]
},
"subject": {
"reference": "Patient/p-12345"
},
"effectiveDateTime": "2025-01-15T10:30:00Z",
"performer": [{
"reference": "Practitioner/dr-smith"
}],
"valueQuantity": {
"value": 23,
"unit": "points",
"system": "http://unitsofmeasure.org",
"code": "1"
},
"interpretation": [{
"coding": [{
"system": "http://wia.org/fhir/CodeSystem/cognitive-severity",
"code": "mild-impairment",
"display": "Mild Cognitive Impairment"
}]
}],
"component": [
{
"code": {
"coding": [{
"system": "http://wia.org/fhir/CodeSystem/cognitive-domain",
"code": "orientation",
"display": "Orientation"
}]
},
"valueQuantity": {
"value": 8,
"unit": "points"
}
},
{
"code": {
"coding": [{
"system": "http://wia.org/fhir/CodeSystem/cognitive-domain",
"code": "memory",
"display": "Memory"
}]
},
"valueQuantity": {
"value": 3,
"unit": "points"
}
}
]
}
Dementia care data includes some of the most sensitive health information, requiring robust security and privacy protections. The WIA-SENIOR-002 standard specifies comprehensive security requirements covering encryption, access control, audit logging, and consent management. All data must be encrypted at rest using AES-256 or equivalent and in transit using TLS 1.3 or higher. Access controls must implement role-based permissions with principle of least privilege. Comprehensive audit logs must record all data access, modification, and sharing events.
Benefit All Humanity
The 弘益人間 (Benefit All Humanity) philosophy guides the WIA-SENIOR-002 data format design. Standardized data formats enable global sharing of anonymized data for research advancing dementia care. Open specifications ensure accessibility regardless of resources or geography. Careful privacy protections maintain trust while enabling beneficial data uses. By creating common data formats, we enable collaboration and knowledge sharing that benefits all individuals affected by dementia worldwide.
Key Takeaways:
Chapter 3 examines the Cognitive Assessment APIs specified by WIA-SENIOR-002, showing how applications submit assessment data, retrieve historical results, analyze trends, and generate reports. Understanding these APIs builds upon the data formats covered in this chapter, demonstrating how standardized data structures enable powerful interoperable systems.
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 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 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.