-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
245 lines (245 loc) · 7.3 KB
/
Copy pathcatalog.json
File metadata and controls
245 lines (245 loc) · 7.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
{
"$schema": "../schemas/example-catalog.schema.json",
"schemaVersion": "1.0",
"languageVersion": "1.0",
"examples": [
{
"id": "hello-stack",
"title": "Hello Stack",
"summary": "Start with two nodes and one directed edge.",
"learningStage": "starter",
"providers": [],
"features": ["directed-edges"],
"source": "01-minimal.stack",
"expected": {
"description": "A web app points to an API in one compact row.",
"nodes": 2,
"groups": 0,
"edges": 1
},
"thumbnail": {
"alt": "A minimal diagram with Web app connected to API"
}
},
{
"id": "application-and-data",
"title": "Application and data",
"summary": "Add semantic node kinds, icons, details, an edge label, and a light theme.",
"learningStage": "starter",
"providers": [],
"features": [
"themes",
"node-kinds",
"node-details",
"edge-labels",
"edge-kinds",
"directed-edges"
],
"source": "02-node-semantics.stack",
"expected": {
"description": "An application sends SQL data to a PostgreSQL database.",
"nodes": 2,
"groups": 0,
"edges": 1
},
"thumbnail": {
"alt": "Application and Primary database nodes connected by a SQL edge"
}
},
{
"id": "groups-and-layout",
"title": "Groups and layout",
"summary": "Organize clients and platform services with explicit direction, rank, and order hints.",
"learningStage": "intermediate",
"providers": [],
"features": [
"node-kinds",
"groups",
"layout-direction",
"rank-constraints",
"order-constraints",
"edge-labels",
"edge-kinds",
"directed-edges"
],
"source": "03-groups-and-layout.stack",
"expected": {
"description": "Browser and mobile clients converge on a gateway before the API and database.",
"nodes": 5,
"groups": 2,
"edges": 4
},
"thumbnail": {
"alt": "Client and Platform groups connected through an Edge gateway"
}
},
{
"id": "commerce-platform",
"title": "Commerce platform",
"summary": "Model a production-like commerce system with nested responsibilities and asynchronous processing.",
"learningStage": "advanced",
"providers": [],
"features": [
"node-kinds",
"node-details",
"groups",
"layout-direction",
"rank-constraints",
"order-constraints",
"edge-labels",
"edge-kinds",
"directed-edges"
],
"source": "04-commerce-platform.stack",
"expected": {
"description": "Storefront, commerce, processing, data, and partner groups show a full order flow.",
"nodes": 13,
"groups": 5,
"edges": 12
},
"thumbnail": {
"alt": "A production commerce architecture from customer through storefront, services, data, and partners"
}
},
{
"id": "aws-serverless-checkout",
"title": "AWS serverless checkout",
"summary": "Follow a checkout request through AWS edge, serverless compute, events, and storage services.",
"learningStage": "intermediate",
"providers": ["aws"],
"features": [
"themes",
"node-kinds",
"groups",
"layout-direction",
"edge-labels",
"edge-kinds",
"directed-edges",
"provider-icons"
],
"source": "05-aws-serverless.stack",
"expected": {
"description": "AWS edge and Lambda services emit an order event before persisting receipts.",
"nodes": 8,
"groups": 3,
"edges": 7
},
"thumbnail": {
"alt": "AWS checkout architecture with Edge, Serverless compute, and Data groups"
}
},
{
"id": "gcp-data-service",
"title": "GCP data service",
"summary": "Connect Cloud Run to transactional, object, and analytical data stores.",
"learningStage": "intermediate",
"providers": ["gcp"],
"features": [
"themes",
"node-kinds",
"groups",
"layout-direction",
"edge-labels",
"edge-kinds",
"directed-edges",
"provider-icons"
],
"source": "06-gcp-data-service.stack",
"expected": {
"description": "A Cloud Run API serves a web client and feeds Cloud SQL, Cloud Storage, and BigQuery.",
"nodes": 6,
"groups": 2,
"edges": 5
},
"thumbnail": {
"alt": "GCP application and analytics groups connected to a web client"
}
},
{
"id": "azure-event-platform",
"title": "Azure event platform",
"summary": "Trace asynchronous work from Azure delivery services through functions, Service Bus, and data stores.",
"learningStage": "intermediate",
"providers": ["azure"],
"features": [
"themes",
"node-kinds",
"groups",
"layout-direction",
"edge-labels",
"edge-kinds",
"directed-edges",
"provider-icons"
],
"source": "07-azure-event-platform.stack",
"expected": {
"description": "Front Door and App Service hand work to functions and Service Bus before storage.",
"nodes": 8,
"groups": 3,
"edges": 7
},
"thumbnail": {
"alt": "Azure delivery, event processing, and data groups in a left-to-right flow"
}
},
{
"id": "github-delivery-workflow",
"title": "GitHub delivery workflow",
"summary": "Describe a SaaS delivery path from source control and CI to hosting and error monitoring.",
"learningStage": "intermediate",
"providers": ["simple-icons"],
"features": [
"themes",
"node-kinds",
"groups",
"layout-direction",
"edge-labels",
"edge-kinds",
"directed-edges",
"provider-icons"
],
"source": "08-github-delivery.stack",
"expected": {
"description": "A developer push triggers GitHub Actions, deployment, and error reporting.",
"nodes": 5,
"groups": 2,
"edges": 4
},
"thumbnail": {
"alt": "GitHub repository and Actions connected to Vercel and Sentry"
}
},
{
"id": "mixed-provider-platform",
"title": "Mixed-provider platform",
"summary": "Combine AWS, GCP, Azure, and SaaS services while preserving semantic kinds and portable flow.",
"learningStage": "advanced",
"providers": ["aws", "gcp", "azure", "simple-icons"],
"features": [
"themes",
"node-kinds",
"groups",
"nested-groups",
"layout-direction",
"rank-constraints",
"order-constraints",
"edge-labels",
"edge-kinds",
"directed-edges",
"bidirectional-edges",
"association-edges",
"provider-icons"
],
"source": "09-mixed-provider-platform.stack",
"expected": {
"description": "A web client crosses provider boundaries for API, processing, events, data, and monitoring.",
"nodes": 7,
"groups": 4,
"edges": 6
},
"thumbnail": {
"alt": "A mixed-provider platform spanning Vercel, GCP, AWS, Azure, PostgreSQL, and Sentry"
}
}
]
}