Depression among adolescents has reached epidemic proportions, with rates doubling over the past decade. Unlike adult depression, adolescent depression often presents with unique features including irritability, somatic complaints, and behavioral problems rather than the classic presentation of persistent sadness. Understanding these developmental differences is crucial for accurate identification and effective treatment.
Major Depressive Disorder in adolescents is characterized by persistent depressed or irritable mood, loss of interest in activities, and significant impairment in functioning. The adolescent brain's heightened sensitivity to social experiences makes peer rejection, bullying, and social isolation particularly potent triggers for depressive episodes.
| Symptom Category | Adult Presentation | Adolescent Presentation | Assessment Considerations |
|---|---|---|---|
| Mood Changes | Persistent sadness | Irritability, mood swings, anger outbursts | Ask about mood variability and triggers |
| Behavioral Signs | Social withdrawal | Oppositional behavior, school refusal, risk-taking | Gather information from multiple sources |
| Physical Symptoms | Sleep and appetite changes | Headaches, stomachaches, fatigue | Rule out medical causes, assess patterns |
| Cognitive Symptoms | Negative self-talk | Academic decline, concentration problems | Monitor school performance, executive function |
| Social Impact | Reduced social contact | Peer conflict, social media withdrawal | Assess online and offline social functioning |
Persistent Depressive Disorder involves chronic, lower-grade depressive symptoms lasting at least one year in adolescents. While less severe than major depression, the chronicity of symptoms can significantly impact development, identity formation, and life trajectory. Many adolescents with dysthymia develop "double depression" when major depressive episodes occur on top of chronic symptoms.
Depression in adolescence rarely occurs in isolation. Common comorbidities include anxiety disorders (50-70%), ADHD (20-30%), substance use disorders (20-30%), and eating disorders (10-20%). The presence of multiple conditions complicates treatment and worsens outcomes, necessitating comprehensive assessment and integrated intervention approaches.
Depression is the strongest predictor of suicidal ideation and behavior in adolescents. All depressed youth should be screened for suicidal thoughts using direct, age-appropriate questions. Risk factors include: previous suicide attempts, family history of suicide, access to lethal means, substance use, recent losses or stressors, LGBTQ+ identity without support, and social isolation. Implement safety planning for all at-risk youth.
// Depression Screening and Monitoring System
// Implements PHQ-9 adapted for adolescents with digital tracking
interface DepressionScreening {
patientId: string;
date: Date;
phq9Score: number;
suicidalIdeation: boolean;
functionalImpairment: 'none' | 'mild' | 'moderate' | 'severe';
symptoms: DepressiveSymptom[];
}
interface DepressiveSymptom {
symptom: string;
frequency: 'not_at_all' | 'several_days' | 'more_than_half' | 'nearly_every_day';
score: 0 | 1 | 2 | 3;
}
class AdolescentDepressionMonitor {
private screenings: DepressionScreening[] = [];
private readonly SEVERE_THRESHOLD = 15;
private readonly MODERATE_THRESHOLD = 10;
private readonly MILD_THRESHOLD = 5;
addScreening(screening: DepressionScreening): AlertLevel {
this.screenings.push(screening);
return this.assessSeverityAndRisk(screening);
}
assessSeverityAndRisk(screening: DepressionScreening): AlertLevel {
// Immediate crisis protocol for suicidal ideation
if (screening.suicidalIdeation) {
return {
level: 'CRITICAL',
action: 'IMMEDIATE_INTERVENTION',
recommendations: [
'Implement suicide safety protocol',
'Contact emergency services if immediate risk',
'Notify parent/guardian',
'Schedule urgent psychiatric evaluation',
'Remove access to lethal means'
]
};
}
// Assess depression severity
if (screening.phq9Score >= this.SEVERE_THRESHOLD) {
return {
level: 'HIGH',
action: 'URGENT_REFERRAL',
recommendations: [
'Refer for psychiatric evaluation within 48 hours',
'Consider medication evaluation',
'Initiate evidence-based psychotherapy',
'Assess need for intensive services',
'Implement weekly monitoring'
]
};
} else if (screening.phq9Score >= this.MODERATE_THRESHOLD) {
return {
level: 'MODERATE',
action: 'CLINICAL_REFERRAL',
recommendations: [
'Refer for mental health services within 1-2 weeks',
'Initiate psychotherapy (CBT or IPT)',
'Psychoeducation for youth and family',
'Monitor bi-weekly',
'Consider school accommodations'
]
};
} else if (screening.phq9Score >= this.MILD_THRESHOLD) {
return {
level: 'LOW',
action: 'WATCHFUL_MONITORING',
recommendations: [
'Supportive counseling',
'Lifestyle interventions (exercise, sleep, social)',
'Digital mental health resources',
'Re-screen in 2-4 weeks',
'Connect with school counselor'
]
};
}
return {
level: 'MINIMAL',
action: 'PREVENTION',
recommendations: [
'Maintain wellness activities',
'Annual mental health screening',
'Promote protective factors',
'Provide psychoeducation resources'
]
};
}
trackSymptomTrends(patientId: string, weeks: number = 12): TrendAnalysis {
const recentScreenings = this.screenings
.filter(s => s.patientId === patientId)
.slice(-weeks);
if (recentScreenings.length < 2) {
return { trend: 'INSUFFICIENT_DATA', changeScore: 0 };
}
const scores = recentScreenings.map(s => s.phq9Score);
const initialScore = scores[0];
const currentScore = scores[scores.length - 1];
const changeScore = currentScore - initialScore;
const percentChange = (changeScore / initialScore) * 100;
let trend: 'IMPROVING' | 'STABLE' | 'WORSENING' | 'INSUFFICIENT_DATA';
if (percentChange <= -30) {
trend = 'IMPROVING';
} else if (percentChange >= 30) {
trend = 'WORSENING';
} else {
trend = 'STABLE';
}
return {
trend,
changeScore,
percentChange,
treatmentResponse: this.assessTreatmentResponse(recentScreenings)
};
}
private assessTreatmentResponse(screenings: DepressionScreening[]): string {
if (screenings.length < 4) return 'Too early to assess';
const scores = screenings.map(s => s.phq9Score);
const initialScore = scores[0];
const weekFourScore = scores[3];
const reduction = ((initialScore - weekFourScore) / initialScore) * 100;
if (reduction >= 50) return 'Excellent response';
if (reduction >= 25) return 'Adequate response';
if (reduction > 0) return 'Minimal response - consider treatment adjustment';
return 'No response - reassess diagnosis and treatment plan';
}
generateClinicalReport(patientId: string): ClinicalReport {
const patientScreenings = this.screenings.filter(s => s.patientId === patientId);
const currentScreening = patientScreenings[patientScreenings.length - 1];
const trends = this.trackSymptomTrends(patientId);
return {
currentSeverity: this.getSeverityLevel(currentScreening.phq9Score),
currentScore: currentScreening.phq9Score,
trendAnalysis: trends,
riskFactors: this.identifyRiskFactors(currentScreening),
recommendations: this.assessSeverityAndRisk(currentScreening).recommendations,
nextScreeningDate: this.calculateNextScreening(currentScreening)
};
}
private getSeverityLevel(score: number): string {
if (score >= 20) return 'Severe';
if (score >= 15) return 'Moderately Severe';
if (score >= 10) return 'Moderate';
if (score >= 5) return 'Mild';
return 'Minimal';
}
private identifyRiskFactors(screening: DepressionScreening): string[] {
const risks: string[] = [];
if (screening.suicidalIdeation) risks.push('Active suicidal ideation');
if (screening.functionalImpairment === 'severe') risks.push('Severe functional impairment');
if (screening.phq9Score >= 15) risks.push('Severe depression symptoms');
return risks;
}
private calculateNextScreening(screening: DepressionScreening): Date {
const nextDate = new Date(screening.date);
if (screening.suicidalIdeation) {
nextDate.setDate(nextDate.getDate() + 1); // Daily for crisis
} else if (screening.phq9Score >= 15) {
nextDate.setDate(nextDate.getDate() + 7); // Weekly for severe
} else if (screening.phq9Score >= 10) {
nextDate.setDate(nextDate.getDate() + 14); // Bi-weekly for moderate
} else {
nextDate.setDate(nextDate.getDate() + 30); // Monthly for mild
}
return nextDate;
}
}
// Usage Example
const monitor = new AdolescentDepressionMonitor();
const screening: DepressionScreening = {
patientId: 'YOUTH-12345',
date: new Date(),
phq9Score: 14,
suicidalIdeation: false,
functionalImpairment: 'moderate',
symptoms: [
{ symptom: 'Little interest or pleasure', frequency: 'more_than_half', score: 2 },
{ symptom: 'Feeling down', frequency: 'nearly_every_day', score: 3 },
{ symptom: 'Sleep problems', frequency: 'more_than_half', score: 2 },
{ symptom: 'Feeling tired', frequency: 'nearly_every_day', score: 3 },
{ symptom: 'Poor appetite', frequency: 'several_days', score: 1 },
{ symptom: 'Feeling bad about self', frequency: 'more_than_half', score: 2 },
{ symptom: 'Concentration problems', frequency: 'several_days', score: 1 },
{ symptom: 'Moving/speaking slowly', frequency: 'not_at_all', score: 0 },
{ symptom: 'Suicidal thoughts', frequency: 'not_at_all', score: 0 }
]
};
const alert = monitor.addScreening(screening);
console.log('Alert Level:', alert.level);
console.log('Recommended Actions:', alert.recommendations);
Anxiety disorders are the most prevalent mental health conditions among adolescents, affecting nearly one-third of youth. While some anxiety is a normal part of development, pathological anxiety interferes with daily functioning, social relationships, and academic performance. Early identification and intervention can prevent chronic anxiety patterns and associated complications.
GAD in adolescents involves excessive, difficult-to-control worry about multiple domains (school, relationships, health, future) occurring more days than not for at least six months. Adolescents with GAD often present as perfectionistic, seeking reassurance frequently, and exhibiting somatic complaints like headaches and stomachaches.
Social anxiety disorder is particularly common and impairing during adolescence, a developmental period when peer relationships become central. Affected youth experience intense fear of social situations, excessive worry about negative evaluation, and often avoid social interactions. Social media has introduced new dimensions to social anxiety, with concerns about online presentation and cyberbullying.
Panic disorder typically emerges in mid-to-late adolescence and involves recurrent unexpected panic attacks followed by persistent worry about future attacks. Specific phobias (school phobia, separation anxiety) may persist from childhood or emerge during adolescence, often triggered by traumatic experiences or life transitions.
| Anxiety Disorder | Core Features | Typical Age of Onset | First-Line Treatment | Special Considerations |
|---|---|---|---|---|
| Generalized Anxiety | Excessive worry, restlessness, fatigue | 12-14 years | CBT + possible SSRI | High comorbidity with depression |
| Social Anxiety | Fear of social evaluation, avoidance | 13-15 years | CBT with exposure therapy | Address social media factors |
| Panic Disorder | Recurrent panic attacks, worry about attacks | 15-17 years | CBT + interoceptive exposure | Rule out medical causes |
| Separation Anxiety | Excessive distress when separated from attachment figures | Can persist from childhood | Family-based CBT | May present as school refusal |
| Specific Phobia | Intense fear of specific object/situation | Variable, often childhood | Exposure therapy | Often multiple phobias present |
Anxiety disorders significantly impact adolescent development across multiple domains. Academic functioning suffers through test anxiety, school avoidance, and difficulty concentrating. Social development is impaired as anxious youth withdraw from peer interactions, miss developmental opportunities, and struggle with identity formation. Physical health is affected through chronic stress responses, sleep disturbances, and stress-related medical conditions.
ADHD affects approximately 8-10% of adolescents and often becomes more apparent during adolescence when academic and organizational demands increase. While typically diagnosed in childhood, many cases are identified during adolescence, particularly the inattentive presentation. ADHD significantly impacts academic achievement, peer relationships, family functioning, and self-esteem.
ADHD symptoms evolve with development. Hyperactivity may decrease while inattention and executive function deficits become more prominent. Adolescents with ADHD struggle with time management, organization, planning, and sustained attention. These difficulties become especially problematic as academic expectations increase and independence is expected.
ADHD rarely occurs in isolation during adolescence. Common comorbidities include oppositional defiant disorder (50%), learning disabilities (30-50%), anxiety disorders (25-35%), and depression (15-20%). Adolescents with ADHD are at elevated risk for substance use, accidents, academic failure, and involvement with the justice system.
ADHD has historically been underdiagnosed in girls, who more commonly present with the inattentive type. Girls with ADHD may internalize symptoms, leading to anxiety and depression rather than externalizing behaviors. They often develop compensatory strategies that mask difficulties until the increased demands of adolescence overwhelm these coping mechanisms.
Eating disorders typically emerge during adolescence, with peak onset between ages 12-18. These serious mental health conditions have the highest mortality rate of any psychiatric disorder and require specialized, intensive treatment. Social media, cultural pressures, and developmental factors converge to create particular vulnerability during adolescence.
Anorexia nervosa involves restriction of food intake leading to significantly low body weight, intense fear of weight gain, and disturbance in body image. Adolescent anorexia can severely impact physical development, including growth, pubertal development, and bone density. Early intervention is critical to prevent chronic course and medical complications.
Bulimia nervosa involves recurrent binge eating followed by compensatory behaviors (purging, excessive exercise, fasting). Binge eating disorder involves recurrent binges without compensatory behaviors. Both conditions are associated with significant physical and psychological comorbidities, including depression, anxiety, and substance use.
Social media exposure significantly impacts adolescent body image and eating behaviors. Image-focused platforms, exposure to idealized bodies, appearance comparisons, and pro-eating disorder content all contribute to body dissatisfaction and disordered eating. Addressing digital literacy and healthy social media use is increasingly important in eating disorder prevention and treatment.
| Disorder | Key Behaviors | Medical Complications | Treatment Approach |
|---|---|---|---|
| Anorexia Nervosa | Food restriction, excessive exercise, body checking | Bradycardia, osteoporosis, amenorrhea, organ damage | FBT, nutritional rehabilitation, medical monitoring |
| Bulimia Nervosa | Binge eating, purging, laxative use | Electrolyte imbalance, dental erosion, cardiac issues | CBT-E, FBT, nutritional counseling |
| Binge Eating Disorder | Recurrent binges, loss of control, eating in secret | Obesity, metabolic syndrome, GI problems | CBT, IPT, dialectical behavior therapy |
| ARFID | Avoidant/restrictive eating, sensory issues | Malnutrition, growth impairment, deficiencies | Exposure therapy, family-based treatment |
Adolescence is the peak period for initiation of substance use, with most adult addiction beginning during the teenage years. The adolescent brain's heightened reward sensitivity and underdeveloped impulse control create particular vulnerability to addiction. Early substance use significantly increases risk for addiction, mental health problems, and adverse life outcomes.
Alcohol remains the most commonly used substance among adolescents, followed by marijuana, vaping/e-cigarettes, and prescription medications (particularly stimulants and opioids). New concerns include synthetic cannabinoids, designer drugs, and the rise of high-potency marijuana products. Polysubstance use is increasingly common.
Risk factors for adolescent substance use include early initiation, family history of addiction, mental health disorders, peer substance use, trauma history, and poor parental monitoring. Protective factors include strong parent-child relationships, school connectedness, involvement in structured activities, and clear family rules about substance use.
Universal screening for substance use should be integrated into adolescent healthcare using validated tools like the CRAFFT. Brief interventions, motivational interviewing, and family-based treatments show effectiveness for adolescent substance use. For those with substance use disorders, specialized adolescent treatment programs offering developmentally appropriate care achieve best outcomes.
Understanding the diverse mental health challenges faced by adolescents is the first step toward providing compassionate, effective support. Each young person's struggle deserves recognition, validation, and evidence-based intervention. By increasing awareness of how mental health conditions manifest during adolescence, we can improve early identification, reduce treatment delays, and prevent suffering. Our commitment to 弘益人間 - benefiting all humanity - compels us to ensure that every adolescent, regardless of their specific challenges, receives the understanding and support they need to thrive.
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.