---
code: "SCH-03"
id: "c-sch-3layer"
tab: "schemas"
kind: "schema"
title: "3단 계층 · Top-Down"
library: "SVG"
deps: ["svg"]
load: "low"
pasteKind: "schema-svg"
family: "layer"
dataShape: "3-cell diagram with 위↓아래 axis"
tasks: ["structure ideas", "explain process", "choose communication frame"]
tags: ["layer", "위↓아래", "3cells", "계층", "top-down", "캐스케이드", "OKR"]
gallery: "https://graph.heal7.com/#SCH-03"
js: "/sku/SCH-03.js"
---

# [SCH-03] 3단 계층 · Top-Down

> AI 붙여넣기 카드. 갤러리 런타임(`main.js`)이 아니라 이 파일을 가져와라.

## 언제 가져가나
추상에서 구체로 단계적 분해 — 위→아래 시선이 점점 실행 가능한 형태로 좁혀지는 인지 구조.

**응용** 전략 캐스케이드, OKR 정렬, 조직 위계.

## 데이터 모양
- family: `layer`
- dataShape: 3-cell diagram with 위↓아래 axis
- tasks: structure ideas, explain process, choose communication frame
- tags: layer, 위↓아래, 3cells, 계층, top-down, 캐스케이드, OKR

- schema.type: `layer`
- schema.cells: `3`
- schema.axis: `위↓아래`


## 의존
svg · load `low` · library `SVG`

## 붙여넣는 법
1. 라이브러리 없음. svg viewBox 0 0 400 240
2. 아래 body 를 svg 안에 넣는다
3. 색 변수(`${gold}` 등)는 T 토큰으로 치환한다

```js
const T = {
  "bg": "transparent",
  "fg": "#ece8f5",
  "sub": "#a59bbd",
  "grid": "rgba(255,255,255,.08)",
  "gold": "#e8c069",
  "royal": "#6b8cff",
  "rose": "#e07a9f",
  "teal": "#6dd2c4",
  "plum": "#b487e8"
};
const gold = T.gold, royal = T.royal, rose = T.rose, teal = T.teal, plum = T.plum, fg = T.fg, sub = T.sub;
const stroke = 'rgba(255,255,255,.18)';
const fill1 = 'rgba(232,192,105,.10)';
const fill2 = 'rgba(107,140,255,.10)';
const host = document.querySelector('#chart');
const body = `
    ${[0,1,2].map(i=>{
      const y = 28 + i*60, c=[gold,royal,rose][i];
      const lab = ['Vision','Strategy','Execution'][i];
      const desc = ['장기 목표','3년 로드맵','분기 액션'][i];
      return `<rect x="40" y="${y}" width="320" height="50" rx="8" fill="${fill1}" stroke="${c}" stroke-width="1.5"/>
              <text x="60" y="${y+22}" fill="${fg}" font-size="14" font-weight="700">${lab}</text>
              <text x="60" y="${y+40}" fill="${sub}" font-size="10">${desc}</text>`;
    }).join('')}
    <path d="M 200 80 L 200 95 M 196 91 L 200 95 L 204 91" fill="none" stroke="${stroke}" stroke-width="1.5"/>
    <path d="M 200 140 L 200 155 M 196 151 L 200 155 L 204 151" fill="none" stroke="${stroke}" stroke-width="1.5"/>
    <text x="200" y="225" text-anchor="middle" fill="${sub}" font-size="11">↓ 위→아래 단계적 구체화</text>
  `;
host.innerHTML = '<svg viewBox="0 0 400 240" width="100%" height="100%" preserveAspectRatio="xMidYMid meet" style="overflow:visible">' + (typeof body === 'string' ? body : '') + '</svg>';
```

## 원본 factory (갤러리 정본 발췌)
- file: `frontend/js/graph-gallery/main.js`
- lines: 3911-4470
- gallery: https://graph.heal7.com/#SCH-03
- raw js: https://graph.heal7.com/sku/SCH-03.js

```js
`
    ${[0,1,2].map(i=>{
      const y = 28 + i*60, c=[gold,royal,rose][i];
      const lab = ['Vision','Strategy','Execution'][i];
      const desc = ['장기 목표','3년 로드맵','분기 액션'][i];
      return `<rect x="40" y="${y}" width="320" height="50" rx="8" fill="${fill1}" stroke="${c}" stroke-width="1.5"/>
              <text x="60" y="${y+22}" fill="${fg}" font-size="14" font-weight="700">${lab}</text>
              <text x="60" y="${y+40}" fill="${sub}" font-size="10">${desc}</text>`;
    }).join('')}
    <path d="M 200 80 L 200 95 M 196 91 L 200 95 L 204 91" fill="none" stroke="${stroke}" stroke-width="1.5"/>
    <path d="M 200 140 L 200 155 M 196 151 L 200 155 L 204 151" fill="none" stroke="${stroke}" stroke-width="1.5"/>
    <text x="200" y="225" text-anchor="middle" fill="${sub}" font-size="11">↓ 위→아래 단계적 구체화</text>
  `
```

## 시나리오
- Vision-Mission-Action — 전략 캐스케이드
- OKR 정렬 — 회사 → 팀 → 개인
- 조직 위계 — 임원 → 매니저 → 실무
- 학습 커리큘럼 — 개념 → 원리 → 실습

## 관련 SKU
`c-sch-pyramid`, `c-sch-onion`

