The effectiveness of neurofeedback depends critically on selecting and implementing appropriate training protocols tailored to individual needs, underlying neurophysiology, and therapeutic goals. This chapter provides comprehensive guidance on protocol selection criteria, describes major protocol families in detail, explains individualized QEEG-guided approaches, discusses session structure optimization, and examines advanced training methods including coherence training, phase synchrony, and LORETA neurofeedback. Mastery of these protocol design principles enables clinicians to customize interventions that maximize therapeutic benefit while minimizing side effects.
Protocol selection represents both art and science—integrating evidence-based guidelines with clinical judgment, neurophysiological assessment, and ongoing response monitoring. While standardized protocols (theta/beta for ADHD, alpha enhancement for anxiety) provide effective starting points validated through research, individual variations in brain organization, symptom patterns, and treatment response necessitate flexible, personalized approaches. The WIA-MENTAL-009 standard establishes decision frameworks that balance protocol standardization with individualization.
Selecting an appropriate neurofeedback protocol requires systematic consideration of multiple factors including primary diagnosis and symptoms, comorbid conditions, baseline EEG patterns (if QEEG is available), previous treatment history, patient age and cognitive capacity, and practical constraints such as session frequency and expected treatment duration. The WIA-MENTAL-009 standard recommends a structured decision-making process that considers each factor systematically.
The foundational principle is symptom-based protocol matching: identifying the core symptom constellation and selecting protocols with established efficacy for that presentation. For ADHD with predominant inattention, theta/beta training at Cz represents the first-line evidence-based choice. For ADHD with hyperactivity-impulsivity, SMR training at C3/C4 may be preferred. For generalized anxiety with rumination and tension, a combination of alpha enhancement and high-beta reduction addresses both relaxation deficits and cortical hyperarousal.
| Primary Symptoms | First-Line Protocol | Alternative Protocols | Evidence Level |
|---|---|---|---|
| Inattention, distractibility, poor focus | Theta/Beta at Cz (inhibit 4-8 Hz, enhance 13-21 Hz) | Beta enhancement alone; SMR training | Level 1 (Efficacious & Specific) |
| Hyperactivity, impulsivity, restlessness | SMR at C3/C4 (enhance 12-15 Hz) | Theta/beta protocol; Slow cortical potentials | Level 1 (Efficacious & Specific) |
| Generalized anxiety, worry, tension | Alpha enhancement at O1/O2 (enhance 8-12 Hz) | High-beta reduction; SMR training; Alpha-theta | Level 2 (Efficacious) |
| PTSD, trauma-related anxiety | Alpha-theta at Pz (theta/alpha crossover) | Alpha enhancement; Bilateral training | Level 2 (Efficacious) |
| Depression with low motivation | Frontal alpha asymmetry (enhance left F3 activity) | Beta enhancement; Alpha/theta protocols | Level 2-3 (Probably Efficacious) |
| Insomnia, sleep disruption | SMR at C3/C4 (enhance 12-15 Hz) | Theta/beta; Alpha training | Level 2 (Efficacious) |
| Peak performance, flow states | Alpha/theta at Pz; SMR training | Beta optimization; Coherence training | Level 3-4 (Experimental) |
| Epilepsy (adjunctive) | SMR at C3/C4 (enhance 12-15 Hz) | Slow cortical potential training | Level 2 (Efficacious) |
When QEEG assessment is available, protocol selection can be further refined based on individual brain activity patterns. QEEG identifies specific frequency dysregulations, localized abnormalities, connectivity patterns, and hemispheric asymmetries that may not be obvious from symptom presentation alone. For example, an ADHD patient might show elevated theta primarily at frontal sites rather than central sites, suggesting training at Fz rather than Cz. Another patient might show normal theta/beta ratio but deficient SMR specifically, indicating SMR training despite presenting with inattentive symptoms.
Frequency band training—the most common neurofeedback approach—involves providing rewards when activity in specified frequency ranges meets defined criteria. Single-frequency protocols target one band (e.g., alpha enhancement), while multi-frequency protocols simultaneously reward target frequencies and inhibit unwanted frequencies (e.g., beta-up/theta-down). Understanding the technical implementation details ensures optimal protocol effectiveness.
Frequency band extraction typically uses Fast Fourier Transform (FFT) applied to short epochs (0.5-2 seconds) of EEG data. The FFT converts time-domain signals into frequency-domain power spectra, revealing power distribution across frequencies. Software then integrates power across defined frequency ranges (e.g., 4-8 Hz for theta, 13-21 Hz for beta) to obtain band power values. These values are compared to thresholds to determine reward delivery.
class FrequencyBandTrainingProtocol:
"""
Implements frequency band neurofeedback training
WIA-MENTAL-009 compliant multi-frequency protocol
"""
def __init__(self, config):
self.sampling_rate = config['sampling_rate']
self.epoch_length = config.get('epoch_length', 1.0) # seconds
self.update_rate = config.get('update_rate', 4) # Hz
# Define frequency bands
self.bands = config['frequency_bands']
# Example: {'theta': (4, 8), 'beta': (13, 21), 'emg': (30, 50)}
# Reward/inhibit criteria
self.reward_bands = config.get('reward_bands', [])
self.inhibit_bands = config.get('inhibit_bands', [])
# Threshold settings
self.threshold_mode = config.get('threshold_mode', 'percentile')
self.thresholds = {}
def extract_band_power(self, eeg_epoch, band_name):
"""
Extract power in specified frequency band using FFT
Args:
eeg_epoch: Array of EEG samples
band_name: Name of frequency band (e.g., 'theta', 'beta')
Returns:
band_power: Power in microvolts^2
"""
import numpy as np
from scipy import signal
# Apply Hanning window to reduce spectral leakage
windowed = eeg_epoch * np.hanning(len(eeg_epoch))
# Compute power spectrum
freqs, power = signal.welch(windowed,
fs=self.sampling_rate,
nperseg=len(windowed))
# Get frequency range for this band
freq_low, freq_high = self.bands[band_name]
# Find indices for frequency range
freq_idx = (freqs >= freq_low) & (freqs <= freq_high)
# Integrate power across frequency range
band_power = np.mean(power[freq_idx])
return band_power
def update_thresholds(self, band_powers, baseline_data=None):
"""
Update reward thresholds based on performance
Adaptive threshold maintains consistent challenge level
Typically set to percentile of recent performance
"""
if self.threshold_mode == 'percentile':
# For reward bands: threshold at 60th percentile (must exceed)
# For inhibit bands: threshold at 70th percentile (must not exceed)
for band in self.reward_bands:
if baseline_data:
recent_powers = baseline_data[band][-100:] # last 100 epochs
self.thresholds[band] = np.percentile(recent_powers, 60)
for band in self.inhibit_bands:
if baseline_data:
recent_powers = baseline_data[band][-100:]
self.thresholds[band] = np.percentile(recent_powers, 70)
elif self.threshold_mode == 'fixed':
# Use predefined absolute thresholds
self.thresholds = config['fixed_thresholds']
def evaluate_reward_criteria(self, current_powers):
"""
Determine if current brain state meets reward criteria
Reward delivered if:
- All reward bands exceed their thresholds AND
- All inhibit bands are below their thresholds
"""
reward = True
feedback_message = []
# Check reward band criteria
for band in self.reward_bands:
if current_powers[band] < self.thresholds.get(band, 0):
reward = False
feedback_message.append(f"{band} too low")
# Check inhibit band criteria
for band in self.inhibit_bands:
if current_powers[band] > self.thresholds.get(band, float('inf')):
reward = False
feedback_message.append(f"{band} too high")
return {
'reward': reward,
'feedback': ' | '.join(feedback_message) if not reward else 'Good!',
'band_powers': current_powers,
'thresholds': self.thresholds
}
# Example: ADHD Theta/Beta Protocol Configuration
adhd_protocol_config = {
'sampling_rate': 500, # Hz
'epoch_length': 1.0, # seconds
'update_rate': 4, # feedback updates per second
'frequency_bands': {
'theta': (4, 8),
'beta': (13, 21),
'emg': (30, 50)
},
'reward_bands': ['beta'],
'inhibit_bands': ['theta', 'emg'],
'threshold_mode': 'percentile'
}
protocol = FrequencyBandTrainingProtocol(adhd_protocol_config)
Coherence training represents an advanced neurofeedback approach that targets the connectivity or communication between different brain regions rather than absolute activity levels at single sites. Coherence measures the degree of phase synchronization between EEG signals at two electrode sites—high coherence indicates the two regions are oscillating in lockstep, suggesting strong functional connectivity, while low coherence suggests independent activity.
Abnormal coherence patterns have been identified in various clinical conditions. ADHD often shows reduced frontal-central coherence, potentially reflecting poor communication between executive control regions and motor areas. Autism spectrum disorders show patterns of local hyperconnectivity but long-range underconnectivity. Depression may show reduced left hemisphere coherence. Training to normalize these connectivity patterns addresses fundamental network organization issues.
Implementing coherence training requires simultaneous recording from multiple electrode sites (at minimum two, but often more). Real-time coherence calculation determines the correlation between frequency-specific oscillations at the selected sites. Reward is provided when coherence values meet target criteria—enhancement protocols reward increased coherence, while reduction protocols reward decreased coherence. For example, training to increase SMR coherence between C3 and C4 might help integrate left and right motor planning areas.
| Electrode Pair | Frequency Band | Training Goal | Clinical Application |
|---|---|---|---|
| Fz-Cz | Beta (15-20 Hz) | Increase coherence | ADHD - strengthen frontal-motor connectivity |
| C3-C4 | SMR (12-15 Hz) | Increase coherence | Motor coordination, bilateral integration |
| F3-F4 | Alpha (8-12 Hz) | Balance coherence | Depression, emotional regulation |
| Fp1-O1 or Fp2-O2 | Alpha (8-12 Hz) | Decrease coherence | Autism - reduce excessive local connectivity |
| T3-T4 (T7-T8) | Theta (4-8 Hz) | Increase coherence | Memory enhancement, semantic processing |
Z-score neurofeedback represents a sophisticated QEEG-guided approach that trains multiple EEG features simultaneously toward normative database values. Rather than targeting specific frequencies at specific sites based on protocol templates, z-score training uses real-time comparison to age-matched norms to identify which features are dysregulated and provides integrated feedback to normalize all abnormal parameters simultaneously.
Z-scores express how many standard deviations a measured value differs from the normative mean. A z-score of 0 indicates the value matches the norm exactly, positive z-scores indicate above-normal values, and negative z-scores indicate below-normal values. Z-scores beyond ±2.0 are typically considered statistically significant deviations. In z-score neurofeedback, dozens or even hundreds of EEG features (power in frequency bands across all electrode sites, coherence between electrode pairs, phase relationships) are calculated and z-scored against normative databases.
The training algorithm rewards when the sum of squared z-scores decreases—essentially rewarding movement toward normality across all measured dimensions simultaneously. This approach has theoretical advantages: it addresses multiple dysregulations concurrently, automatically adapts to individual patterns without requiring manual protocol selection, and normalizes brain function globally rather than targeting isolated features. However, z-score training requires expensive normative databases, sophisticated real-time computation, and carefully validated normative data.
Effective neurofeedback training requires careful attention to session structure, pacing, difficulty calibration, and motivational elements. Simply providing technically correct feedback is insufficient—the training must engage attention, maintain optimal challenge levels, prevent fatigue, and foster learning. The WIA-MENTAL-009 standard establishes session structure guidelines based on learning principles and clinical experience.
A typical neurofeedback session follows this structure: (1) Preparation and setup (5-10 minutes): electrode application, impedance checking, baseline recording; (2) Initial baseline period (2-5 minutes): recording resting state activity with eyes open and closed to establish session-specific thresholds; (3) Active training (20-40 minutes): neurofeedback with rewards, typically divided into multiple runs with brief breaks; (4) Cool-down period (2-5 minutes): optional relaxation or integration period; (5) Post-session debriefing (5-10 minutes): discussing subjective experience, reviewing performance metrics, addressing questions.
Training duration must balance learning efficacy against fatigue and attention limits. Research suggests that learning plateaus after 30-45 minutes of active training, with diminishing returns for longer sessions. Children, particularly those with ADHD, may require shorter sessions (20-30 minutes) due to limited attention spans. Multiple short runs (5-10 minutes each) with brief breaks prevent fatigue and maintain engagement better than single continuous training periods.
Difficulty calibration—setting reward thresholds at appropriate levels—critically impacts learning rate and motivation. Thresholds set too low provide excessive rewards requiring minimal effort, reducing learning pressure. Thresholds set too high create frustration when rewards remain unattainable despite effort. Optimal difficulty provides reward rates of approximately 60-80% of time, creating achievable challenge. Most modern systems implement adaptive thresholds that automatically adjust based on recent performance, maintaining consistent difficulty as skills improve.
def optimize_session_structure(patient_profile):
"""
Generate optimized session structure based on patient characteristics
Implements WIA-MENTAL-009 session optimization guidelines
"""
age = patient_profile['age']
condition = patient_profile['primary_condition']
attention_span = patient_profile['attention_span_minutes']
session_number = patient_profile['current_session']
# Determine total active training duration
if age < 8:
base_training = 15
elif age < 12:
base_training = 20
elif age < 16:
base_training = 30
else:
base_training = 40
# Adjust for attention capacity
training_duration = min(base_training, attention_span + 5)
# Determine number of training runs
# Shorter runs for younger patients and those with attention issues
if condition == 'ADHD' or age < 12:
run_length = 5 # 5-minute runs
else:
run_length = 10 # 10-minute runs
num_runs = int(training_duration / run_length)
# Determine reward threshold percentile
# Start easier (70th percentile) for initial sessions
# Progress to standard (60th percentile) after 5 sessions
if session_number < 5:
reward_threshold = 70
else:
reward_threshold = 60
session_plan = {
'setup_time': 8,
'baseline_eyes_open': 2,
'baseline_eyes_closed': 2,
'training_runs': [
{
'run_number': i+1,
'duration': run_length,
'reward_threshold_percentile': reward_threshold,
'break_after': 2 if i < num_runs-1 else 0
}
for i in range(num_runs)
],
'cooldown': 3,
'debrief': 7,
'total_session_time': 8 + 4 + (num_runs * run_length) + ((num_runs-1) * 2) + 3 + 7
}
return session_plan
# Example usage
patient = {
'age': 10,
'primary_condition': 'ADHD',
'attention_span_minutes': 18,
'current_session': 3
}
plan = optimize_session_structure(patient)
print(f"Session plan: {plan['training_runs']} runs")
print(f"Total session time: {plan['total_session_time']} minutes")
Advances in portable EEG technology and telemedicine platforms have enabled home-based neurofeedback training, potentially improving accessibility and reducing costs compared to clinic-based services. Home training allows increased session frequency, eliminates travel burden, and provides training in the natural environment where skills will be applied. However, home-based neurofeedback raises important considerations regarding quality assurance, technical support, clinical supervision, and patient selection.
The WIA-MENTAL-009 standard establishes requirements for home-based neurofeedback systems including: validated EEG hardware with documented specifications, automated data quality monitoring with alerts for impedance issues or artifacts, secure data transmission to supervising clinicians, remote monitoring capabilities, clear protocols for technical troubleshooting, and regular clinical check-ins (video consultations) with supervising practitioners at intervals of no more than 5 sessions.
Patient selection for home training should emphasize individuals and families with adequate technical competence, reliable home internet connectivity, motivation for independent training, and clinical presentations appropriate for reduced supervision. Home neurofeedback may be less suitable for complex cases requiring frequent protocol adjustments, patients with comorbid conditions requiring close monitoring, young children requiring adult supervision throughout sessions, or individuals lacking the organizational skills for consistent self-directed training.
Benefit All Humanity
Customizing neurofeedback protocols to individual neurophysiology and needs reflects respect for human diversity—recognizing that optimal brain function manifests uniquely in each person.
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.