Complete Technical Specification with 4-Phase Implementation Architecture
The WIA-MEDICAL-DEVICE-SECURITY standard provides a comprehensive framework for securing medical devices throughout their lifecycle. Built on the WIA 4-phase architecture (Data, API, Protocol, Integration), this standard enables manufacturers and healthcare organizations to implement robust, interoperable security capabilities.
Guided by the principle of 弘益人間 (Hongik Ingan) - "Benefit All Humanity" - this standard aims to protect patients through effective cybersecurity while enabling the life-saving capabilities of connected medical devices.
The WIA-MEDICAL-DEVICE-SECURITY standard implements the WIA 4-phase architecture pattern, providing structured layers for data management, API access, protocol definition, and system integration.
The 4-phase architecture separates concerns into distinct layers: Phase 1 (Data) defines the information model, Phase 2 (API) provides programmatic access, Phase 3 (Protocol) enables communication, and Phase 4 (Integration) connects with existing systems. This separation enables flexibility while maintaining consistency.
| Phase | Name | Purpose | Components |
|---|---|---|---|
| Phase 1 | Data Layer | Information modeling and storage | Device models, vulnerability data, security events |
| Phase 2 | API Layer | Programmatic access and operations | REST APIs, GraphQL, authentication |
| Phase 3 | Protocol Layer | Communication and data exchange | Message formats, transport security |
| Phase 4 | Integration Layer | External system connectivity | EHR integration, SIEM, vendor systems |
The Data Layer defines the core information models used throughout the WIA-MEDICAL-DEVICE-SECURITY standard. These models provide a common vocabulary for representing devices, vulnerabilities, and security events.
{
"deviceId": "string (UUID)",
"manufacturer": "string",
"model": "string",
"serialNumber": "string",
"deviceType": "enum (implantable|life_support|imaging|monitoring|laboratory|administrative)",
"riskLevel": "enum (critical|high|medium|low)",
"networkInfo": {
"ipAddress": "string",
"macAddress": "string",
"vlan": "integer",
"segmentZone": "string"
},
"softwareInfo": {
"operatingSystem": "string",
"osVersion": "string",
"firmwareVersion": "string",
"sbomUrl": "string (URI)"
},
"securityProfile": {
"lastAssessmentDate": "datetime",
"securityLevel": "enum (SL1|SL2|SL3|SL4)",
"complianceStatus": "enum (compliant|non_compliant|pending)",
"openVulnerabilities": "integer"
},
"clinicalContext": {
"department": "string",
"location": "string",
"primaryUse": "string",
"patientContact": "boolean"
},
"metadata": {
"createdAt": "datetime",
"updatedAt": "datetime",
"createdBy": "string"
}
}
{
"vulnerabilityId": "string (UUID)",
"cveId": "string",
"affectedDevices": ["string (deviceId)"],
"severity": {
"cvssScore": "number (0.0-10.0)",
"cvssVector": "string",
"clinicalImpact": "enum (critical|high|medium|low)",
"patientSafetyRisk": "boolean"
},
"status": "enum (identified|assessed|remediation_planned|remediated|accepted)",
"exploitInfo": {
"exploitAvailable": "boolean",
"activelyExploited": "boolean",
"exploitComplexity": "enum (low|medium|high)"
},
"remediation": {
"patchAvailable": "boolean",
"patchVersion": "string",
"compensatingControls": ["string"],
"remediationDeadline": "datetime"
},
"metadata": {
"discoveredAt": "datetime",
"discoveryMethod": "enum (scan|sbom|vendor|researcher)",
"assignedTo": "string"
}
}
{
"eventId": "string (UUID)",
"deviceId": "string",
"eventType": "enum (authentication|authorization|network|configuration|malware|anomaly)",
"severity": "enum (critical|high|medium|low|informational)",
"timestamp": "datetime",
"eventData": {
"sourceIp": "string",
"destinationIp": "string",
"protocol": "string",
"action": "string",
"outcome": "enum (success|failure|blocked)"
},
"clinicalContext": {
"patientImpact": "boolean",
"careDisruption": "boolean",
"dataExposure": "boolean"
},
"responseStatus": {
"acknowledged": "boolean",
"incidentCreated": "boolean",
"incidentId": "string"
}
}
The API Layer provides programmatic access to medical device security operations. APIs follow RESTful design principles with JSON payloads and OAuth 2.0 authentication.
| Category | Endpoint | Method | Description |
|---|---|---|---|
| Device Management | /api/v1/devices | GET | List all devices |
| /api/v1/devices/{id} | GET | Get device details | |
| /api/v1/devices/{id}/sbom | GET | Get device SBOM | |
| /api/v1/devices/{id}/security | GET | Get security profile | |
| Vulnerability | /api/v1/vulnerabilities | GET | List vulnerabilities |
| /api/v1/vulnerabilities/{id} | GET | Get vulnerability details | |
| /api/v1/vulnerabilities/{id}/remediate | POST | Initiate remediation | |
| /api/v1/vulnerabilities/assess | POST | Assess new vulnerability | |
| Events | /api/v1/events | GET | Query security events |
| /api/v1/events | POST | Submit security event | |
| /api/v1/events/stream | WSS | Real-time event stream | |
| Incidents | /api/v1/incidents | GET | List incidents |
| /api/v1/incidents | POST | Create incident | |
| /api/v1/incidents/{id}/status | PUT | Update incident status |
The API layer uses OAuth 2.0 with JWT tokens for authentication. Scopes control access to specific operations: devices:read, devices:write, vulnerabilities:manage, incidents:manage, admin:all. Role-based access control maps organizational roles to API scopes.
The Protocol Layer defines message formats and communication protocols for medical device security data exchange. This layer enables interoperability between systems from different vendors.
Messages use JSON with a standard envelope structure:
{
"header": {
"messageId": "string (UUID)",
"messageType": "string",
"version": "1.0",
"timestamp": "datetime (ISO 8601)",
"sender": {
"systemId": "string",
"organizationId": "string"
},
"recipient": {
"systemId": "string",
"organizationId": "string"
}
},
"payload": {
// Message-type specific content
},
"signature": {
"algorithm": "string",
"value": "string (base64)"
}
}
| Message Type | Direction | Purpose |
|---|---|---|
| DEVICE_REGISTRATION | Device → Platform | Register new device |
| DEVICE_HEARTBEAT | Device → Platform | Device health check |
| SECURITY_EVENT | Device → Platform | Report security event |
| VULNERABILITY_ALERT | Platform → Device | Vulnerability notification |
| POLICY_UPDATE | Platform → Device | Security policy change |
| COMMAND_REQUEST | Platform → Device | Device action command |
| COMMAND_RESPONSE | Device → Platform | Command execution result |
The Integration Layer connects the WIA-MEDICAL-DEVICE-SECURITY platform with external systems including EHRs, SIEM platforms, vulnerability databases, and manufacturer systems.
| System Type | Integration Method | Data Exchanged |
|---|---|---|
| EHR Systems | FHIR R4, HL7v2 | Device-patient association, clinical context |
| SIEM Platforms | Syslog, CEF, REST API | Security events, alerts |
| Vulnerability Databases | REST API (NVD, vendor) | CVE data, advisories |
| CMDB/Asset Management | REST API, ServiceNow | Device inventory, ownership |
| Manufacturer Systems | Vendor-specific APIs | Patches, SBOMs, advisories |
The standard supports FHIR Device resource for healthcare interoperability:
{
"resourceType": "Device",
"identifier": [{
"system": "urn:wia:device-security",
"value": "device-uuid"
}],
"status": "active",
"manufacturer": "Device Manufacturer",
"modelNumber": "Model-123",
"serialNumber": "SN-456789",
"type": {
"coding": [{
"system": "http://snomed.info/sct",
"code": "706687001",
"display": "Medical device"
}]
},
"extension": [{
"url": "http://wia.org/fhir/StructureDefinition/device-security",
"valueReference": {
"reference": "SecurityProfile/profile-id"
}
}]
}
This section provides guidance for implementing the WIA-MEDICAL-DEVICE-SECURITY standard in healthcare organizations.
| Phase | Activities | Duration |
|---|---|---|
| Assessment | Inventory devices, assess current state, identify gaps | 4-8 weeks |
| Design | Architecture design, integration planning, policy development | 4-6 weeks |
| Implementation | Deploy platform, configure integrations, migrate data | 8-12 weeks |
| Validation | Testing, validation, clinical acceptance | 4-6 weeks |
| Operations | Go-live, monitoring, continuous improvement | Ongoing |
The WIA-MEDICAL-DEVICE-SECURITY standard maps to major regulatory and industry frameworks:
| Framework | Standard Elements | Coverage |
|---|---|---|
| FDA Premarket | Data models, API security, SBOM | Full |
| FDA Postmarket | Vulnerability management, incident response | Full |
| IEC 62443 | Security levels, zone model | Aligned |
| EU MDR | Security controls, documentation | Full |
| HIPAA Security | Access control, audit, encryption | Supports |
| NIST CSF | All five functions | Aligned |
The following reference architecture illustrates a typical deployment of the WIA-MEDICAL-DEVICE-SECURITY platform:
The WIA-MEDICAL-DEVICE-SECURITY standard continues to evolve with emerging technologies and threats:
Future versions of the standard will maintain backward compatibility with major versions for at least 3 years. Organizations should plan for version migration as part of their standard adoption strategy.
The WIA-MEDICAL-DEVICE-SECURITY standard embodies the principle of benefiting all humanity through improved healthcare security. By protecting connected medical devices, we protect patients worldwide while enabling the life-saving potential of healthcare technology.
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 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.