@soddong/agentic-domain-artifact-standard 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tbls.yml +54 -0
- package/CHANGELOG.md +94 -0
- package/README.md +386 -0
- package/dist/database.d.ts +8 -0
- package/dist/database.d.ts.map +1 -0
- package/dist/database.js +76 -0
- package/dist/database.js.map +1 -0
- package/dist/fixtures.d.ts +11 -0
- package/dist/fixtures.d.ts.map +1 -0
- package/dist/fixtures.js +537 -0
- package/dist/fixtures.js.map +1 -0
- package/dist/index.d.ts +72 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +213 -0
- package/dist/index.js.map +1 -0
- package/dist/repositories.d.ts +46 -0
- package/dist/repositories.d.ts.map +1 -0
- package/dist/repositories.js +730 -0
- package/dist/repositories.js.map +1 -0
- package/dist/seed-apply.d.ts +20 -0
- package/dist/seed-apply.d.ts.map +1 -0
- package/dist/seed-apply.js +198 -0
- package/dist/seed-apply.js.map +1 -0
- package/dist/service.d.ts +40 -0
- package/dist/service.d.ts.map +1 -0
- package/dist/service.js +105 -0
- package/dist/service.js.map +1 -0
- package/dist/types.d.ts +499 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/docs/build.md +27 -0
- package/docs/configuration.md +5 -0
- package/docs/delivery.md +26 -0
- package/docs/operations.md +28 -0
- package/docs/publishing.md +43 -0
- package/docs/schema/generated/README.md +38 -0
- package/docs/schema/generated/artifact_standard_blueprint_nodes.md +137 -0
- package/docs/schema/generated/artifact_standard_blueprint_nodes.svg +88 -0
- package/docs/schema/generated/artifact_standard_code_groups.md +70 -0
- package/docs/schema/generated/artifact_standard_code_groups.svg +49 -0
- package/docs/schema/generated/artifact_standard_codes.md +88 -0
- package/docs/schema/generated/artifact_standard_codes.svg +49 -0
- package/docs/schema/generated/artifact_standard_component_bindings.md +118 -0
- package/docs/schema/generated/artifact_standard_component_bindings.svg +73 -0
- package/docs/schema/generated/artifact_standard_components.md +114 -0
- package/docs/schema/generated/artifact_standard_components.svg +73 -0
- package/docs/schema/generated/artifact_standard_diagram_policies.md +99 -0
- package/docs/schema/generated/artifact_standard_diagram_policies.svg +49 -0
- package/docs/schema/generated/artifact_standard_document_blueprints.md +101 -0
- package/docs/schema/generated/artifact_standard_document_blueprints.svg +128 -0
- package/docs/schema/generated/artifact_standard_document_component_relations.md +118 -0
- package/docs/schema/generated/artifact_standard_document_component_relations.svg +87 -0
- package/docs/schema/generated/artifact_standard_document_components.md +148 -0
- package/docs/schema/generated/artifact_standard_document_components.svg +139 -0
- package/docs/schema/generated/artifact_standard_figure_policies.md +99 -0
- package/docs/schema/generated/artifact_standard_figure_policies.svg +49 -0
- package/docs/schema/generated/artifact_standard_generated_output_links.md +144 -0
- package/docs/schema/generated/artifact_standard_generated_output_links.svg +57 -0
- package/docs/schema/generated/artifact_standard_physical_structure_policies.md +124 -0
- package/docs/schema/generated/artifact_standard_physical_structure_policies.svg +78 -0
- package/docs/schema/generated/artifact_standard_schema_migrations.md +52 -0
- package/docs/schema/generated/artifact_standard_schema_migrations.svg +27 -0
- package/docs/schema/generated/artifact_standard_source_mappings.md +120 -0
- package/docs/schema/generated/artifact_standard_source_mappings.svg +49 -0
- package/docs/schema/generated/artifact_standard_standards.md +102 -0
- package/docs/schema/generated/artifact_standard_standards.svg +313 -0
- package/docs/schema/generated/artifact_standard_table_column_schemas.md +147 -0
- package/docs/schema/generated/artifact_standard_table_column_schemas.svg +52 -0
- package/docs/schema/generated/artifact_standard_table_schemas.md +99 -0
- package/docs/schema/generated/artifact_standard_table_schemas.svg +71 -0
- package/docs/schema/generated/artifact_standard_template_slots.md +143 -0
- package/docs/schema/generated/artifact_standard_template_slots.svg +88 -0
- package/docs/schema/generated/artifact_standard_validation_rule_set_rules.md +128 -0
- package/docs/schema/generated/artifact_standard_validation_rule_set_rules.svg +52 -0
- package/docs/schema/generated/artifact_standard_validation_rule_sets.md +91 -0
- package/docs/schema/generated/artifact_standard_validation_rule_sets.svg +71 -0
- package/docs/schema/generated/schema.json +4230 -0
- package/docs/schema/generated/schema.mmd +327 -0
- package/docs/schema/generated/schema.svg +510 -0
- package/docs/usage.md +197 -0
- package/package.json +30 -0
- package/src/database/migrations/0001_artifact_standard_base.sql +1295 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Publishing
|
|
2
|
+
|
|
3
|
+
패키지 내부에는 특정 registry URL을 고정하지 않는다.
|
|
4
|
+
|
|
5
|
+
공식 publish/install registry는 `https://registry.npmjs.org/`를 사용한다. consumer/build 환경의 `.npmrc`에는 npmjs 인증 정보를 제공한다.
|
|
6
|
+
|
|
7
|
+
검증 명령:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm run schema:doc:agentic-domain-artifact-standard
|
|
11
|
+
npm run build --workspace @soddong/agentic-domain-artifact-standard
|
|
12
|
+
npm run typecheck --workspace @soddong/agentic-domain-artifact-standard
|
|
13
|
+
npm run dev:test:agentic-domain-artifact-standard
|
|
14
|
+
npm run dev:test:artifact-standard-validation-integration
|
|
15
|
+
npm run dev:test:document-artifact-standard-integration
|
|
16
|
+
npm run dev:test:artifact-methodology-standard-document-integration
|
|
17
|
+
npm run consistency:check
|
|
18
|
+
npm pack --workspace @soddong/agentic-domain-artifact-standard --dry-run --cache /private/tmp/agentic-npm-cache
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Publish:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm publish --workspace @soddong/agentic-domain-artifact-standard --registry=https://registry.npmjs.org/
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Publish 검증:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm view @soddong/agentic-domain-artifact-standard version --registry=https://registry.npmjs.org/ --prefer-online
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Consumer 검증은 공식 npm registry에서 publish된 버전을 설치한 뒤 다음을 확인한다.
|
|
34
|
+
|
|
35
|
+
```text
|
|
36
|
+
- getArtifactStandardInfo().version
|
|
37
|
+
- artifactStandardCode 기반 API
|
|
38
|
+
- legacy alias 호환 API
|
|
39
|
+
- Business Process Definition fixture
|
|
40
|
+
- Information Object Definition fixture
|
|
41
|
+
- aggregate 기반 DocumentImportProfile 생성
|
|
42
|
+
- validation provider manifest export
|
|
43
|
+
```
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# agentic-domain-artifact-standard
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
Agentic Platform artifact standard domain database.
|
|
6
|
+
|
|
7
|
+
## Tables
|
|
8
|
+
|
|
9
|
+
| Name | Columns | Comment | Type |
|
|
10
|
+
| --------------------------------------------------------------------------------------------------- | ------- | ----------------------------------------------------------------------------------- | ----- |
|
|
11
|
+
| [artifact_standard_schema_migrations](artifact_standard_schema_migrations.md) | 3 | artifact-standard 패키지의 migration 적용 이력을 관리한다. | table |
|
|
12
|
+
| [artifact_standard_code_groups](artifact_standard_code_groups.md) | 7 | 코드 그룹을 정의한다. | table |
|
|
13
|
+
| [artifact_standard_codes](artifact_standard_codes.md) | 9 | 코드 그룹별 코드 값을 정의한다. | table |
|
|
14
|
+
| [artifact_standard_standards](artifact_standard_standards.md) | 13 | 산출물 표준의 최상위 versioned definition을 관리한다. | table |
|
|
15
|
+
| [artifact_standard_components](artifact_standard_components.md) | 14 | 산출물 표준을 구성하는 개념, 서식, 가이드, 예시, LLM 보충 지침 resource를 관리한다. | table |
|
|
16
|
+
| [artifact_standard_component_bindings](artifact_standard_component_bindings.md) | 13 | | table |
|
|
17
|
+
| [artifact_standard_document_blueprints](artifact_standard_document_blueprints.md) | 11 | 산출물 문서 구조 기준을 관리한다. | table |
|
|
18
|
+
| [artifact_standard_blueprint_nodes](artifact_standard_blueprint_nodes.md) | 17 | | table |
|
|
19
|
+
| [artifact_standard_template_slots](artifact_standard_template_slots.md) | 17 | blueprint 내 section, table, figure, diagram 등이 들어갈 slot을 관리한다. | table |
|
|
20
|
+
| [artifact_standard_document_components](artifact_standard_document_components.md) | 17 | | table |
|
|
21
|
+
| [artifact_standard_document_component_relations](artifact_standard_document_component_relations.md) | 11 | | table |
|
|
22
|
+
| [artifact_standard_physical_structure_policies](artifact_standard_physical_structure_policies.md) | 14 | | table |
|
|
23
|
+
| [artifact_standard_table_schemas](artifact_standard_table_schemas.md) | 10 | 산출물 표 단위 schema를 관리한다. | table |
|
|
24
|
+
| [artifact_standard_table_column_schemas](artifact_standard_table_column_schemas.md) | 21 | 산출물 표의 column 단위 schema를 관리한다. | table |
|
|
25
|
+
| [artifact_standard_figure_policies](artifact_standard_figure_policies.md) | 10 | figure 작성/표현 policy를 관리한다. | table |
|
|
26
|
+
| [artifact_standard_diagram_policies](artifact_standard_diagram_policies.md) | 10 | diagram 작성/표현 policy를 관리한다. | table |
|
|
27
|
+
| [artifact_standard_validation_rule_sets](artifact_standard_validation_rule_sets.md) | 9 | 산출물 표준에 적용할 validation rule set을 관리한다. | table |
|
|
28
|
+
| [artifact_standard_validation_rule_set_rules](artifact_standard_validation_rule_set_rules.md) | 17 | validation rule set에 포함된 contract-compatible rule을 관리한다. | table |
|
|
29
|
+
| [artifact_standard_generated_output_links](artifact_standard_generated_output_links.md) | 17 | | table |
|
|
30
|
+
| [artifact_standard_source_mappings](artifact_standard_source_mappings.md) | 17 | 설계 근거 및 후속 이행 후보 source mapping을 관리한다. | table |
|
|
31
|
+
|
|
32
|
+
## Relations
|
|
33
|
+
|
|
34
|
+

|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
> Generated by [tbls](https://github.com/k1LoW/tbls)
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# artifact_standard_blueprint_nodes
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
<details>
|
|
6
|
+
<summary><strong>Table Definition</strong></summary>
|
|
7
|
+
|
|
8
|
+
```sql
|
|
9
|
+
CREATE TABLE artifact_standard_blueprint_nodes (
|
|
10
|
+
-- blueprint node 식별자
|
|
11
|
+
blueprint_node_id CHAR(36) PRIMARY KEY
|
|
12
|
+
CHECK (length(blueprint_node_id) = 36),
|
|
13
|
+
|
|
14
|
+
-- 소속 blueprint 식별자
|
|
15
|
+
blueprint_id CHAR(36) NOT NULL
|
|
16
|
+
CHECK (length(blueprint_id) = 36),
|
|
17
|
+
|
|
18
|
+
-- 부모 blueprint node 식별자
|
|
19
|
+
parent_blueprint_node_id CHAR(36)
|
|
20
|
+
CHECK (parent_blueprint_node_id IS NULL OR length(parent_blueprint_node_id) = 36),
|
|
21
|
+
|
|
22
|
+
-- node 코드
|
|
23
|
+
node_code VARCHAR(128) NOT NULL,
|
|
24
|
+
|
|
25
|
+
-- node 제목
|
|
26
|
+
node_title VARCHAR(256) NOT NULL,
|
|
27
|
+
|
|
28
|
+
-- node 유형 코드
|
|
29
|
+
node_type_code VARCHAR(64) NOT NULL DEFAULT 'BODY',
|
|
30
|
+
|
|
31
|
+
-- node level. ToC level 또는 논리 section level로 사용한다.
|
|
32
|
+
node_level INTEGER NOT NULL DEFAULT 1
|
|
33
|
+
CHECK (node_level >= 1),
|
|
34
|
+
|
|
35
|
+
-- 목차 표시 여부
|
|
36
|
+
toc_visible INTEGER NOT NULL DEFAULT 1
|
|
37
|
+
CHECK (toc_visible IN (0, 1)),
|
|
38
|
+
|
|
39
|
+
-- 필수 여부
|
|
40
|
+
is_required INTEGER NOT NULL DEFAULT 1
|
|
41
|
+
CHECK (is_required IN (0, 1)),
|
|
42
|
+
|
|
43
|
+
-- 반복 가능 여부
|
|
44
|
+
is_repeatable INTEGER NOT NULL DEFAULT 0
|
|
45
|
+
CHECK (is_repeatable IN (0, 1)),
|
|
46
|
+
|
|
47
|
+
-- 반복 context 코드
|
|
48
|
+
repeat_context_code VARCHAR(128),
|
|
49
|
+
|
|
50
|
+
-- document taxonomy 또는 node type 참조
|
|
51
|
+
taxonomy_ref VARCHAR(256),
|
|
52
|
+
|
|
53
|
+
-- 설명
|
|
54
|
+
description TEXT,
|
|
55
|
+
|
|
56
|
+
-- 표시 정렬 순서
|
|
57
|
+
sort_order INTEGER NOT NULL DEFAULT 0,
|
|
58
|
+
|
|
59
|
+
-- 생성 시각
|
|
60
|
+
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
61
|
+
|
|
62
|
+
-- 수정 시각
|
|
63
|
+
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
64
|
+
|
|
65
|
+
-- 확장 메타데이터
|
|
66
|
+
metadata_json JSON
|
|
67
|
+
CHECK (metadata_json IS NULL OR json_valid(metadata_json)),
|
|
68
|
+
|
|
69
|
+
FOREIGN KEY (blueprint_id)
|
|
70
|
+
REFERENCES artifact_standard_document_blueprints (blueprint_id)
|
|
71
|
+
ON DELETE CASCADE,
|
|
72
|
+
|
|
73
|
+
FOREIGN KEY (parent_blueprint_node_id)
|
|
74
|
+
REFERENCES artifact_standard_blueprint_nodes (blueprint_node_id)
|
|
75
|
+
ON DELETE CASCADE,
|
|
76
|
+
|
|
77
|
+
UNIQUE (blueprint_id, node_code)
|
|
78
|
+
)
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
</details>
|
|
82
|
+
|
|
83
|
+
## Columns
|
|
84
|
+
|
|
85
|
+
| Name | Type | Default | Nullable | Children | Parents |
|
|
86
|
+
| ------------------------ | ------------ | ----------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
|
|
87
|
+
| blueprint_node_id | CHAR(36) | | true | [artifact_standard_blueprint_nodes](artifact_standard_blueprint_nodes.md) [artifact_standard_template_slots](artifact_standard_template_slots.md) | |
|
|
88
|
+
| blueprint_id | CHAR(36) | | false | | [artifact_standard_document_blueprints](artifact_standard_document_blueprints.md) |
|
|
89
|
+
| parent_blueprint_node_id | CHAR(36) | | true | | [artifact_standard_blueprint_nodes](artifact_standard_blueprint_nodes.md) |
|
|
90
|
+
| node_code | VARCHAR(128) | | false | | |
|
|
91
|
+
| node_title | VARCHAR(256) | | false | | |
|
|
92
|
+
| node_type_code | VARCHAR(64) | 'BODY' | false | | |
|
|
93
|
+
| node_level | INTEGER | 1 | false | | |
|
|
94
|
+
| toc_visible | INTEGER | 1 | false | | |
|
|
95
|
+
| is_required | INTEGER | 1 | false | | |
|
|
96
|
+
| is_repeatable | INTEGER | 0 | false | | |
|
|
97
|
+
| repeat_context_code | VARCHAR(128) | | true | | |
|
|
98
|
+
| taxonomy_ref | VARCHAR(256) | | true | | |
|
|
99
|
+
| description | TEXT | | true | | |
|
|
100
|
+
| sort_order | INTEGER | 0 | false | | |
|
|
101
|
+
| created_at | DATETIME | CURRENT_TIMESTAMP | false | | |
|
|
102
|
+
| updated_at | DATETIME | CURRENT_TIMESTAMP | false | | |
|
|
103
|
+
| metadata_json | JSON | | true | | |
|
|
104
|
+
|
|
105
|
+
## Constraints
|
|
106
|
+
|
|
107
|
+
| Name | Type | Definition |
|
|
108
|
+
| ---------------------------------------------------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
109
|
+
| blueprint_node_id | PRIMARY KEY | PRIMARY KEY (blueprint_node_id) |
|
|
110
|
+
| - (Foreign key ID: 0) | FOREIGN KEY | FOREIGN KEY (parent_blueprint_node_id) REFERENCES artifact_standard_blueprint_nodes (blueprint_node_id) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE |
|
|
111
|
+
| - (Foreign key ID: 1) | FOREIGN KEY | FOREIGN KEY (blueprint_id) REFERENCES artifact_standard_document_blueprints (blueprint_id) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE |
|
|
112
|
+
| sqlite_autoindex_artifact_standard_blueprint_nodes_2 | UNIQUE | UNIQUE (blueprint_id, node_code) |
|
|
113
|
+
| sqlite_autoindex_artifact_standard_blueprint_nodes_1 | PRIMARY KEY | PRIMARY KEY (blueprint_node_id) |
|
|
114
|
+
| - | CHECK | CHECK (length(blueprint_node_id) = 36) |
|
|
115
|
+
| - | CHECK | CHECK (length(blueprint_id) = 36) |
|
|
116
|
+
| - | CHECK | CHECK (parent_blueprint_node_id IS NULL OR length(parent_blueprint_node_id) = 36) |
|
|
117
|
+
| - | CHECK | CHECK (node_level >= 1) |
|
|
118
|
+
| - | CHECK | CHECK (toc_visible IN (0, 1)) |
|
|
119
|
+
| - | CHECK | CHECK (is_required IN (0, 1)) |
|
|
120
|
+
| - | CHECK | CHECK (is_repeatable IN (0, 1)) |
|
|
121
|
+
| - | CHECK | CHECK (metadata_json IS NULL OR json_valid(metadata_json)) |
|
|
122
|
+
|
|
123
|
+
## Indexes
|
|
124
|
+
|
|
125
|
+
| Name | Definition |
|
|
126
|
+
| ---------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
|
|
127
|
+
| idx_artifact_standard_blueprint_nodes_blueprint | CREATE INDEX idx_artifact_standard_blueprint_nodes_blueprint<br /> ON artifact_standard_blueprint_nodes (blueprint_id) |
|
|
128
|
+
| sqlite_autoindex_artifact_standard_blueprint_nodes_2 | UNIQUE (blueprint_id, node_code) |
|
|
129
|
+
| sqlite_autoindex_artifact_standard_blueprint_nodes_1 | PRIMARY KEY (blueprint_node_id) |
|
|
130
|
+
|
|
131
|
+
## Relations
|
|
132
|
+
|
|
133
|
+

|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
> Generated by [tbls](https://github.com/k1LoW/tbls)
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<!-- Generated by graphviz version 12.1.2 (20240928.0832)
|
|
5
|
+
-->
|
|
6
|
+
<!-- Title: artifact_standard_blueprint_nodes Pages: 1 -->
|
|
7
|
+
<svg width="537pt" height="750pt"
|
|
8
|
+
viewBox="0.00 0.00 536.79 750.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 746)">
|
|
10
|
+
<title>artifact_standard_blueprint_nodes</title>
|
|
11
|
+
<polygon fill="white" stroke="none" points="-4,4 -4,-746 532.79,-746 532.79,4 -4,4"/>
|
|
12
|
+
<!-- artifact_standard_blueprint_nodes -->
|
|
13
|
+
<g id="node1" class="node">
|
|
14
|
+
<title>artifact_standard_blueprint_nodes</title>
|
|
15
|
+
<polygon fill="#efefef" stroke="none" points="92.98,-368.6 92.98,-404.2 422.15,-404.2 422.15,-368.6 92.98,-368.6"/>
|
|
16
|
+
<polygon fill="none" stroke="black" points="92.98,-368.6 92.98,-404.2 422.15,-404.2 422.15,-368.6 92.98,-368.6"/>
|
|
17
|
+
<text text-anchor="start" x="99.98" y="-382" font-family="Arial Bold" font-size="18.00">artifact_standard_blueprint_nodes</text>
|
|
18
|
+
<text text-anchor="start" x="345.9" y="-382" font-family="Arial" font-size="14.00"> </text>
|
|
19
|
+
<text text-anchor="start" x="377.01" y="-382" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
20
|
+
<polygon fill="none" stroke="black" points="92.98,-337.8 92.98,-368.6 422.15,-368.6 422.15,-337.8 92.98,-337.8"/>
|
|
21
|
+
<text text-anchor="start" x="99.98" y="-350" font-family="Arial" font-size="14.00">blueprint_node_id </text>
|
|
22
|
+
<text text-anchor="start" x="215.18" y="-350" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
23
|
+
<polygon fill="none" stroke="black" points="92.98,-307 92.98,-337.8 422.15,-337.8 422.15,-307 92.98,-307"/>
|
|
24
|
+
<text text-anchor="start" x="99.98" y="-319.2" font-family="Arial" font-size="14.00">blueprint_id </text>
|
|
25
|
+
<text text-anchor="start" x="176.25" y="-319.2" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
26
|
+
<polygon fill="none" stroke="black" points="92.98,-276.2 92.98,-307 422.15,-307 422.15,-276.2 92.98,-276.2"/>
|
|
27
|
+
<text text-anchor="start" x="99.98" y="-288.4" font-family="Arial" font-size="14.00">parent_blueprint_node_id </text>
|
|
28
|
+
<text text-anchor="start" x="262.67" y="-288.4" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
29
|
+
<polygon fill="none" stroke="black" stroke-width="3" points="91.48,-274.7 91.48,-405.7 423.65,-405.7 423.65,-274.7 91.48,-274.7"/>
|
|
30
|
+
</g>
|
|
31
|
+
<!-- artifact_standard_blueprint_nodes->artifact_standard_blueprint_nodes -->
|
|
32
|
+
<g id="edge1" class="edge">
|
|
33
|
+
<title>artifact_standard_blueprint_nodes:parent_blueprint_node_id->artifact_standard_blueprint_nodes:blueprint_node_id</title>
|
|
34
|
+
<path fill="none" stroke="black" d="M259.92,-317.14C266.48,-406.12 265.7,-572 257.56,-572 249.13,-572 248.6,-447.61 255.98,-368.39"/>
|
|
35
|
+
<polygon fill="black" stroke="black" points="259.92,-317.25 263.61,-306.92 259.5,-311.93 259.15,-307.61 259.15,-307.61 259.15,-307.61 259.5,-311.93 254.64,-307.64 259.92,-317.25"/>
|
|
36
|
+
</g>
|
|
37
|
+
<!-- artifact_standard_document_blueprints -->
|
|
38
|
+
<g id="node3" class="node">
|
|
39
|
+
<title>artifact_standard_document_blueprints</title>
|
|
40
|
+
<polygon fill="#efefef" stroke="none" points="74.98,-104.8 74.98,-150.8 440.15,-150.8 440.15,-104.8 74.98,-104.8"/>
|
|
41
|
+
<polygon fill="none" stroke="black" points="74.98,-104.8 74.98,-150.8 440.15,-150.8 440.15,-104.8 74.98,-104.8"/>
|
|
42
|
+
<text text-anchor="start" x="81.98" y="-128.6" font-family="Arial Bold" font-size="18.00">artifact_standard_document_blueprints</text>
|
|
43
|
+
<text text-anchor="start" x="363.89" y="-128.6" font-family="Arial" font-size="14.00"> </text>
|
|
44
|
+
<text text-anchor="start" x="395.01" y="-128.6" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
45
|
+
<text text-anchor="start" x="166.16" y="-114.2" font-family="Arial" font-size="14.00" fill="#333333">산출물 문서 구조 기준을 관리한다.</text>
|
|
46
|
+
<polygon fill="none" stroke="black" points="74.98,-74 74.98,-104.8 440.15,-104.8 440.15,-74 74.98,-74"/>
|
|
47
|
+
<text text-anchor="start" x="81.98" y="-86.2" font-family="Arial" font-size="14.00">blueprint_id </text>
|
|
48
|
+
<text text-anchor="start" x="158.26" y="-86.2" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
49
|
+
<polygon fill="none" stroke="black" points="74.98,-43.2 74.98,-74 440.15,-74 440.15,-43.2 74.98,-43.2"/>
|
|
50
|
+
<text text-anchor="start" x="81.98" y="-55.4" font-family="Arial" font-size="14.00">artifact_standard_id </text>
|
|
51
|
+
<text text-anchor="start" x="208.84" y="-55.4" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
52
|
+
</g>
|
|
53
|
+
<!-- artifact_standard_blueprint_nodes->artifact_standard_document_blueprints -->
|
|
54
|
+
<g id="edge3" class="edge">
|
|
55
|
+
<title>artifact_standard_blueprint_nodes:blueprint_id->artifact_standard_document_blueprints:blueprint_id</title>
|
|
56
|
+
<path fill="none" stroke="black" d="M433.5,-321.6C528.1,-306.74 541.46,-89.4 441.15,-89.4"/>
|
|
57
|
+
<polygon fill="black" stroke="black" points="433.46,-321.61 423.14,-317.89 428.14,-322.02 423.82,-322.35 423.82,-322.35 423.82,-322.35 428.14,-322.02 423.83,-326.86 433.46,-321.61"/>
|
|
58
|
+
</g>
|
|
59
|
+
<!-- artifact_standard_template_slots -->
|
|
60
|
+
<g id="node2" class="node">
|
|
61
|
+
<title>artifact_standard_template_slots</title>
|
|
62
|
+
<polygon fill="#efefef" stroke="none" points="43.2,-652.8 43.2,-698.8 471.93,-698.8 471.93,-652.8 43.2,-652.8"/>
|
|
63
|
+
<polygon fill="none" stroke="black" points="43.2,-652.8 43.2,-698.8 471.93,-698.8 471.93,-652.8 43.2,-652.8"/>
|
|
64
|
+
<text text-anchor="start" x="105.98" y="-676.6" font-family="Arial Bold" font-size="18.00">artifact_standard_template_slots</text>
|
|
65
|
+
<text text-anchor="start" x="339.9" y="-676.6" font-family="Arial" font-size="14.00"> </text>
|
|
66
|
+
<text text-anchor="start" x="371.01" y="-676.6" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
67
|
+
<text text-anchor="start" x="50.2" y="-662.2" font-family="Arial" font-size="14.00" fill="#333333">blueprint 내 section, table, figure, diagram 등이 들어갈 slot을 관리한다.</text>
|
|
68
|
+
<polygon fill="none" stroke="black" points="43.2,-622 43.2,-652.8 471.93,-652.8 471.93,-622 43.2,-622"/>
|
|
69
|
+
<text text-anchor="start" x="50.2" y="-634.2" font-family="Arial" font-size="14.00">template_slot_id </text>
|
|
70
|
+
<text text-anchor="start" x="156.04" y="-634.2" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
71
|
+
<polygon fill="none" stroke="black" points="43.2,-591.2 43.2,-622 471.93,-622 471.93,-591.2 43.2,-591.2"/>
|
|
72
|
+
<text text-anchor="start" x="50.2" y="-603.4" font-family="Arial" font-size="14.00">blueprint_id </text>
|
|
73
|
+
<text text-anchor="start" x="126.48" y="-603.4" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
74
|
+
<polygon fill="none" stroke="black" points="43.2,-560.4 43.2,-591.2 471.93,-591.2 471.93,-560.4 43.2,-560.4"/>
|
|
75
|
+
<text text-anchor="start" x="50.2" y="-572.6" font-family="Arial" font-size="14.00">blueprint_node_id </text>
|
|
76
|
+
<text text-anchor="start" x="165.41" y="-572.6" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
77
|
+
<polygon fill="none" stroke="black" points="43.2,-529.6 43.2,-560.4 471.93,-560.4 471.93,-529.6 43.2,-529.6"/>
|
|
78
|
+
<text text-anchor="start" x="50.2" y="-541.8" font-family="Arial" font-size="14.00">parent_template_slot_id </text>
|
|
79
|
+
<text text-anchor="start" x="203.52" y="-541.8" font-family="Arial" font-size="14.00" fill="#666666">[CHAR(36)]</text>
|
|
80
|
+
</g>
|
|
81
|
+
<!-- artifact_standard_template_slots->artifact_standard_blueprint_nodes -->
|
|
82
|
+
<g id="edge2" class="edge">
|
|
83
|
+
<title>artifact_standard_template_slots:blueprint_node_id->artifact_standard_blueprint_nodes:blueprint_node_id</title>
|
|
84
|
+
<path fill="none" stroke="black" d="M483.33,-574.95C570.64,-560 520.86,-353.2 423.15,-353.2"/>
|
|
85
|
+
<polygon fill="black" stroke="black" points="483.23,-574.96 472.9,-571.29 477.91,-575.39 473.6,-575.75 473.6,-575.75 473.6,-575.75 477.91,-575.39 473.63,-580.26 483.23,-574.96"/>
|
|
86
|
+
</g>
|
|
87
|
+
</g>
|
|
88
|
+
</svg>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# artifact_standard_code_groups
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
코드 그룹을 정의한다.
|
|
6
|
+
|
|
7
|
+
<details>
|
|
8
|
+
<summary><strong>Table Definition</strong></summary>
|
|
9
|
+
|
|
10
|
+
```sql
|
|
11
|
+
CREATE TABLE artifact_standard_code_groups (
|
|
12
|
+
-- 코드 그룹 식별자
|
|
13
|
+
code_group_code VARCHAR(64) PRIMARY KEY,
|
|
14
|
+
|
|
15
|
+
-- 코드 그룹 한글명
|
|
16
|
+
code_group_name VARCHAR(128) NOT NULL,
|
|
17
|
+
|
|
18
|
+
-- 코드 그룹 설명
|
|
19
|
+
description TEXT,
|
|
20
|
+
|
|
21
|
+
-- 표시 정렬 순서
|
|
22
|
+
sort_order INTEGER NOT NULL DEFAULT 0,
|
|
23
|
+
|
|
24
|
+
-- 활성 여부. 1은 활성, 0은 비활성
|
|
25
|
+
is_active INTEGER NOT NULL DEFAULT 1
|
|
26
|
+
CHECK (is_active IN (0, 1)),
|
|
27
|
+
|
|
28
|
+
-- 생성 시각
|
|
29
|
+
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
30
|
+
|
|
31
|
+
-- 수정 시각
|
|
32
|
+
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
33
|
+
)
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
</details>
|
|
37
|
+
|
|
38
|
+
## Columns
|
|
39
|
+
|
|
40
|
+
| Name | Type | Default | Nullable | Children |
|
|
41
|
+
| --------------- | ------------ | ----------------- | -------- | ----------------------------------------------------- |
|
|
42
|
+
| code_group_code | VARCHAR(64) | | true | [artifact_standard_codes](artifact_standard_codes.md) |
|
|
43
|
+
| code_group_name | VARCHAR(128) | | false | |
|
|
44
|
+
| description | TEXT | | true | |
|
|
45
|
+
| sort_order | INTEGER | 0 | false | |
|
|
46
|
+
| is_active | INTEGER | 1 | false | |
|
|
47
|
+
| created_at | DATETIME | CURRENT_TIMESTAMP | false | |
|
|
48
|
+
| updated_at | DATETIME | CURRENT_TIMESTAMP | false | |
|
|
49
|
+
|
|
50
|
+
## Constraints
|
|
51
|
+
|
|
52
|
+
| Name | Type | Definition |
|
|
53
|
+
| ------------------------------------------------ | ----------- | ----------------------------- |
|
|
54
|
+
| code_group_code | PRIMARY KEY | PRIMARY KEY (code_group_code) |
|
|
55
|
+
| sqlite_autoindex_artifact_standard_code_groups_1 | PRIMARY KEY | PRIMARY KEY (code_group_code) |
|
|
56
|
+
| - | CHECK | CHECK (is_active IN (0, 1)) |
|
|
57
|
+
|
|
58
|
+
## Indexes
|
|
59
|
+
|
|
60
|
+
| Name | Definition |
|
|
61
|
+
| ------------------------------------------------ | ----------------------------- |
|
|
62
|
+
| sqlite_autoindex_artifact_standard_code_groups_1 | PRIMARY KEY (code_group_code) |
|
|
63
|
+
|
|
64
|
+
## Relations
|
|
65
|
+
|
|
66
|
+

|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
> Generated by [tbls](https://github.com/k1LoW/tbls)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<!-- Generated by graphviz version 12.1.2 (20240928.0832)
|
|
5
|
+
-->
|
|
6
|
+
<!-- Title: artifact_standard_code_groups Pages: 1 -->
|
|
7
|
+
<svg width="420pt" height="419pt"
|
|
8
|
+
viewBox="0.00 0.00 419.80 418.98" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 414.98)">
|
|
10
|
+
<title>artifact_standard_code_groups</title>
|
|
11
|
+
<polygon fill="white" stroke="none" points="-4,4 -4,-414.98 415.8,-414.98 415.8,4 -4,4"/>
|
|
12
|
+
<!-- artifact_standard_code_groups -->
|
|
13
|
+
<g id="node1" class="node">
|
|
14
|
+
<title>artifact_standard_code_groups</title>
|
|
15
|
+
<polygon fill="#efefef" stroke="none" points="46.2,-88.78 46.2,-134.78 351.37,-134.78 351.37,-88.78 46.2,-88.78"/>
|
|
16
|
+
<polygon fill="none" stroke="black" points="46.2,-88.78 46.2,-134.78 351.37,-134.78 351.37,-88.78 46.2,-88.78"/>
|
|
17
|
+
<text text-anchor="start" x="53.2" y="-112.58" font-family="Arial Bold" font-size="18.00">artifact_standard_code_groups</text>
|
|
18
|
+
<text text-anchor="start" x="275.12" y="-112.58" font-family="Arial" font-size="14.00"> </text>
|
|
19
|
+
<text text-anchor="start" x="306.23" y="-112.58" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
20
|
+
<text text-anchor="start" x="140.44" y="-98.18" font-family="Arial" font-size="14.00" fill="#333333">코드 그룹을 정의한다.</text>
|
|
21
|
+
<polygon fill="none" stroke="black" points="46.2,-57.98 46.2,-88.78 351.37,-88.78 351.37,-57.98 46.2,-57.98"/>
|
|
22
|
+
<text text-anchor="start" x="53.2" y="-70.18" font-family="Arial" font-size="14.00">code_group_code </text>
|
|
23
|
+
<text text-anchor="start" x="169.19" y="-70.18" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(64)]</text>
|
|
24
|
+
<polygon fill="none" stroke="black" stroke-width="3" points="44.7,-56.48 44.7,-136.28 352.87,-136.28 352.87,-56.48 44.7,-56.48"/>
|
|
25
|
+
</g>
|
|
26
|
+
<!-- artifact_standard_codes -->
|
|
27
|
+
<g id="node2" class="node">
|
|
28
|
+
<title>artifact_standard_codes</title>
|
|
29
|
+
<polygon fill="#efefef" stroke="none" points="71.7,-321.78 71.7,-367.78 325.87,-367.78 325.87,-321.78 71.7,-321.78"/>
|
|
30
|
+
<polygon fill="none" stroke="black" points="71.7,-321.78 71.7,-367.78 325.87,-367.78 325.87,-321.78 71.7,-321.78"/>
|
|
31
|
+
<text text-anchor="start" x="78.7" y="-345.58" font-family="Arial Bold" font-size="18.00">artifact_standard_codes</text>
|
|
32
|
+
<text text-anchor="start" x="249.62" y="-345.58" font-family="Arial" font-size="14.00"> </text>
|
|
33
|
+
<text text-anchor="start" x="280.74" y="-345.58" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
34
|
+
<text text-anchor="start" x="113.21" y="-331.18" font-family="Arial" font-size="14.00" fill="#333333">코드 그룹별 코드 값을 정의한다.</text>
|
|
35
|
+
<polygon fill="none" stroke="black" points="71.7,-290.98 71.7,-321.78 325.87,-321.78 325.87,-290.98 71.7,-290.98"/>
|
|
36
|
+
<text text-anchor="start" x="78.7" y="-303.18" font-family="Arial" font-size="14.00">code_group_code </text>
|
|
37
|
+
<text text-anchor="start" x="194.68" y="-303.18" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(64)]</text>
|
|
38
|
+
<polygon fill="none" stroke="black" points="71.7,-260.18 71.7,-290.98 325.87,-290.98 325.87,-260.18 71.7,-260.18"/>
|
|
39
|
+
<text text-anchor="start" x="78.7" y="-272.38" font-family="Arial" font-size="14.00">code </text>
|
|
40
|
+
<text text-anchor="start" x="112.95" y="-272.38" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(128)]</text>
|
|
41
|
+
</g>
|
|
42
|
+
<!-- artifact_standard_codes->artifact_standard_code_groups -->
|
|
43
|
+
<g id="edge1" class="edge">
|
|
44
|
+
<title>artifact_standard_codes:code_group_code->artifact_standard_code_groups:code_group_code</title>
|
|
45
|
+
<path fill="none" stroke="black" d="M336.91,-304.32C390.24,-282.62 435.68,-96.28 397.57,-57.98 335.25,4.65 198.78,31.37 198.78,-56.98"/>
|
|
46
|
+
<polygon fill="black" stroke="black" points="337,-304.3 326.29,-301.91 331.77,-305.38 327.53,-306.25 327.53,-306.25 327.53,-306.25 331.77,-305.38 328.11,-310.72 337,-304.3"/>
|
|
47
|
+
</g>
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# artifact_standard_codes
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
코드 그룹별 코드 값을 정의한다.
|
|
6
|
+
|
|
7
|
+
<details>
|
|
8
|
+
<summary><strong>Table Definition</strong></summary>
|
|
9
|
+
|
|
10
|
+
```sql
|
|
11
|
+
CREATE TABLE artifact_standard_codes (
|
|
12
|
+
-- 코드 그룹 식별자
|
|
13
|
+
code_group_code VARCHAR(64) NOT NULL,
|
|
14
|
+
|
|
15
|
+
-- 코드 값. UPPER_SNAKE_CASE를 사용한다.
|
|
16
|
+
code VARCHAR(128) NOT NULL,
|
|
17
|
+
|
|
18
|
+
-- 코드 한글명
|
|
19
|
+
code_name VARCHAR(128) NOT NULL,
|
|
20
|
+
|
|
21
|
+
-- 코드 설명
|
|
22
|
+
description TEXT,
|
|
23
|
+
|
|
24
|
+
-- 표시 정렬 순서
|
|
25
|
+
sort_order INTEGER NOT NULL DEFAULT 0,
|
|
26
|
+
|
|
27
|
+
-- 활성 여부. 1은 활성, 0은 비활성
|
|
28
|
+
is_active INTEGER NOT NULL DEFAULT 1
|
|
29
|
+
CHECK (is_active IN (0, 1)),
|
|
30
|
+
|
|
31
|
+
-- 확장 메타데이터
|
|
32
|
+
metadata_json JSON
|
|
33
|
+
CHECK (metadata_json IS NULL OR json_valid(metadata_json)),
|
|
34
|
+
|
|
35
|
+
-- 생성 시각
|
|
36
|
+
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
37
|
+
|
|
38
|
+
-- 수정 시각
|
|
39
|
+
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
40
|
+
|
|
41
|
+
PRIMARY KEY (code_group_code, code),
|
|
42
|
+
|
|
43
|
+
FOREIGN KEY (code_group_code)
|
|
44
|
+
REFERENCES artifact_standard_code_groups (code_group_code)
|
|
45
|
+
ON DELETE CASCADE
|
|
46
|
+
)
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
</details>
|
|
50
|
+
|
|
51
|
+
## Columns
|
|
52
|
+
|
|
53
|
+
| Name | Type | Default | Nullable | Parents |
|
|
54
|
+
| --------------- | ------------ | ----------------- | -------- | ----------------------------------------------------------------- |
|
|
55
|
+
| code_group_code | VARCHAR(64) | | false | [artifact_standard_code_groups](artifact_standard_code_groups.md) |
|
|
56
|
+
| code | VARCHAR(128) | | false | |
|
|
57
|
+
| code_name | VARCHAR(128) | | false | |
|
|
58
|
+
| description | TEXT | | true | |
|
|
59
|
+
| sort_order | INTEGER | 0 | false | |
|
|
60
|
+
| is_active | INTEGER | 1 | false | |
|
|
61
|
+
| metadata_json | JSON | | true | |
|
|
62
|
+
| created_at | DATETIME | CURRENT_TIMESTAMP | false | |
|
|
63
|
+
| updated_at | DATETIME | CURRENT_TIMESTAMP | false | |
|
|
64
|
+
|
|
65
|
+
## Constraints
|
|
66
|
+
|
|
67
|
+
| Name | Type | Definition |
|
|
68
|
+
| ------------------------------------------ | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
|
69
|
+
| code_group_code | PRIMARY KEY | PRIMARY KEY (code_group_code) |
|
|
70
|
+
| code | PRIMARY KEY | PRIMARY KEY (code) |
|
|
71
|
+
| - (Foreign key ID: 0) | FOREIGN KEY | FOREIGN KEY (code_group_code) REFERENCES artifact_standard_code_groups (code_group_code) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE |
|
|
72
|
+
| sqlite_autoindex_artifact_standard_codes_1 | PRIMARY KEY | PRIMARY KEY (code_group_code, code) |
|
|
73
|
+
| - | CHECK | CHECK (is_active IN (0, 1)) |
|
|
74
|
+
| - | CHECK | CHECK (metadata_json IS NULL OR json_valid(metadata_json)) |
|
|
75
|
+
|
|
76
|
+
## Indexes
|
|
77
|
+
|
|
78
|
+
| Name | Definition |
|
|
79
|
+
| ------------------------------------------ | ----------------------------------- |
|
|
80
|
+
| sqlite_autoindex_artifact_standard_codes_1 | PRIMARY KEY (code_group_code, code) |
|
|
81
|
+
|
|
82
|
+
## Relations
|
|
83
|
+
|
|
84
|
+

|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
> Generated by [tbls](https://github.com/k1LoW/tbls)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<!-- Generated by graphviz version 12.1.2 (20240928.0832)
|
|
5
|
+
-->
|
|
6
|
+
<!-- Title: artifact_standard_codes Pages: 1 -->
|
|
7
|
+
<svg width="414pt" height="421pt"
|
|
8
|
+
viewBox="0.00 0.00 414.26 421.12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 417.12)">
|
|
10
|
+
<title>artifact_standard_codes</title>
|
|
11
|
+
<polygon fill="white" stroke="none" points="-4,4 -4,-417.12 410.26,-417.12 410.26,4 -4,4"/>
|
|
12
|
+
<!-- artifact_standard_codes -->
|
|
13
|
+
<g id="node1" class="node">
|
|
14
|
+
<title>artifact_standard_codes</title>
|
|
15
|
+
<polygon fill="#efefef" stroke="none" points="68.7,-320.92 68.7,-366.92 322.87,-366.92 322.87,-320.92 68.7,-320.92"/>
|
|
16
|
+
<polygon fill="none" stroke="black" points="68.7,-320.92 68.7,-366.92 322.87,-366.92 322.87,-320.92 68.7,-320.92"/>
|
|
17
|
+
<text text-anchor="start" x="75.7" y="-344.72" font-family="Arial Bold" font-size="18.00">artifact_standard_codes</text>
|
|
18
|
+
<text text-anchor="start" x="246.62" y="-344.72" font-family="Arial" font-size="14.00"> </text>
|
|
19
|
+
<text text-anchor="start" x="277.74" y="-344.72" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
20
|
+
<text text-anchor="start" x="110.21" y="-330.32" font-family="Arial" font-size="14.00" fill="#333333">코드 그룹별 코드 값을 정의한다.</text>
|
|
21
|
+
<polygon fill="none" stroke="black" points="68.7,-290.12 68.7,-320.92 322.87,-320.92 322.87,-290.12 68.7,-290.12"/>
|
|
22
|
+
<text text-anchor="start" x="75.7" y="-302.32" font-family="Arial" font-size="14.00">code_group_code </text>
|
|
23
|
+
<text text-anchor="start" x="191.68" y="-302.32" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(64)]</text>
|
|
24
|
+
<polygon fill="none" stroke="black" points="68.7,-259.32 68.7,-290.12 322.87,-290.12 322.87,-259.32 68.7,-259.32"/>
|
|
25
|
+
<text text-anchor="start" x="75.7" y="-271.52" font-family="Arial" font-size="14.00">code </text>
|
|
26
|
+
<text text-anchor="start" x="109.95" y="-271.52" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(128)]</text>
|
|
27
|
+
<polygon fill="none" stroke="black" stroke-width="3" points="67.2,-257.82 67.2,-368.42 324.37,-368.42 324.37,-257.82 67.2,-257.82"/>
|
|
28
|
+
</g>
|
|
29
|
+
<!-- artifact_standard_code_groups -->
|
|
30
|
+
<g id="node2" class="node">
|
|
31
|
+
<title>artifact_standard_code_groups</title>
|
|
32
|
+
<polygon fill="#efefef" stroke="none" points="43.2,-87.92 43.2,-133.92 348.37,-133.92 348.37,-87.92 43.2,-87.92"/>
|
|
33
|
+
<polygon fill="none" stroke="black" points="43.2,-87.92 43.2,-133.92 348.37,-133.92 348.37,-87.92 43.2,-87.92"/>
|
|
34
|
+
<text text-anchor="start" x="50.2" y="-111.72" font-family="Arial Bold" font-size="18.00">artifact_standard_code_groups</text>
|
|
35
|
+
<text text-anchor="start" x="272.12" y="-111.72" font-family="Arial" font-size="14.00"> </text>
|
|
36
|
+
<text text-anchor="start" x="303.23" y="-111.72" font-family="Arial" font-size="14.00" fill="#666666">[table]</text>
|
|
37
|
+
<text text-anchor="start" x="137.44" y="-97.32" font-family="Arial" font-size="14.00" fill="#333333">코드 그룹을 정의한다.</text>
|
|
38
|
+
<polygon fill="none" stroke="black" points="43.2,-57.12 43.2,-87.92 348.37,-87.92 348.37,-57.12 43.2,-57.12"/>
|
|
39
|
+
<text text-anchor="start" x="50.2" y="-69.32" font-family="Arial" font-size="14.00">code_group_code </text>
|
|
40
|
+
<text text-anchor="start" x="166.19" y="-69.32" font-family="Arial" font-size="14.00" fill="#666666">[VARCHAR(64)]</text>
|
|
41
|
+
</g>
|
|
42
|
+
<!-- artifact_standard_codes->artifact_standard_code_groups -->
|
|
43
|
+
<g id="edge1" class="edge">
|
|
44
|
+
<title>artifact_standard_codes:code_group_code->artifact_standard_code_groups:code_group_code</title>
|
|
45
|
+
<path fill="none" stroke="black" d="M333.85,-303.45C386.73,-281.74 429.56,-95.3 391.57,-57.12 330.2,4.57 195.78,30.9 195.78,-56.12"/>
|
|
46
|
+
<polygon fill="black" stroke="black" points="333.99,-303.42 323.29,-301.04 328.77,-304.5 324.53,-305.38 324.53,-305.38 324.53,-305.38 328.77,-304.5 325.11,-309.86 333.99,-303.42"/>
|
|
47
|
+
</g>
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|