Chapter Overview: This chapter explores behavioral interventions for anxiety management, including behavioral activation, systematic desensitization, graded exposure hierarchies, interoceptive exposure, and activity scheduling protocols. These evidence-based techniques complement cognitive interventions to provide comprehensive anxiety treatment.
Behavioral activation (BA) addresses the avoidance and reduced activity that characterize anxiety disorders. While originally developed for depression, BA has demonstrated significant effectiveness for anxiety by breaking the cycle of avoidance that maintains anxious symptoms.
Anxiety naturally motivates avoidance—we instinctively move away from perceived threats. While adaptive for genuine dangers, avoidance of safe situations maintains anxiety through several mechanisms:
The WIA-MENTAL-004 standard implements digital monitoring of activity patterns to identify avoidance behaviors and track behavioral activation progress.
| Component | Purpose | Digital Implementation | Clinical Utility |
|---|---|---|---|
| Activity Monitoring | Track current activity patterns, identify avoidance | Automated smartphone sensing; calendar integration; self-report logging | Baseline assessment; pattern identification; objective progress tracking |
| Value Identification | Clarify personal values and life goals | Interactive values assessment; goal-setting modules | Motivation enhancement; meaningful activity selection |
| Activity Scheduling | Plan valued activities despite anxiety | Smart scheduling with reminders; difficulty rating; preparation prompts | Behavioral commitment; reduced procrastination |
| Implementation Monitoring | Track completion and outcomes | Check-in notifications; outcome logging; mood/anxiety rating | Accountability; outcome-activity correlation analysis |
| Problem-Solving | Address barriers to completion | Barrier identification prompts; solution generation; implementation planning | Overcome obstacles; increase success rate |
// Behavioral Activation System
interface Activity {
activityId: string;
name: string;
description: string;
category: ActivityCategory;
values: string[]; // Which personal values this serves
difficulty: number; // 0-10 subjective difficulty
anxiety: number; // 0-10 anticipated anxiety
enjoyment: number; // 0-10 anticipated enjoyment
mastery: number; // 0-10 sense of accomplishment
}
enum ActivityCategory {
SOCIAL = 'social',
PHYSICAL = 'physical',
CREATIVE = 'creative',
PRODUCTIVE = 'productive',
SELF_CARE = 'self_care',
LEISURE = 'leisure',
LEARNING = 'learning'
}
interface ScheduledActivity {
scheduleId: string;
activity: Activity;
scheduledTime: Date;
duration: number; // minutes
completed: boolean;
actualOutcome?: {
actualAnxiety: number;
actualEnjoyment: number;
actualMastery: number;
notes: string;
barriers?: string[];
};
}
class BehavioralActivationEngine {
// Generate personalized activity recommendations
async recommendActivities(
patientId: string,
values: string[],
currentActivityLevel: number
): Promise {
const patientProfile = await this.getPatientProfile(patientId);
const historicalData = await this.getActivityHistory(patientId);
// Filter activities aligned with patient values
let candidates = this.activityDatabase.filter(activity =>
activity.values.some(v => values.includes(v))
);
// Adjust difficulty to current capability
candidates = candidates.filter(activity =>
activity.difficulty <= currentActivityLevel + 2
);
// Prioritize by predicted effectiveness
const scored = candidates.map(activity => ({
activity,
score: this.predictEffectiveness(
activity,
patientProfile,
historicalData
)
}));
scored.sort((a, b) => b.score - a.score);
return scored.slice(0, 10).map(s => s.activity);
}
// Schedule activity with optimal timing
async scheduleActivity(
patientId: string,
activity: Activity,
preferredTimeframe?: { start: Date; end: Date }
): Promise {
// Identify optimal scheduling time
const optimalTime = await this.findOptimalTime(
patientId,
activity,
preferredTimeframe
);
const scheduled: ScheduledActivity = {
scheduleId: generateUUID(),
activity: activity,
scheduledTime: optimalTime,
duration: this.estimateDuration(activity),
completed: false
};
// Set reminders
await this.setReminders(scheduled);
// Provide preparation support
await this.sendPreparationPrompt(scheduled, 24); // 24 hours before
return scheduled;
}
// Track activity completion and outcomes
async recordCompletion(
scheduleId: string,
completed: boolean,
outcome?: {
actualAnxiety: number;
actualEnjoyment: number;
actualMastery: number;
notes: string;
barriers?: string[];
}
): Promise {
const scheduled = await this.getScheduled(scheduleId);
scheduled.completed = completed;
scheduled.actualOutcome = outcome;
await this.saveActivityRecord(scheduled);
// Learning and adaptation
if (completed && outcome) {
await this.updatePredictionModel(scheduled, outcome);
// Positive reinforcement if outcome better than predicted
if (outcome.actualAnxiety < scheduled.activity.anxiety ||
outcome.actualEnjoyment > scheduled.activity.enjoyment) {
await this.providePo sitiveReinforcement(scheduled);
}
}
// Problem-solving for barriers
if (!completed || (outcome?.barriers && outcome.barriers.length > 0)) {
await this.initiateBarrierProblemSolving(scheduled);
}
}
// Analyze activity-mood relationships
async analyzeActivityMoodCorrelations(
patientId: string
): Promise {
const activities = await this.getCompletedActivities(patientId, 30); // last 30 days
const moodData = await this.getMoodData(patientId, 30);
return {
mostBeneficialActivities: this.identifyMostBeneficial(activities),
anxietyReducingActivities: this.identifyAnxietyReducing(activities),
avoidancePatterns: this.identifyAvoidancePatterns(activities),
recommendations: this.generateRecommendations(activities, moodData)
};
}
}
Exposure therapy is the gold-standard treatment for anxiety disorders, with decades of research demonstrating its effectiveness. The core principle is simple: repeated, systematic confrontation with feared stimuli leads to anxiety reduction through habituation and new learning.
Modern understanding recognizes multiple mechanisms through which exposure produces anxiety reduction:
Effective exposure requires careful construction of a graded hierarchy progressing from least to most anxiety-provoking situations.
| Step | Process | Example: Social Anxiety | Subjective Units of Distress (SUDS) |
|---|---|---|---|
| 1 | Identify feared situations | Making phone calls, attending parties, speaking in meetings | Various |
| 2 | Rate anxiety level (0-100) | Phone call to friend (40), Small party (60), Work presentation (95) | 0-100 scale |
| 3 | Break down into smaller steps | Work presentation → Practice alone (50), Practice with one person (65), Practice with small group (75), Actual presentation (95) | Gradual increments |
| 4 | Ensure adequate range | Include 10-15 items spanning 20-100 SUDS | 10-point increments |
| 5 | Start with manageable item | Begin with SUDS 30-40 item | Challenging but tolerable |
| 6 | Progress systematically | Move to next level when SUDS reduces by 50% and remains low across multiple trials | Habituation criterion |
Exposures should continue until anxiety decreases significantly (typically 30-50% reduction). Premature termination can sensitize rather than habituate anxiety.
Regular, frequent exposures (ideally daily or multiple times weekly) produce better outcomes than infrequent sessions.
Varying exposure contexts facilitates generalization. Practice feared situations in multiple settings, times, and with different people.
Safety behaviors (subtle avoidance tactics) prevent full therapeutic learning. Examples include excessive preparation, escape planning, or bringing "safety" companions.
Direct attention toward the feared outcome rather than distraction maximizes inhibitory learning.
For panic disorder and health anxiety, fear of internal bodily sensations drives symptoms. Interoceptive exposure deliberately induces feared physical sensations to demonstrate they are harmless.
| Exercise | Sensations Produced | Duration | Panic/Health Anxiety Relevance |
|---|---|---|---|
| Hyperventilation | Dizziness, lightheadedness, tingling, breathlessness | 60 seconds | Mimics panic attack symptoms; confronts fear of losing control |
| Breath Holding | Air hunger, chest tightness, panic sensations | 30 seconds | Confronts suffocation fears |
| Running in Place | Rapid heartbeat, breathlessness, sweating | 60 seconds | Cardiac-focused anxiety; fear of heart attack |
| Spinning in Chair | Dizziness, disorientation, nausea | 60 seconds | Fear of losing balance or fainting |
| Head Between Knees | Lightheadedness, dizziness upon standing | 30 seconds down, rapid stand | Orthostatic symptoms; fear of fainting |
| Straw Breathing | Breathlessness, suffocation sensations | 120 seconds | Claustrophobia; breathing-focused anxiety |
| Muscle Tension | Muscle trembling, tension, fatigue | 60 seconds | Body tension catastrophizing |
| Staring at Mirror | Derealization, depersonalization | 90 seconds | Fear of losing touch with reality |
As introduced in Chapter 3, Virtual Reality Exposure Therapy provides powerful advantages for systematic exposure delivery. This section details implementation protocols.
// Virtual Reality Exposure Therapy System
interface VRExposureSession {
sessionId: string;
patientId: string;
phobiaType: PhobiaType;
scenario: VRScenario;
duration: number; // minutes
difficultyLevel: number; // 1-10
baselineAnxiety: number; // Pre-exposure SUDS
peakAnxiety: number; // Maximum SUDS during exposure
endAnxiety: number; // Post-exposure SUDS
physiologicalData: {
heartRateProfile: number[];
skinConductanceProfile: number[];
timestamps: Date[];
};
avoidanceBehaviors: string[];
copingStrategies: string[];
presenceRating: number; // 0-10 sense of immersion
cybersicknessRating: number; // 0-10 discomfort
therapeuticNotes: string;
}
enum PhobiaType {
ACROPHOBIA = 'heights',
AVIOPHOBIA = 'flying',
AGORAPHOBIA = 'crowded_spaces',
SOCIAL_PHOBIA = 'social_situations',
CLAUSTROPHOBIA = 'enclosed_spaces',
ARACHNOPHOBIA = 'spiders'
}
interface VRScenario {
scenarioId: string;
name: string;
description: string;
phobiaType: PhobiaType;
parameters: {
proximity?: number; // Distance to feared object/situation
crowdDensity?: number; // For agoraphobia/social anxiety
height?: number; // For acrophobia
confinement?: number; // For claustrophobia
turbulence?: number; // For aviophobia
};
duration: number; // Recommended duration in minutes
instructorGuidance: string[];
}
class VRExposureController {
// Initialize VR exposure session
async initializeSession(
patientId: string,
phobiaType: PhobiaType,
difficulty: number
): Promise {
// Select appropriate scenario
const scenario = await this.selectScenario(phobiaType, difficulty);
// Calibrate physiological monitoring
await this.calibratePhysiologicalMonitors();
// Pre-exposure assessment
const baselineAnxiety = await this.assessAnxiety();
const session: VRExposureSession = {
sessionId: generateUUID(),
patientId: patientId,
phobiaType: phobiaType,
scenario: scenario,
duration: scenario.duration,
difficultyLevel: difficulty,
baselineAnxiety: baselineAnxiety,
peakAnxiety: baselineAnxiety,
endAnxiety: baselineAnxiety,
physiologicalData: {
heartRateProfile: [],
skinConductanceProfile: [],
timestamps: []
},
avoidanceBehaviors: [],
copingStrategies: [],
presenceRating: 0,
cybersicknessRating: 0,
therapeuticNotes: ''
};
return session;
}
// Monitor session in real-time
async monitorSession(session: VRExposureSession): Promise {
const monitoringInterval = setInterval(async () => {
// Collect physiological data
const hr = await this.getHeartRate();
const sc = await this.getSkinConductance();
const suds = await this.getCurrentSUDS();
session.physiologicalData.heartRateProfile.push(hr);
session.physiologicalData.skinConductanceProfile.push(sc);
session.physiologicalData.timestamps.push(new Date());
// Update peak anxiety
if (suds > session.peakAnxiety) {
session.peakAnxiety = suds;
}
// Check for excessive distress
if (suds >= 90 || hr >= 150) {
await this.provideCalmingGuidance();
}
// Detect avoidance behaviors in VR
const avoidance = await this.detectAvoidance();
if (avoidance) {
session.avoidanceBehaviors.push(avoidance);
await this.promptConfrontation();
}
}, 5000); // Every 5 seconds
// Stop monitoring when session ends
setTimeout(() => {
clearInterval(monitoringInterval);
this.concludeSession(session);
}, session.duration * 60 * 1000);
}
// Adaptive difficulty adjustment
async adjustDifficulty(
session: VRExposureSession,
direction: 'increase' | 'decrease'
): Promise {
const currentParams = session.scenario.parameters;
if (direction === 'increase') {
// Make exposure more challenging
if (currentParams.proximity) {
currentParams.proximity *= 0.8; // Move closer
}
if (currentParams.height) {
currentParams.height *= 1.2; // Go higher
}
if (currentParams.crowdDensity) {
currentParams.crowdDensity *= 1.3; // More crowded
}
} else {
// Make exposure less challenging
if (currentParams.proximity) {
currentParams.proximity *= 1.2; // Move farther
}
if (currentParams.height) {
currentParams.height *= 0.8; // Go lower
}
if (currentParams.crowdDensity) {
currentParams.crowdDensity *= 0.7; // Less crowded
}
}
await this.updateVREnvironment(currentParams);
}
// Generate session report
async concludeSession(session: VRExposureSession): Promise {
// Final assessments
session.endAnxiety = await this.assessAnxiety();
session.presenceRating = await this.assessPresence();
session.cybersicknessRating = await this.assessCybersickness();
// Calculate metrics
const anxietyReduction = session.baselineAnxiety - session.endAnxiety;
const habituationAchieved = anxietyReduction >= 30; // 30% reduction
const report: SessionReport = {
sessionId: session.sessionId,
summary: {
duration: session.duration,
difficultyLevel: session.difficultyLevel,
baselineAnxiety: session.baselineAnxiety,
peakAnxiety: session.peakAnxiety,
endAnxiety: session.endAnxiety,
anxietyReduction: anxietyReduction,
habituationAchieved: habituationAchieved
},
recommendations: {
nextDifficulty: this.recommendNextDifficulty(session),
focusAreas: this.identifyFocusAreas(session),
homeworkActivities: this.generateHomework(session)
},
clinicalNotes: this.generateClinicalNotes(session)
};
await this.saveSessionData(session, report);
return report;
}
}
Despite technological advances, real-world (in-vivo) exposure remains essential for generalization and real-life functioning. The WIA-MENTAL-004 standard supports therapist-assisted and self-directed in-vivo exposure.
Therapist accompaniment during initial exposures provides:
Digital tools enable independent exposure practice between sessions:
弘益人間 · Benefit All Humanity
True courage is not the absence of fear, but action despite fear. Through systematic behavioral activation and exposure, we help individuals reclaim their lives from anxiety's grip, serving the flourishing of all humanity.
Maximum effectiveness comes from integrating behavioral and cognitive approaches. Cognitive restructuring prepares for exposure; exposure provides real-world data challenging anxious thoughts.
| Phase | Cognitive Component | Behavioral Component | Integration |
|---|---|---|---|
| Preparation | Identify catastrophic predictions; rate believability | Construct exposure hierarchy; plan specific exposure | Frame exposure as behavioral experiment testing predictions |
| Pre-Exposure | Specify predicted outcome; identify evidence that would support/contradict | Eliminate safety behaviors; commit to full engagement | Clear hypothesis about what will happen |
| During Exposure | Monitor thoughts; resist cognitive avoidance; attend to disconfirming evidence | Remain in situation until anxiety reduces 50%; use coping skills not safety behaviors | Gather real-world evidence about predictions |
| Post-Exposure | Compare predicted vs actual outcomes; revise threat appraisals based on evidence | Record SUDS changes; note sense of mastery; plan next exposure | Use experience to build balanced perspective |
| Consolidation | Identify broader implications; generalize learning to other situations | Progress to next hierarchy level; vary exposure contexts | Deepen both cognitive and behavioral change |
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.