retold-data-service 2.1.1 → 2.1.5

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.
Files changed (89) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/Dockerfile +1 -1
  3. package/README.md +12 -27
  4. package/build-all.js +66 -0
  5. package/diagrams/architecture.excalidraw +2966 -0
  6. package/diagrams/architecture.mmd +17 -0
  7. package/diagrams/architecture.svg +2 -0
  8. package/docs/README.md +12 -12
  9. package/docs/_brand.json +18 -0
  10. package/docs/_cover.md +1 -1
  11. package/docs/_topbar.md +1 -1
  12. package/docs/_version.json +3 -3
  13. package/docs/api/reference.md +8 -8
  14. package/docs/architecture.md +6 -84
  15. package/docs/diagrams/component-diagram.excalidraw +2807 -0
  16. package/docs/diagrams/component-diagram.mmd +14 -0
  17. package/docs/diagrams/component-diagram.svg +2 -0
  18. package/docs/diagrams/component-stack.excalidraw +1169 -0
  19. package/docs/diagrams/component-stack.mmd +6 -0
  20. package/docs/diagrams/component-stack.svg +2 -0
  21. package/docs/diagrams/hook-execution-order.excalidraw +3230 -0
  22. package/docs/diagrams/hook-execution-order.mmd +19 -0
  23. package/docs/diagrams/hook-execution-order.svg +2 -0
  24. package/docs/diagrams/initialization-flow.excalidraw +1800 -0
  25. package/docs/diagrams/initialization-flow.mmd +22 -0
  26. package/docs/diagrams/initialization-flow.svg +2 -0
  27. package/docs/index.html +6 -7
  28. package/docs/lifecycle-hooks.md +2 -21
  29. package/docs/retold-catalog.json +141 -141
  30. package/docs/retold-keyword-index.json +6818 -1608
  31. package/package.json +130 -96
  32. package/source/services/RetoldDataService-Brand.js +13 -0
  33. package/source/services/comprehension-loader/pict-app/Pict-Application-ComprehensionLoader.js +65 -15
  34. package/source/services/comprehension-loader/pict-app/providers/Pict-Provider-ComprehensionLoader.js +2 -2
  35. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Layout.js +68 -114
  36. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Load.js +29 -29
  37. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Schema.js +3 -3
  38. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Session.js +2 -2
  39. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-SettingsPanel.js +62 -0
  40. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Shell.js +142 -0
  41. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Source.js +7 -7
  42. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusBar.js +125 -0
  43. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusDetail.js +89 -0
  44. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-Nav.js +42 -0
  45. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-User.js +48 -0
  46. package/source/services/comprehension-loader/web/comprehension-loader.js +5475 -6243
  47. package/source/services/comprehension-loader/web/comprehension-loader.js.map +1 -1
  48. package/source/services/comprehension-loader/web/comprehension-loader.min.js +75 -1
  49. package/source/services/comprehension-loader/web/comprehension-loader.min.js.map +1 -1
  50. package/source/services/comprehension-loader/web/favicons/favicon-dark.svg +13 -0
  51. package/source/services/comprehension-loader/web/favicons/favicon-light.svg +13 -0
  52. package/source/services/comprehension-loader/web/favicons/favicon.svg +13 -0
  53. package/source/services/comprehension-loader/web/index.html +3 -0
  54. package/source/services/comprehension-loader/web/pict.min.js +12 -0
  55. package/source/services/data-cloner/DataCloner-Command-Headless.js +2 -1
  56. package/source/services/data-cloner/DataCloner-Command-Sync.js +110 -75
  57. package/source/services/data-cloner/pict-app/Pict-Application-DataCloner.js +70 -47
  58. package/source/services/data-cloner/pict-app/providers/Pict-Provider-DataCloner.js +3 -3
  59. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Connection.js +1 -1
  60. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Deploy.js +5 -5
  61. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +11 -11
  62. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Layout.js +89 -135
  63. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Schema.js +3 -3
  64. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Session.js +2 -2
  65. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-SettingsPanel.js +61 -0
  66. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Shell.js +136 -0
  67. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusBar.js +117 -0
  68. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusDetail.js +81 -0
  69. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Sync.js +38 -38
  70. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-Nav.js +42 -0
  71. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-User.js +48 -0
  72. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-ViewData.js +5 -5
  73. package/source/services/data-cloner/web/data-cloner.js +5855 -8067
  74. package/source/services/data-cloner/web/data-cloner.js.map +1 -1
  75. package/source/services/data-cloner/web/data-cloner.min.js +75 -1
  76. package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
  77. package/source/services/data-cloner/web/favicons/favicon-dark.svg +13 -0
  78. package/source/services/data-cloner/web/favicons/favicon-light.svg +13 -0
  79. package/source/services/data-cloner/web/favicons/favicon.svg +13 -0
  80. package/source/services/data-cloner/web/favicons/favicons/favicon-dark.svg +13 -0
  81. package/source/services/data-cloner/web/favicons/favicons/favicon-light.svg +13 -0
  82. package/source/services/data-cloner/web/favicons/favicons/favicon.svg +13 -0
  83. package/source/services/data-cloner/web/index.html +3 -0
  84. package/source/services/data-cloner/web/pict.min.js +12 -0
  85. package/test/Bundles_smoke_tests.js +43 -0
  86. package/test/ComprehensionLoader_smoke_tests.js +95 -0
  87. package/test/DataCloner-RuntimeOverrides_tests.js +344 -0
  88. package/test/DataCloner_smoke_tests.js +87 -0
  89. package/docs/css/docuserve.css +0 -327
@@ -0,0 +1,2966 @@
1
+ {
2
+ "type": "excalidraw",
3
+ "version": 2,
4
+ "source": "pict-renderer-graph/filetree",
5
+ "elements": [
6
+ {
7
+ "id": "ft-node-1024",
8
+ "type": "ellipse",
9
+ "x": 24,
10
+ "y": 30,
11
+ "width": 8,
12
+ "height": 8,
13
+ "angle": 0,
14
+ "strokeColor": "#C9602F",
15
+ "backgroundColor": "#C9602F",
16
+ "fillStyle": "solid",
17
+ "strokeWidth": 1.4,
18
+ "strokeStyle": "solid",
19
+ "roughness": 0,
20
+ "opacity": 100,
21
+ "groupIds": [],
22
+ "frameId": null,
23
+ "roundness": null,
24
+ "seed": 1024,
25
+ "version": 1,
26
+ "versionNonce": 1024,
27
+ "isDeleted": false,
28
+ "boundElements": [],
29
+ "updated": 1,
30
+ "link": null,
31
+ "locked": false,
32
+ "index": null
33
+ },
34
+ {
35
+ "id": "ft-name-0",
36
+ "type": "text",
37
+ "x": 47,
38
+ "y": 21,
39
+ "width": 148,
40
+ "height": 28,
41
+ "angle": 0,
42
+ "strokeColor": "#C9602F",
43
+ "backgroundColor": "transparent",
44
+ "fillStyle": "solid",
45
+ "strokeWidth": 1,
46
+ "strokeStyle": "solid",
47
+ "roughness": 1,
48
+ "opacity": 100,
49
+ "groupIds": [],
50
+ "frameId": null,
51
+ "roundness": null,
52
+ "seed": 925,
53
+ "version": 1,
54
+ "versionNonce": 925,
55
+ "isDeleted": false,
56
+ "boundElements": null,
57
+ "updated": 1,
58
+ "link": null,
59
+ "locked": false,
60
+ "text": "Fable (Core)",
61
+ "fontSize": 20,
62
+ "fontFamily": 5,
63
+ "textAlign": "left",
64
+ "verticalAlign": "top",
65
+ "containerId": null,
66
+ "originalText": "Fable (Core)",
67
+ "autoResize": true,
68
+ "lineHeight": 1.25,
69
+ "index": null
70
+ },
71
+ {
72
+ "id": "ft-elb-v-1",
73
+ "type": "line",
74
+ "x": 28,
75
+ "y": 51,
76
+ "width": 0,
77
+ "height": 18,
78
+ "angle": 0,
79
+ "strokeColor": "#8A7F72",
80
+ "backgroundColor": "transparent",
81
+ "fillStyle": "hachure",
82
+ "strokeWidth": 1.3,
83
+ "strokeStyle": "solid",
84
+ "roughness": 0.5,
85
+ "opacity": 100,
86
+ "groupIds": [],
87
+ "frameId": null,
88
+ "roundness": null,
89
+ "seed": 678,
90
+ "version": 1,
91
+ "versionNonce": 678,
92
+ "isDeleted": false,
93
+ "boundElements": [],
94
+ "updated": 1,
95
+ "link": null,
96
+ "locked": false,
97
+ "index": null,
98
+ "points": [
99
+ [
100
+ 0,
101
+ 0
102
+ ],
103
+ [
104
+ 0,
105
+ 18
106
+ ]
107
+ ],
108
+ "lastCommittedPoint": null,
109
+ "startBinding": null,
110
+ "endBinding": null,
111
+ "startArrowhead": null,
112
+ "endArrowhead": null
113
+ },
114
+ {
115
+ "id": "ft-elb-h-1",
116
+ "type": "line",
117
+ "x": 28,
118
+ "y": 69,
119
+ "width": 16,
120
+ "height": 0,
121
+ "angle": 0,
122
+ "strokeColor": "#8A7F72",
123
+ "backgroundColor": "transparent",
124
+ "fillStyle": "hachure",
125
+ "strokeWidth": 1.3,
126
+ "strokeStyle": "solid",
127
+ "roughness": 0.5,
128
+ "opacity": 100,
129
+ "groupIds": [],
130
+ "frameId": null,
131
+ "roundness": null,
132
+ "seed": 679,
133
+ "version": 1,
134
+ "versionNonce": 679,
135
+ "isDeleted": false,
136
+ "boundElements": [],
137
+ "updated": 1,
138
+ "link": null,
139
+ "locked": false,
140
+ "index": null,
141
+ "points": [
142
+ [
143
+ 0,
144
+ 0
145
+ ],
146
+ [
147
+ 16,
148
+ 0
149
+ ]
150
+ ],
151
+ "lastCommittedPoint": null,
152
+ "startBinding": null,
153
+ "endBinding": null,
154
+ "startArrowhead": null,
155
+ "endArrowhead": null
156
+ },
157
+ {
158
+ "id": "ft-node-768",
159
+ "type": "ellipse",
160
+ "x": 54,
161
+ "y": 65,
162
+ "width": 8,
163
+ "height": 8,
164
+ "angle": 0,
165
+ "strokeColor": "#C9602F",
166
+ "backgroundColor": "#C9602F",
167
+ "fillStyle": "solid",
168
+ "strokeWidth": 1.4,
169
+ "strokeStyle": "solid",
170
+ "roughness": 0,
171
+ "opacity": 100,
172
+ "groupIds": [],
173
+ "frameId": null,
174
+ "roundness": null,
175
+ "seed": 768,
176
+ "version": 1,
177
+ "versionNonce": 768,
178
+ "isDeleted": false,
179
+ "boundElements": [],
180
+ "updated": 1,
181
+ "link": null,
182
+ "locked": false,
183
+ "index": null
184
+ },
185
+ {
186
+ "id": "ft-name-1",
187
+ "type": "text",
188
+ "x": 77,
189
+ "y": 56,
190
+ "width": 229,
191
+ "height": 28,
192
+ "angle": 0,
193
+ "strokeColor": "#1B1F23",
194
+ "backgroundColor": "transparent",
195
+ "fillStyle": "solid",
196
+ "strokeWidth": 1,
197
+ "strokeStyle": "solid",
198
+ "roughness": 1,
199
+ "opacity": 100,
200
+ "groupIds": [],
201
+ "frameId": null,
202
+ "roundness": null,
203
+ "seed": 669,
204
+ "version": 1,
205
+ "versionNonce": 669,
206
+ "isDeleted": false,
207
+ "boundElements": null,
208
+ "updated": 1,
209
+ "link": null,
210
+ "locked": false,
211
+ "text": "Retold Data Service",
212
+ "fontSize": 20,
213
+ "fontFamily": 5,
214
+ "textAlign": "left",
215
+ "verticalAlign": "top",
216
+ "containerId": null,
217
+ "originalText": "Retold Data Service",
218
+ "autoResize": true,
219
+ "lineHeight": 1.25,
220
+ "index": null
221
+ },
222
+ {
223
+ "id": "ft-elb-v-2",
224
+ "type": "line",
225
+ "x": 58,
226
+ "y": 86,
227
+ "width": 0,
228
+ "height": 35,
229
+ "angle": 0,
230
+ "strokeColor": "#8A7F72",
231
+ "backgroundColor": "transparent",
232
+ "fillStyle": "hachure",
233
+ "strokeWidth": 1.3,
234
+ "strokeStyle": "solid",
235
+ "roughness": 0.5,
236
+ "opacity": 100,
237
+ "groupIds": [],
238
+ "frameId": null,
239
+ "roundness": null,
240
+ "seed": 930,
241
+ "version": 1,
242
+ "versionNonce": 930,
243
+ "isDeleted": false,
244
+ "boundElements": [],
245
+ "updated": 1,
246
+ "link": null,
247
+ "locked": false,
248
+ "index": null,
249
+ "points": [
250
+ [
251
+ 0,
252
+ 0
253
+ ],
254
+ [
255
+ 0,
256
+ 35
257
+ ]
258
+ ],
259
+ "lastCommittedPoint": null,
260
+ "startBinding": null,
261
+ "endBinding": null,
262
+ "startArrowhead": null,
263
+ "endArrowhead": null
264
+ },
265
+ {
266
+ "id": "ft-elb-h-2",
267
+ "type": "line",
268
+ "x": 58,
269
+ "y": 104,
270
+ "width": 16,
271
+ "height": 0,
272
+ "angle": 0,
273
+ "strokeColor": "#8A7F72",
274
+ "backgroundColor": "transparent",
275
+ "fillStyle": "hachure",
276
+ "strokeWidth": 1.3,
277
+ "strokeStyle": "solid",
278
+ "roughness": 0.5,
279
+ "opacity": 100,
280
+ "groupIds": [],
281
+ "frameId": null,
282
+ "roundness": null,
283
+ "seed": 931,
284
+ "version": 1,
285
+ "versionNonce": 931,
286
+ "isDeleted": false,
287
+ "boundElements": [],
288
+ "updated": 1,
289
+ "link": null,
290
+ "locked": false,
291
+ "index": null,
292
+ "points": [
293
+ [
294
+ 0,
295
+ 0
296
+ ],
297
+ [
298
+ 16,
299
+ 0
300
+ ]
301
+ ],
302
+ "lastCommittedPoint": null,
303
+ "startBinding": null,
304
+ "endBinding": null,
305
+ "startArrowhead": null,
306
+ "endArrowhead": null
307
+ },
308
+ {
309
+ "id": "ft-node-1020",
310
+ "type": "ellipse",
311
+ "x": 84,
312
+ "y": 100,
313
+ "width": 8,
314
+ "height": 8,
315
+ "angle": 0,
316
+ "strokeColor": "#C9602F",
317
+ "backgroundColor": "#C9602F",
318
+ "fillStyle": "solid",
319
+ "strokeWidth": 1.4,
320
+ "strokeStyle": "solid",
321
+ "roughness": 0,
322
+ "opacity": 100,
323
+ "groupIds": [],
324
+ "frameId": null,
325
+ "roundness": null,
326
+ "seed": 1020,
327
+ "version": 1,
328
+ "versionNonce": 1020,
329
+ "isDeleted": false,
330
+ "boundElements": [],
331
+ "updated": 1,
332
+ "link": null,
333
+ "locked": false,
334
+ "index": null
335
+ },
336
+ {
337
+ "id": "ft-name-2",
338
+ "type": "text",
339
+ "x": 107,
340
+ "y": 91,
341
+ "width": 229,
342
+ "height": 28,
343
+ "angle": 0,
344
+ "strokeColor": "#1B1F23",
345
+ "backgroundColor": "transparent",
346
+ "fillStyle": "solid",
347
+ "strokeWidth": 1,
348
+ "strokeStyle": "solid",
349
+ "roughness": 1,
350
+ "opacity": 100,
351
+ "groupIds": [],
352
+ "frameId": null,
353
+ "roundness": null,
354
+ "seed": 921,
355
+ "version": 1,
356
+ "versionNonce": 921,
357
+ "isDeleted": false,
358
+ "boundElements": null,
359
+ "updated": 1,
360
+ "link": null,
361
+ "locked": false,
362
+ "text": "Orator (API Server)",
363
+ "fontSize": 20,
364
+ "fontFamily": 5,
365
+ "textAlign": "left",
366
+ "verticalAlign": "top",
367
+ "containerId": null,
368
+ "originalText": "Orator (API Server)",
369
+ "autoResize": true,
370
+ "lineHeight": 1.25,
371
+ "index": null
372
+ },
373
+ {
374
+ "id": "ft-rail-3-1",
375
+ "type": "line",
376
+ "x": 58,
377
+ "y": 121,
378
+ "width": 0,
379
+ "height": 35,
380
+ "angle": 0,
381
+ "strokeColor": "#8A7F72",
382
+ "backgroundColor": "transparent",
383
+ "fillStyle": "hachure",
384
+ "strokeWidth": 1.3,
385
+ "strokeStyle": "solid",
386
+ "roughness": 0.5,
387
+ "opacity": 100,
388
+ "groupIds": [],
389
+ "frameId": null,
390
+ "roundness": null,
391
+ "seed": 759,
392
+ "version": 1,
393
+ "versionNonce": 759,
394
+ "isDeleted": false,
395
+ "boundElements": [],
396
+ "updated": 1,
397
+ "link": null,
398
+ "locked": false,
399
+ "index": null,
400
+ "points": [
401
+ [
402
+ 0,
403
+ 0
404
+ ],
405
+ [
406
+ 0,
407
+ 35
408
+ ]
409
+ ],
410
+ "lastCommittedPoint": null,
411
+ "startBinding": null,
412
+ "endBinding": null,
413
+ "startArrowhead": null,
414
+ "endArrowhead": null
415
+ },
416
+ {
417
+ "id": "ft-elb-v-3",
418
+ "type": "line",
419
+ "x": 88,
420
+ "y": 121,
421
+ "width": 0,
422
+ "height": 18,
423
+ "angle": 0,
424
+ "strokeColor": "#8A7F72",
425
+ "backgroundColor": "transparent",
426
+ "fillStyle": "hachure",
427
+ "strokeWidth": 1.3,
428
+ "strokeStyle": "solid",
429
+ "roughness": 0.5,
430
+ "opacity": 100,
431
+ "groupIds": [],
432
+ "frameId": null,
433
+ "roundness": null,
434
+ "seed": 738,
435
+ "version": 1,
436
+ "versionNonce": 738,
437
+ "isDeleted": false,
438
+ "boundElements": [],
439
+ "updated": 1,
440
+ "link": null,
441
+ "locked": false,
442
+ "index": null,
443
+ "points": [
444
+ [
445
+ 0,
446
+ 0
447
+ ],
448
+ [
449
+ 0,
450
+ 18
451
+ ]
452
+ ],
453
+ "lastCommittedPoint": null,
454
+ "startBinding": null,
455
+ "endBinding": null,
456
+ "startArrowhead": null,
457
+ "endArrowhead": null
458
+ },
459
+ {
460
+ "id": "ft-elb-h-3",
461
+ "type": "line",
462
+ "x": 88,
463
+ "y": 139,
464
+ "width": 16,
465
+ "height": 0,
466
+ "angle": 0,
467
+ "strokeColor": "#8A7F72",
468
+ "backgroundColor": "transparent",
469
+ "fillStyle": "hachure",
470
+ "strokeWidth": 1.3,
471
+ "strokeStyle": "solid",
472
+ "roughness": 0.5,
473
+ "opacity": 100,
474
+ "groupIds": [],
475
+ "frameId": null,
476
+ "roundness": null,
477
+ "seed": 739,
478
+ "version": 1,
479
+ "versionNonce": 739,
480
+ "isDeleted": false,
481
+ "boundElements": [],
482
+ "updated": 1,
483
+ "link": null,
484
+ "locked": false,
485
+ "index": null,
486
+ "points": [
487
+ [
488
+ 0,
489
+ 0
490
+ ],
491
+ [
492
+ 16,
493
+ 0
494
+ ]
495
+ ],
496
+ "lastCommittedPoint": null,
497
+ "startBinding": null,
498
+ "endBinding": null,
499
+ "startArrowhead": null,
500
+ "endArrowhead": null
501
+ },
502
+ {
503
+ "id": "ft-node-828",
504
+ "type": "ellipse",
505
+ "x": 114,
506
+ "y": 135,
507
+ "width": 8,
508
+ "height": 8,
509
+ "angle": 0,
510
+ "strokeColor": "#8A7F72",
511
+ "backgroundColor": "#8A7F72",
512
+ "fillStyle": "solid",
513
+ "strokeWidth": 1.4,
514
+ "strokeStyle": "solid",
515
+ "roughness": 0,
516
+ "opacity": 100,
517
+ "groupIds": [],
518
+ "frameId": null,
519
+ "roundness": null,
520
+ "seed": 828,
521
+ "version": 1,
522
+ "versionNonce": 828,
523
+ "isDeleted": false,
524
+ "boundElements": [],
525
+ "updated": 1,
526
+ "link": null,
527
+ "locked": false,
528
+ "index": null
529
+ },
530
+ {
531
+ "id": "ft-name-3",
532
+ "type": "text",
533
+ "x": 137,
534
+ "y": 126,
535
+ "width": 252,
536
+ "height": 28,
537
+ "angle": 0,
538
+ "strokeColor": "#1B1F23",
539
+ "backgroundColor": "transparent",
540
+ "fillStyle": "solid",
541
+ "strokeWidth": 1,
542
+ "strokeStyle": "solid",
543
+ "roughness": 1,
544
+ "opacity": 100,
545
+ "groupIds": [],
546
+ "frameId": null,
547
+ "roundness": null,
548
+ "seed": 729,
549
+ "version": 1,
550
+ "versionNonce": 729,
551
+ "isDeleted": false,
552
+ "boundElements": null,
553
+ "updated": 1,
554
+ "link": null,
555
+ "locked": false,
556
+ "text": "Restify (HTTP Engine)",
557
+ "fontSize": 20,
558
+ "fontFamily": 5,
559
+ "textAlign": "left",
560
+ "verticalAlign": "top",
561
+ "containerId": null,
562
+ "originalText": "Restify (HTTP Engine)",
563
+ "autoResize": true,
564
+ "lineHeight": 1.25,
565
+ "index": null
566
+ },
567
+ {
568
+ "id": "ft-elb-v-4",
569
+ "type": "line",
570
+ "x": 58,
571
+ "y": 156,
572
+ "width": 0,
573
+ "height": 35,
574
+ "angle": 0,
575
+ "strokeColor": "#8A7F72",
576
+ "backgroundColor": "transparent",
577
+ "fillStyle": "hachure",
578
+ "strokeWidth": 1.3,
579
+ "strokeStyle": "solid",
580
+ "roughness": 0.5,
581
+ "opacity": 100,
582
+ "groupIds": [],
583
+ "frameId": null,
584
+ "roundness": null,
585
+ "seed": 871,
586
+ "version": 1,
587
+ "versionNonce": 871,
588
+ "isDeleted": false,
589
+ "boundElements": [],
590
+ "updated": 1,
591
+ "link": null,
592
+ "locked": false,
593
+ "index": null,
594
+ "points": [
595
+ [
596
+ 0,
597
+ 0
598
+ ],
599
+ [
600
+ 0,
601
+ 35
602
+ ]
603
+ ],
604
+ "lastCommittedPoint": null,
605
+ "startBinding": null,
606
+ "endBinding": null,
607
+ "startArrowhead": null,
608
+ "endArrowhead": null
609
+ },
610
+ {
611
+ "id": "ft-elb-h-4",
612
+ "type": "line",
613
+ "x": 58,
614
+ "y": 174,
615
+ "width": 16,
616
+ "height": 0,
617
+ "angle": 0,
618
+ "strokeColor": "#8A7F72",
619
+ "backgroundColor": "transparent",
620
+ "fillStyle": "hachure",
621
+ "strokeWidth": 1.3,
622
+ "strokeStyle": "solid",
623
+ "roughness": 0.5,
624
+ "opacity": 100,
625
+ "groupIds": [],
626
+ "frameId": null,
627
+ "roundness": null,
628
+ "seed": 872,
629
+ "version": 1,
630
+ "versionNonce": 872,
631
+ "isDeleted": false,
632
+ "boundElements": [],
633
+ "updated": 1,
634
+ "link": null,
635
+ "locked": false,
636
+ "index": null,
637
+ "points": [
638
+ [
639
+ 0,
640
+ 0
641
+ ],
642
+ [
643
+ 16,
644
+ 0
645
+ ]
646
+ ],
647
+ "lastCommittedPoint": null,
648
+ "startBinding": null,
649
+ "endBinding": null,
650
+ "startArrowhead": null,
651
+ "endArrowhead": null
652
+ },
653
+ {
654
+ "id": "ft-node-961",
655
+ "type": "ellipse",
656
+ "x": 84,
657
+ "y": 170,
658
+ "width": 8,
659
+ "height": 8,
660
+ "angle": 0,
661
+ "strokeColor": "#C9602F",
662
+ "backgroundColor": "#C9602F",
663
+ "fillStyle": "solid",
664
+ "strokeWidth": 1.4,
665
+ "strokeStyle": "solid",
666
+ "roughness": 0,
667
+ "opacity": 100,
668
+ "groupIds": [],
669
+ "frameId": null,
670
+ "roundness": null,
671
+ "seed": 961,
672
+ "version": 1,
673
+ "versionNonce": 961,
674
+ "isDeleted": false,
675
+ "boundElements": [],
676
+ "updated": 1,
677
+ "link": null,
678
+ "locked": false,
679
+ "index": null
680
+ },
681
+ {
682
+ "id": "ft-name-4",
683
+ "type": "text",
684
+ "x": 107,
685
+ "y": 161,
686
+ "width": 310,
687
+ "height": 28,
688
+ "angle": 0,
689
+ "strokeColor": "#1B1F23",
690
+ "backgroundColor": "transparent",
691
+ "fillStyle": "solid",
692
+ "strokeWidth": 1,
693
+ "strokeStyle": "solid",
694
+ "roughness": 1,
695
+ "opacity": 100,
696
+ "groupIds": [],
697
+ "frameId": null,
698
+ "roundness": null,
699
+ "seed": 862,
700
+ "version": 1,
701
+ "versionNonce": 862,
702
+ "isDeleted": false,
703
+ "boundElements": null,
704
+ "updated": 1,
705
+ "link": null,
706
+ "locked": false,
707
+ "text": "Meadow (Data Access Layer)",
708
+ "fontSize": 20,
709
+ "fontFamily": 5,
710
+ "textAlign": "left",
711
+ "verticalAlign": "top",
712
+ "containerId": null,
713
+ "originalText": "Meadow (Data Access Layer)",
714
+ "autoResize": true,
715
+ "lineHeight": 1.25,
716
+ "index": null
717
+ },
718
+ {
719
+ "id": "ft-rail-5-1",
720
+ "type": "line",
721
+ "x": 58,
722
+ "y": 191,
723
+ "width": 0,
724
+ "height": 35,
725
+ "angle": 0,
726
+ "strokeColor": "#8A7F72",
727
+ "backgroundColor": "transparent",
728
+ "fillStyle": "hachure",
729
+ "strokeWidth": 1.3,
730
+ "strokeStyle": "solid",
731
+ "roughness": 0.5,
732
+ "opacity": 100,
733
+ "groupIds": [],
734
+ "frameId": null,
735
+ "roundness": null,
736
+ "seed": 439,
737
+ "version": 1,
738
+ "versionNonce": 439,
739
+ "isDeleted": false,
740
+ "boundElements": [],
741
+ "updated": 1,
742
+ "link": null,
743
+ "locked": false,
744
+ "index": null,
745
+ "points": [
746
+ [
747
+ 0,
748
+ 0
749
+ ],
750
+ [
751
+ 0,
752
+ 35
753
+ ]
754
+ ],
755
+ "lastCommittedPoint": null,
756
+ "startBinding": null,
757
+ "endBinding": null,
758
+ "startArrowhead": null,
759
+ "endArrowhead": null
760
+ },
761
+ {
762
+ "id": "ft-elb-v-5",
763
+ "type": "line",
764
+ "x": 88,
765
+ "y": 191,
766
+ "width": 0,
767
+ "height": 35,
768
+ "angle": 0,
769
+ "strokeColor": "#8A7F72",
770
+ "backgroundColor": "transparent",
771
+ "fillStyle": "hachure",
772
+ "strokeWidth": 1.3,
773
+ "strokeStyle": "solid",
774
+ "roughness": 0.5,
775
+ "opacity": 100,
776
+ "groupIds": [],
777
+ "frameId": null,
778
+ "roundness": null,
779
+ "seed": 418,
780
+ "version": 1,
781
+ "versionNonce": 418,
782
+ "isDeleted": false,
783
+ "boundElements": [],
784
+ "updated": 1,
785
+ "link": null,
786
+ "locked": false,
787
+ "index": null,
788
+ "points": [
789
+ [
790
+ 0,
791
+ 0
792
+ ],
793
+ [
794
+ 0,
795
+ 35
796
+ ]
797
+ ],
798
+ "lastCommittedPoint": null,
799
+ "startBinding": null,
800
+ "endBinding": null,
801
+ "startArrowhead": null,
802
+ "endArrowhead": null
803
+ },
804
+ {
805
+ "id": "ft-elb-h-5",
806
+ "type": "line",
807
+ "x": 88,
808
+ "y": 209,
809
+ "width": 16,
810
+ "height": 0,
811
+ "angle": 0,
812
+ "strokeColor": "#8A7F72",
813
+ "backgroundColor": "transparent",
814
+ "fillStyle": "hachure",
815
+ "strokeWidth": 1.3,
816
+ "strokeStyle": "solid",
817
+ "roughness": 0.5,
818
+ "opacity": 100,
819
+ "groupIds": [],
820
+ "frameId": null,
821
+ "roundness": null,
822
+ "seed": 419,
823
+ "version": 1,
824
+ "versionNonce": 419,
825
+ "isDeleted": false,
826
+ "boundElements": [],
827
+ "updated": 1,
828
+ "link": null,
829
+ "locked": false,
830
+ "index": null,
831
+ "points": [
832
+ [
833
+ 0,
834
+ 0
835
+ ],
836
+ [
837
+ 16,
838
+ 0
839
+ ]
840
+ ],
841
+ "lastCommittedPoint": null,
842
+ "startBinding": null,
843
+ "endBinding": null,
844
+ "startArrowhead": null,
845
+ "endArrowhead": null
846
+ },
847
+ {
848
+ "id": "ft-node-508",
849
+ "type": "ellipse",
850
+ "x": 114,
851
+ "y": 205,
852
+ "width": 8,
853
+ "height": 8,
854
+ "angle": 0,
855
+ "strokeColor": "#8A7F72",
856
+ "backgroundColor": "#8A7F72",
857
+ "fillStyle": "solid",
858
+ "strokeWidth": 1.4,
859
+ "strokeStyle": "solid",
860
+ "roughness": 0,
861
+ "opacity": 100,
862
+ "groupIds": [],
863
+ "frameId": null,
864
+ "roundness": null,
865
+ "seed": 508,
866
+ "version": 1,
867
+ "versionNonce": 508,
868
+ "isDeleted": false,
869
+ "boundElements": [],
870
+ "updated": 1,
871
+ "link": null,
872
+ "locked": false,
873
+ "index": null
874
+ },
875
+ {
876
+ "id": "ft-name-5",
877
+ "type": "text",
878
+ "x": 137,
879
+ "y": 196,
880
+ "width": 449,
881
+ "height": 28,
882
+ "angle": 0,
883
+ "strokeColor": "#1B1F23",
884
+ "backgroundColor": "transparent",
885
+ "fillStyle": "solid",
886
+ "strokeWidth": 1,
887
+ "strokeStyle": "solid",
888
+ "roughness": 1,
889
+ "opacity": 100,
890
+ "groupIds": [],
891
+ "frameId": null,
892
+ "roundness": null,
893
+ "seed": 409,
894
+ "version": 1,
895
+ "versionNonce": 409,
896
+ "isDeleted": false,
897
+ "boundElements": null,
898
+ "updated": 1,
899
+ "link": null,
900
+ "locked": false,
901
+ "text": "Schema (from compiled Stricture model)",
902
+ "fontSize": 20,
903
+ "fontFamily": 5,
904
+ "textAlign": "left",
905
+ "verticalAlign": "top",
906
+ "containerId": null,
907
+ "originalText": "Schema (from compiled Stricture model)",
908
+ "autoResize": true,
909
+ "lineHeight": 1.25,
910
+ "index": null
911
+ },
912
+ {
913
+ "id": "ft-rail-6-1",
914
+ "type": "line",
915
+ "x": 58,
916
+ "y": 226,
917
+ "width": 0,
918
+ "height": 35,
919
+ "angle": 0,
920
+ "strokeColor": "#8A7F72",
921
+ "backgroundColor": "transparent",
922
+ "fillStyle": "hachure",
923
+ "strokeWidth": 1.3,
924
+ "strokeStyle": "solid",
925
+ "roughness": 0.5,
926
+ "opacity": 100,
927
+ "groupIds": [],
928
+ "frameId": null,
929
+ "roundness": null,
930
+ "seed": 731,
931
+ "version": 1,
932
+ "versionNonce": 731,
933
+ "isDeleted": false,
934
+ "boundElements": [],
935
+ "updated": 1,
936
+ "link": null,
937
+ "locked": false,
938
+ "index": null,
939
+ "points": [
940
+ [
941
+ 0,
942
+ 0
943
+ ],
944
+ [
945
+ 0,
946
+ 35
947
+ ]
948
+ ],
949
+ "lastCommittedPoint": null,
950
+ "startBinding": null,
951
+ "endBinding": null,
952
+ "startArrowhead": null,
953
+ "endArrowhead": null
954
+ },
955
+ {
956
+ "id": "ft-elb-v-6",
957
+ "type": "line",
958
+ "x": 88,
959
+ "y": 226,
960
+ "width": 0,
961
+ "height": 35,
962
+ "angle": 0,
963
+ "strokeColor": "#8A7F72",
964
+ "backgroundColor": "transparent",
965
+ "fillStyle": "hachure",
966
+ "strokeWidth": 1.3,
967
+ "strokeStyle": "solid",
968
+ "roughness": 0.5,
969
+ "opacity": 100,
970
+ "groupIds": [],
971
+ "frameId": null,
972
+ "roundness": null,
973
+ "seed": 710,
974
+ "version": 1,
975
+ "versionNonce": 710,
976
+ "isDeleted": false,
977
+ "boundElements": [],
978
+ "updated": 1,
979
+ "link": null,
980
+ "locked": false,
981
+ "index": null,
982
+ "points": [
983
+ [
984
+ 0,
985
+ 0
986
+ ],
987
+ [
988
+ 0,
989
+ 35
990
+ ]
991
+ ],
992
+ "lastCommittedPoint": null,
993
+ "startBinding": null,
994
+ "endBinding": null,
995
+ "startArrowhead": null,
996
+ "endArrowhead": null
997
+ },
998
+ {
999
+ "id": "ft-elb-h-6",
1000
+ "type": "line",
1001
+ "x": 88,
1002
+ "y": 244,
1003
+ "width": 16,
1004
+ "height": 0,
1005
+ "angle": 0,
1006
+ "strokeColor": "#8A7F72",
1007
+ "backgroundColor": "transparent",
1008
+ "fillStyle": "hachure",
1009
+ "strokeWidth": 1.3,
1010
+ "strokeStyle": "solid",
1011
+ "roughness": 0.5,
1012
+ "opacity": 100,
1013
+ "groupIds": [],
1014
+ "frameId": null,
1015
+ "roundness": null,
1016
+ "seed": 711,
1017
+ "version": 1,
1018
+ "versionNonce": 711,
1019
+ "isDeleted": false,
1020
+ "boundElements": [],
1021
+ "updated": 1,
1022
+ "link": null,
1023
+ "locked": false,
1024
+ "index": null,
1025
+ "points": [
1026
+ [
1027
+ 0,
1028
+ 0
1029
+ ],
1030
+ [
1031
+ 16,
1032
+ 0
1033
+ ]
1034
+ ],
1035
+ "lastCommittedPoint": null,
1036
+ "startBinding": null,
1037
+ "endBinding": null,
1038
+ "startArrowhead": null,
1039
+ "endArrowhead": null
1040
+ },
1041
+ {
1042
+ "id": "ft-node-800",
1043
+ "type": "ellipse",
1044
+ "x": 114,
1045
+ "y": 240,
1046
+ "width": 8,
1047
+ "height": 8,
1048
+ "angle": 0,
1049
+ "strokeColor": "#8A7F72",
1050
+ "backgroundColor": "#8A7F72",
1051
+ "fillStyle": "solid",
1052
+ "strokeWidth": 1.4,
1053
+ "strokeStyle": "solid",
1054
+ "roughness": 0,
1055
+ "opacity": 100,
1056
+ "groupIds": [],
1057
+ "frameId": null,
1058
+ "roundness": null,
1059
+ "seed": 800,
1060
+ "version": 1,
1061
+ "versionNonce": 800,
1062
+ "isDeleted": false,
1063
+ "boundElements": [],
1064
+ "updated": 1,
1065
+ "link": null,
1066
+ "locked": false,
1067
+ "index": null
1068
+ },
1069
+ {
1070
+ "id": "ft-name-6",
1071
+ "type": "text",
1072
+ "x": 137,
1073
+ "y": 231,
1074
+ "width": 240,
1075
+ "height": 28,
1076
+ "angle": 0,
1077
+ "strokeColor": "#1B1F23",
1078
+ "backgroundColor": "transparent",
1079
+ "fillStyle": "solid",
1080
+ "strokeWidth": 1,
1081
+ "strokeStyle": "solid",
1082
+ "roughness": 1,
1083
+ "opacity": 100,
1084
+ "groupIds": [],
1085
+ "frameId": null,
1086
+ "roundness": null,
1087
+ "seed": 701,
1088
+ "version": 1,
1089
+ "versionNonce": 701,
1090
+ "isDeleted": false,
1091
+ "boundElements": null,
1092
+ "updated": 1,
1093
+ "link": null,
1094
+ "locked": false,
1095
+ "text": "FoxHound (Query DSL)",
1096
+ "fontSize": 20,
1097
+ "fontFamily": 5,
1098
+ "textAlign": "left",
1099
+ "verticalAlign": "top",
1100
+ "containerId": null,
1101
+ "originalText": "FoxHound (Query DSL)",
1102
+ "autoResize": true,
1103
+ "lineHeight": 1.25,
1104
+ "index": null
1105
+ },
1106
+ {
1107
+ "id": "ft-rail-7-1",
1108
+ "type": "line",
1109
+ "x": 58,
1110
+ "y": 261,
1111
+ "width": 0,
1112
+ "height": 35,
1113
+ "angle": 0,
1114
+ "strokeColor": "#8A7F72",
1115
+ "backgroundColor": "transparent",
1116
+ "fillStyle": "hachure",
1117
+ "strokeWidth": 1.3,
1118
+ "strokeStyle": "solid",
1119
+ "roughness": 0.5,
1120
+ "opacity": 100,
1121
+ "groupIds": [],
1122
+ "frameId": null,
1123
+ "roundness": null,
1124
+ "seed": 539,
1125
+ "version": 1,
1126
+ "versionNonce": 539,
1127
+ "isDeleted": false,
1128
+ "boundElements": [],
1129
+ "updated": 1,
1130
+ "link": null,
1131
+ "locked": false,
1132
+ "index": null,
1133
+ "points": [
1134
+ [
1135
+ 0,
1136
+ 0
1137
+ ],
1138
+ [
1139
+ 0,
1140
+ 35
1141
+ ]
1142
+ ],
1143
+ "lastCommittedPoint": null,
1144
+ "startBinding": null,
1145
+ "endBinding": null,
1146
+ "startArrowhead": null,
1147
+ "endArrowhead": null
1148
+ },
1149
+ {
1150
+ "id": "ft-elb-v-7",
1151
+ "type": "line",
1152
+ "x": 88,
1153
+ "y": 261,
1154
+ "width": 0,
1155
+ "height": 18,
1156
+ "angle": 0,
1157
+ "strokeColor": "#8A7F72",
1158
+ "backgroundColor": "transparent",
1159
+ "fillStyle": "hachure",
1160
+ "strokeWidth": 1.3,
1161
+ "strokeStyle": "solid",
1162
+ "roughness": 0.5,
1163
+ "opacity": 100,
1164
+ "groupIds": [],
1165
+ "frameId": null,
1166
+ "roundness": null,
1167
+ "seed": 518,
1168
+ "version": 1,
1169
+ "versionNonce": 518,
1170
+ "isDeleted": false,
1171
+ "boundElements": [],
1172
+ "updated": 1,
1173
+ "link": null,
1174
+ "locked": false,
1175
+ "index": null,
1176
+ "points": [
1177
+ [
1178
+ 0,
1179
+ 0
1180
+ ],
1181
+ [
1182
+ 0,
1183
+ 18
1184
+ ]
1185
+ ],
1186
+ "lastCommittedPoint": null,
1187
+ "startBinding": null,
1188
+ "endBinding": null,
1189
+ "startArrowhead": null,
1190
+ "endArrowhead": null
1191
+ },
1192
+ {
1193
+ "id": "ft-elb-h-7",
1194
+ "type": "line",
1195
+ "x": 88,
1196
+ "y": 279,
1197
+ "width": 16,
1198
+ "height": 0,
1199
+ "angle": 0,
1200
+ "strokeColor": "#8A7F72",
1201
+ "backgroundColor": "transparent",
1202
+ "fillStyle": "hachure",
1203
+ "strokeWidth": 1.3,
1204
+ "strokeStyle": "solid",
1205
+ "roughness": 0.5,
1206
+ "opacity": 100,
1207
+ "groupIds": [],
1208
+ "frameId": null,
1209
+ "roundness": null,
1210
+ "seed": 519,
1211
+ "version": 1,
1212
+ "versionNonce": 519,
1213
+ "isDeleted": false,
1214
+ "boundElements": [],
1215
+ "updated": 1,
1216
+ "link": null,
1217
+ "locked": false,
1218
+ "index": null,
1219
+ "points": [
1220
+ [
1221
+ 0,
1222
+ 0
1223
+ ],
1224
+ [
1225
+ 16,
1226
+ 0
1227
+ ]
1228
+ ],
1229
+ "lastCommittedPoint": null,
1230
+ "startBinding": null,
1231
+ "endBinding": null,
1232
+ "startArrowhead": null,
1233
+ "endArrowhead": null
1234
+ },
1235
+ {
1236
+ "id": "ft-node-608",
1237
+ "type": "ellipse",
1238
+ "x": 114,
1239
+ "y": 275,
1240
+ "width": 8,
1241
+ "height": 8,
1242
+ "angle": 0,
1243
+ "strokeColor": "#8A7F72",
1244
+ "backgroundColor": "#8A7F72",
1245
+ "fillStyle": "solid",
1246
+ "strokeWidth": 1.4,
1247
+ "strokeStyle": "solid",
1248
+ "roughness": 0,
1249
+ "opacity": 100,
1250
+ "groupIds": [],
1251
+ "frameId": null,
1252
+ "roundness": null,
1253
+ "seed": 608,
1254
+ "version": 1,
1255
+ "versionNonce": 608,
1256
+ "isDeleted": false,
1257
+ "boundElements": [],
1258
+ "updated": 1,
1259
+ "link": null,
1260
+ "locked": false,
1261
+ "index": null
1262
+ },
1263
+ {
1264
+ "id": "ft-name-7",
1265
+ "type": "text",
1266
+ "x": 137,
1267
+ "y": 266,
1268
+ "width": 739,
1269
+ "height": 28,
1270
+ "angle": 0,
1271
+ "strokeColor": "#1B1F23",
1272
+ "backgroundColor": "transparent",
1273
+ "fillStyle": "solid",
1274
+ "strokeWidth": 1,
1275
+ "strokeStyle": "solid",
1276
+ "roughness": 1,
1277
+ "opacity": 100,
1278
+ "groupIds": [],
1279
+ "frameId": null,
1280
+ "roundness": null,
1281
+ "seed": 509,
1282
+ "version": 1,
1283
+ "versionNonce": 509,
1284
+ "isDeleted": false,
1285
+ "boundElements": null,
1286
+ "updated": 1,
1287
+ "link": null,
1288
+ "locked": false,
1289
+ "text": "Provider (MySQL / MSSQL / PostgreSQL / SQLite / MongoDB / etc.)",
1290
+ "fontSize": 20,
1291
+ "fontFamily": 5,
1292
+ "textAlign": "left",
1293
+ "verticalAlign": "top",
1294
+ "containerId": null,
1295
+ "originalText": "Provider (MySQL / MSSQL / PostgreSQL / SQLite / MongoDB / etc.)",
1296
+ "autoResize": true,
1297
+ "lineHeight": 1.25,
1298
+ "index": null
1299
+ },
1300
+ {
1301
+ "id": "ft-elb-v-8",
1302
+ "type": "line",
1303
+ "x": 58,
1304
+ "y": 296,
1305
+ "width": 0,
1306
+ "height": 18,
1307
+ "angle": 0,
1308
+ "strokeColor": "#8A7F72",
1309
+ "backgroundColor": "transparent",
1310
+ "fillStyle": "hachure",
1311
+ "strokeWidth": 1.3,
1312
+ "strokeStyle": "solid",
1313
+ "roughness": 0.5,
1314
+ "opacity": 100,
1315
+ "groupIds": [],
1316
+ "frameId": null,
1317
+ "roundness": null,
1318
+ "seed": 110,
1319
+ "version": 1,
1320
+ "versionNonce": 110,
1321
+ "isDeleted": false,
1322
+ "boundElements": [],
1323
+ "updated": 1,
1324
+ "link": null,
1325
+ "locked": false,
1326
+ "index": null,
1327
+ "points": [
1328
+ [
1329
+ 0,
1330
+ 0
1331
+ ],
1332
+ [
1333
+ 0,
1334
+ 18
1335
+ ]
1336
+ ],
1337
+ "lastCommittedPoint": null,
1338
+ "startBinding": null,
1339
+ "endBinding": null,
1340
+ "startArrowhead": null,
1341
+ "endArrowhead": null
1342
+ },
1343
+ {
1344
+ "id": "ft-elb-h-8",
1345
+ "type": "line",
1346
+ "x": 58,
1347
+ "y": 314,
1348
+ "width": 16,
1349
+ "height": 0,
1350
+ "angle": 0,
1351
+ "strokeColor": "#8A7F72",
1352
+ "backgroundColor": "transparent",
1353
+ "fillStyle": "hachure",
1354
+ "strokeWidth": 1.3,
1355
+ "strokeStyle": "solid",
1356
+ "roughness": 0.5,
1357
+ "opacity": 100,
1358
+ "groupIds": [],
1359
+ "frameId": null,
1360
+ "roundness": null,
1361
+ "seed": 111,
1362
+ "version": 1,
1363
+ "versionNonce": 111,
1364
+ "isDeleted": false,
1365
+ "boundElements": [],
1366
+ "updated": 1,
1367
+ "link": null,
1368
+ "locked": false,
1369
+ "index": null,
1370
+ "points": [
1371
+ [
1372
+ 0,
1373
+ 0
1374
+ ],
1375
+ [
1376
+ 16,
1377
+ 0
1378
+ ]
1379
+ ],
1380
+ "lastCommittedPoint": null,
1381
+ "startBinding": null,
1382
+ "endBinding": null,
1383
+ "startArrowhead": null,
1384
+ "endArrowhead": null
1385
+ },
1386
+ {
1387
+ "id": "ft-node-200",
1388
+ "type": "ellipse",
1389
+ "x": 84,
1390
+ "y": 310,
1391
+ "width": 8,
1392
+ "height": 8,
1393
+ "angle": 0,
1394
+ "strokeColor": "#C9602F",
1395
+ "backgroundColor": "#C9602F",
1396
+ "fillStyle": "solid",
1397
+ "strokeWidth": 1.4,
1398
+ "strokeStyle": "solid",
1399
+ "roughness": 0,
1400
+ "opacity": 100,
1401
+ "groupIds": [],
1402
+ "frameId": null,
1403
+ "roundness": null,
1404
+ "seed": 200,
1405
+ "version": 1,
1406
+ "versionNonce": 200,
1407
+ "isDeleted": false,
1408
+ "boundElements": [],
1409
+ "updated": 1,
1410
+ "link": null,
1411
+ "locked": false,
1412
+ "index": null
1413
+ },
1414
+ {
1415
+ "id": "ft-name-8",
1416
+ "type": "text",
1417
+ "x": 107,
1418
+ "y": 301,
1419
+ "width": 356,
1420
+ "height": 28,
1421
+ "angle": 0,
1422
+ "strokeColor": "#1B1F23",
1423
+ "backgroundColor": "transparent",
1424
+ "fillStyle": "solid",
1425
+ "strokeWidth": 1,
1426
+ "strokeStyle": "solid",
1427
+ "roughness": 1,
1428
+ "opacity": 100,
1429
+ "groupIds": [],
1430
+ "frameId": null,
1431
+ "roundness": null,
1432
+ "seed": 101,
1433
+ "version": 1,
1434
+ "versionNonce": 101,
1435
+ "isDeleted": false,
1436
+ "boundElements": null,
1437
+ "updated": 1,
1438
+ "link": null,
1439
+ "locked": false,
1440
+ "text": "Meadow Endpoints (REST Routes)",
1441
+ "fontSize": 20,
1442
+ "fontFamily": 5,
1443
+ "textAlign": "left",
1444
+ "verticalAlign": "top",
1445
+ "containerId": null,
1446
+ "originalText": "Meadow Endpoints (REST Routes)",
1447
+ "autoResize": true,
1448
+ "lineHeight": 1.25,
1449
+ "index": null
1450
+ },
1451
+ {
1452
+ "id": "ft-elb-v-9",
1453
+ "type": "line",
1454
+ "x": 88,
1455
+ "y": 331,
1456
+ "width": 0,
1457
+ "height": 35,
1458
+ "angle": 0,
1459
+ "strokeColor": "#8A7F72",
1460
+ "backgroundColor": "transparent",
1461
+ "fillStyle": "hachure",
1462
+ "strokeWidth": 1.3,
1463
+ "strokeStyle": "solid",
1464
+ "roughness": 0.5,
1465
+ "opacity": 100,
1466
+ "groupIds": [],
1467
+ "frameId": null,
1468
+ "roundness": null,
1469
+ "seed": 235,
1470
+ "version": 1,
1471
+ "versionNonce": 235,
1472
+ "isDeleted": false,
1473
+ "boundElements": [],
1474
+ "updated": 1,
1475
+ "link": null,
1476
+ "locked": false,
1477
+ "index": null,
1478
+ "points": [
1479
+ [
1480
+ 0,
1481
+ 0
1482
+ ],
1483
+ [
1484
+ 0,
1485
+ 35
1486
+ ]
1487
+ ],
1488
+ "lastCommittedPoint": null,
1489
+ "startBinding": null,
1490
+ "endBinding": null,
1491
+ "startArrowhead": null,
1492
+ "endArrowhead": null
1493
+ },
1494
+ {
1495
+ "id": "ft-elb-h-9",
1496
+ "type": "line",
1497
+ "x": 88,
1498
+ "y": 349,
1499
+ "width": 16,
1500
+ "height": 0,
1501
+ "angle": 0,
1502
+ "strokeColor": "#8A7F72",
1503
+ "backgroundColor": "transparent",
1504
+ "fillStyle": "hachure",
1505
+ "strokeWidth": 1.3,
1506
+ "strokeStyle": "solid",
1507
+ "roughness": 0.5,
1508
+ "opacity": 100,
1509
+ "groupIds": [],
1510
+ "frameId": null,
1511
+ "roundness": null,
1512
+ "seed": 236,
1513
+ "version": 1,
1514
+ "versionNonce": 236,
1515
+ "isDeleted": false,
1516
+ "boundElements": [],
1517
+ "updated": 1,
1518
+ "link": null,
1519
+ "locked": false,
1520
+ "index": null,
1521
+ "points": [
1522
+ [
1523
+ 0,
1524
+ 0
1525
+ ],
1526
+ [
1527
+ 16,
1528
+ 0
1529
+ ]
1530
+ ],
1531
+ "lastCommittedPoint": null,
1532
+ "startBinding": null,
1533
+ "endBinding": null,
1534
+ "startArrowhead": null,
1535
+ "endArrowhead": null
1536
+ },
1537
+ {
1538
+ "id": "ft-node-325",
1539
+ "type": "ellipse",
1540
+ "x": 114,
1541
+ "y": 345,
1542
+ "width": 8,
1543
+ "height": 8,
1544
+ "angle": 0,
1545
+ "strokeColor": "#8A7F72",
1546
+ "backgroundColor": "#8A7F72",
1547
+ "fillStyle": "solid",
1548
+ "strokeWidth": 1.4,
1549
+ "strokeStyle": "solid",
1550
+ "roughness": 0,
1551
+ "opacity": 100,
1552
+ "groupIds": [],
1553
+ "frameId": null,
1554
+ "roundness": null,
1555
+ "seed": 325,
1556
+ "version": 1,
1557
+ "versionNonce": 325,
1558
+ "isDeleted": false,
1559
+ "boundElements": [],
1560
+ "updated": 1,
1561
+ "link": null,
1562
+ "locked": false,
1563
+ "index": null
1564
+ },
1565
+ {
1566
+ "id": "ft-name-9",
1567
+ "type": "text",
1568
+ "x": 137,
1569
+ "y": 336,
1570
+ "width": 78,
1571
+ "height": 28,
1572
+ "angle": 0,
1573
+ "strokeColor": "#1B1F23",
1574
+ "backgroundColor": "transparent",
1575
+ "fillStyle": "solid",
1576
+ "strokeWidth": 1,
1577
+ "strokeStyle": "solid",
1578
+ "roughness": 1,
1579
+ "opacity": 100,
1580
+ "groupIds": [],
1581
+ "frameId": null,
1582
+ "roundness": null,
1583
+ "seed": 226,
1584
+ "version": 1,
1585
+ "versionNonce": 226,
1586
+ "isDeleted": false,
1587
+ "boundElements": null,
1588
+ "updated": 1,
1589
+ "link": null,
1590
+ "locked": false,
1591
+ "text": "Create",
1592
+ "fontSize": 20,
1593
+ "fontFamily": 5,
1594
+ "textAlign": "left",
1595
+ "verticalAlign": "top",
1596
+ "containerId": null,
1597
+ "originalText": "Create",
1598
+ "autoResize": true,
1599
+ "lineHeight": 1.25,
1600
+ "index": null
1601
+ },
1602
+ {
1603
+ "id": "ft-cmt-9",
1604
+ "type": "text",
1605
+ "x": 894,
1606
+ "y": 339,
1607
+ "width": 176,
1608
+ "height": 22,
1609
+ "angle": 0,
1610
+ "strokeColor": "#8A7F72",
1611
+ "backgroundColor": "transparent",
1612
+ "fillStyle": "solid",
1613
+ "strokeWidth": 1,
1614
+ "strokeStyle": "solid",
1615
+ "roughness": 1,
1616
+ "opacity": 100,
1617
+ "groupIds": [],
1618
+ "frameId": null,
1619
+ "roundness": null,
1620
+ "seed": 227,
1621
+ "version": 1,
1622
+ "versionNonce": 227,
1623
+ "isDeleted": false,
1624
+ "boundElements": null,
1625
+ "updated": 1,
1626
+ "link": null,
1627
+ "locked": false,
1628
+ "text": "POST /1.0/Entity",
1629
+ "fontSize": 16,
1630
+ "fontFamily": 5,
1631
+ "textAlign": "left",
1632
+ "verticalAlign": "top",
1633
+ "containerId": null,
1634
+ "originalText": "POST /1.0/Entity",
1635
+ "autoResize": true,
1636
+ "lineHeight": 1.25,
1637
+ "index": null
1638
+ },
1639
+ {
1640
+ "id": "ft-elb-v-10",
1641
+ "type": "line",
1642
+ "x": 88,
1643
+ "y": 366,
1644
+ "width": 0,
1645
+ "height": 35,
1646
+ "angle": 0,
1647
+ "strokeColor": "#8A7F72",
1648
+ "backgroundColor": "transparent",
1649
+ "fillStyle": "hachure",
1650
+ "strokeWidth": 1.3,
1651
+ "strokeStyle": "solid",
1652
+ "roughness": 0.5,
1653
+ "opacity": 100,
1654
+ "groupIds": [],
1655
+ "frameId": null,
1656
+ "roundness": null,
1657
+ "seed": 678,
1658
+ "version": 1,
1659
+ "versionNonce": 678,
1660
+ "isDeleted": false,
1661
+ "boundElements": [],
1662
+ "updated": 1,
1663
+ "link": null,
1664
+ "locked": false,
1665
+ "index": null,
1666
+ "points": [
1667
+ [
1668
+ 0,
1669
+ 0
1670
+ ],
1671
+ [
1672
+ 0,
1673
+ 35
1674
+ ]
1675
+ ],
1676
+ "lastCommittedPoint": null,
1677
+ "startBinding": null,
1678
+ "endBinding": null,
1679
+ "startArrowhead": null,
1680
+ "endArrowhead": null
1681
+ },
1682
+ {
1683
+ "id": "ft-elb-h-10",
1684
+ "type": "line",
1685
+ "x": 88,
1686
+ "y": 384,
1687
+ "width": 16,
1688
+ "height": 0,
1689
+ "angle": 0,
1690
+ "strokeColor": "#8A7F72",
1691
+ "backgroundColor": "transparent",
1692
+ "fillStyle": "hachure",
1693
+ "strokeWidth": 1.3,
1694
+ "strokeStyle": "solid",
1695
+ "roughness": 0.5,
1696
+ "opacity": 100,
1697
+ "groupIds": [],
1698
+ "frameId": null,
1699
+ "roundness": null,
1700
+ "seed": 679,
1701
+ "version": 1,
1702
+ "versionNonce": 679,
1703
+ "isDeleted": false,
1704
+ "boundElements": [],
1705
+ "updated": 1,
1706
+ "link": null,
1707
+ "locked": false,
1708
+ "index": null,
1709
+ "points": [
1710
+ [
1711
+ 0,
1712
+ 0
1713
+ ],
1714
+ [
1715
+ 16,
1716
+ 0
1717
+ ]
1718
+ ],
1719
+ "lastCommittedPoint": null,
1720
+ "startBinding": null,
1721
+ "endBinding": null,
1722
+ "startArrowhead": null,
1723
+ "endArrowhead": null
1724
+ },
1725
+ {
1726
+ "id": "ft-node-768",
1727
+ "type": "ellipse",
1728
+ "x": 114,
1729
+ "y": 380,
1730
+ "width": 8,
1731
+ "height": 8,
1732
+ "angle": 0,
1733
+ "strokeColor": "#8A7F72",
1734
+ "backgroundColor": "#8A7F72",
1735
+ "fillStyle": "solid",
1736
+ "strokeWidth": 1.4,
1737
+ "strokeStyle": "solid",
1738
+ "roughness": 0,
1739
+ "opacity": 100,
1740
+ "groupIds": [],
1741
+ "frameId": null,
1742
+ "roundness": null,
1743
+ "seed": 768,
1744
+ "version": 1,
1745
+ "versionNonce": 768,
1746
+ "isDeleted": false,
1747
+ "boundElements": [],
1748
+ "updated": 1,
1749
+ "link": null,
1750
+ "locked": false,
1751
+ "index": null
1752
+ },
1753
+ {
1754
+ "id": "ft-name-10",
1755
+ "type": "text",
1756
+ "x": 137,
1757
+ "y": 371,
1758
+ "width": 55,
1759
+ "height": 28,
1760
+ "angle": 0,
1761
+ "strokeColor": "#1B1F23",
1762
+ "backgroundColor": "transparent",
1763
+ "fillStyle": "solid",
1764
+ "strokeWidth": 1,
1765
+ "strokeStyle": "solid",
1766
+ "roughness": 1,
1767
+ "opacity": 100,
1768
+ "groupIds": [],
1769
+ "frameId": null,
1770
+ "roundness": null,
1771
+ "seed": 669,
1772
+ "version": 1,
1773
+ "versionNonce": 669,
1774
+ "isDeleted": false,
1775
+ "boundElements": null,
1776
+ "updated": 1,
1777
+ "link": null,
1778
+ "locked": false,
1779
+ "text": "Read",
1780
+ "fontSize": 20,
1781
+ "fontFamily": 5,
1782
+ "textAlign": "left",
1783
+ "verticalAlign": "top",
1784
+ "containerId": null,
1785
+ "originalText": "Read",
1786
+ "autoResize": true,
1787
+ "lineHeight": 1.25,
1788
+ "index": null
1789
+ },
1790
+ {
1791
+ "id": "ft-cmt-10",
1792
+ "type": "text",
1793
+ "x": 894,
1794
+ "y": 374,
1795
+ "width": 213,
1796
+ "height": 22,
1797
+ "angle": 0,
1798
+ "strokeColor": "#8A7F72",
1799
+ "backgroundColor": "transparent",
1800
+ "fillStyle": "solid",
1801
+ "strokeWidth": 1,
1802
+ "strokeStyle": "solid",
1803
+ "roughness": 1,
1804
+ "opacity": 100,
1805
+ "groupIds": [],
1806
+ "frameId": null,
1807
+ "roundness": null,
1808
+ "seed": 670,
1809
+ "version": 1,
1810
+ "versionNonce": 670,
1811
+ "isDeleted": false,
1812
+ "boundElements": null,
1813
+ "updated": 1,
1814
+ "link": null,
1815
+ "locked": false,
1816
+ "text": "GET /1.0/Entity/:ID",
1817
+ "fontSize": 16,
1818
+ "fontFamily": 5,
1819
+ "textAlign": "left",
1820
+ "verticalAlign": "top",
1821
+ "containerId": null,
1822
+ "originalText": "GET /1.0/Entity/:ID",
1823
+ "autoResize": true,
1824
+ "lineHeight": 1.25,
1825
+ "index": null
1826
+ },
1827
+ {
1828
+ "id": "ft-elb-v-11",
1829
+ "type": "line",
1830
+ "x": 88,
1831
+ "y": 401,
1832
+ "width": 0,
1833
+ "height": 35,
1834
+ "angle": 0,
1835
+ "strokeColor": "#8A7F72",
1836
+ "backgroundColor": "transparent",
1837
+ "fillStyle": "hachure",
1838
+ "strokeWidth": 1.3,
1839
+ "strokeStyle": "solid",
1840
+ "roughness": 0.5,
1841
+ "opacity": 100,
1842
+ "groupIds": [],
1843
+ "frameId": null,
1844
+ "roundness": null,
1845
+ "seed": 1002,
1846
+ "version": 1,
1847
+ "versionNonce": 1002,
1848
+ "isDeleted": false,
1849
+ "boundElements": [],
1850
+ "updated": 1,
1851
+ "link": null,
1852
+ "locked": false,
1853
+ "index": null,
1854
+ "points": [
1855
+ [
1856
+ 0,
1857
+ 0
1858
+ ],
1859
+ [
1860
+ 0,
1861
+ 35
1862
+ ]
1863
+ ],
1864
+ "lastCommittedPoint": null,
1865
+ "startBinding": null,
1866
+ "endBinding": null,
1867
+ "startArrowhead": null,
1868
+ "endArrowhead": null
1869
+ },
1870
+ {
1871
+ "id": "ft-elb-h-11",
1872
+ "type": "line",
1873
+ "x": 88,
1874
+ "y": 419,
1875
+ "width": 16,
1876
+ "height": 0,
1877
+ "angle": 0,
1878
+ "strokeColor": "#8A7F72",
1879
+ "backgroundColor": "transparent",
1880
+ "fillStyle": "hachure",
1881
+ "strokeWidth": 1.3,
1882
+ "strokeStyle": "solid",
1883
+ "roughness": 0.5,
1884
+ "opacity": 100,
1885
+ "groupIds": [],
1886
+ "frameId": null,
1887
+ "roundness": null,
1888
+ "seed": 1003,
1889
+ "version": 1,
1890
+ "versionNonce": 1003,
1891
+ "isDeleted": false,
1892
+ "boundElements": [],
1893
+ "updated": 1,
1894
+ "link": null,
1895
+ "locked": false,
1896
+ "index": null,
1897
+ "points": [
1898
+ [
1899
+ 0,
1900
+ 0
1901
+ ],
1902
+ [
1903
+ 16,
1904
+ 0
1905
+ ]
1906
+ ],
1907
+ "lastCommittedPoint": null,
1908
+ "startBinding": null,
1909
+ "endBinding": null,
1910
+ "startArrowhead": null,
1911
+ "endArrowhead": null
1912
+ },
1913
+ {
1914
+ "id": "ft-node-1092",
1915
+ "type": "ellipse",
1916
+ "x": 114,
1917
+ "y": 415,
1918
+ "width": 8,
1919
+ "height": 8,
1920
+ "angle": 0,
1921
+ "strokeColor": "#8A7F72",
1922
+ "backgroundColor": "#8A7F72",
1923
+ "fillStyle": "solid",
1924
+ "strokeWidth": 1.4,
1925
+ "strokeStyle": "solid",
1926
+ "roughness": 0,
1927
+ "opacity": 100,
1928
+ "groupIds": [],
1929
+ "frameId": null,
1930
+ "roundness": null,
1931
+ "seed": 1092,
1932
+ "version": 1,
1933
+ "versionNonce": 1092,
1934
+ "isDeleted": false,
1935
+ "boundElements": [],
1936
+ "updated": 1,
1937
+ "link": null,
1938
+ "locked": false,
1939
+ "index": null
1940
+ },
1941
+ {
1942
+ "id": "ft-name-11",
1943
+ "type": "text",
1944
+ "x": 137,
1945
+ "y": 406,
1946
+ "width": 66,
1947
+ "height": 28,
1948
+ "angle": 0,
1949
+ "strokeColor": "#1B1F23",
1950
+ "backgroundColor": "transparent",
1951
+ "fillStyle": "solid",
1952
+ "strokeWidth": 1,
1953
+ "strokeStyle": "solid",
1954
+ "roughness": 1,
1955
+ "opacity": 100,
1956
+ "groupIds": [],
1957
+ "frameId": null,
1958
+ "roundness": null,
1959
+ "seed": 993,
1960
+ "version": 1,
1961
+ "versionNonce": 993,
1962
+ "isDeleted": false,
1963
+ "boundElements": null,
1964
+ "updated": 1,
1965
+ "link": null,
1966
+ "locked": false,
1967
+ "text": "Reads",
1968
+ "fontSize": 20,
1969
+ "fontFamily": 5,
1970
+ "textAlign": "left",
1971
+ "verticalAlign": "top",
1972
+ "containerId": null,
1973
+ "originalText": "Reads",
1974
+ "autoResize": true,
1975
+ "lineHeight": 1.25,
1976
+ "index": null
1977
+ },
1978
+ {
1979
+ "id": "ft-cmt-11",
1980
+ "type": "text",
1981
+ "x": 894,
1982
+ "y": 409,
1983
+ "width": 305,
1984
+ "height": 22,
1985
+ "angle": 0,
1986
+ "strokeColor": "#8A7F72",
1987
+ "backgroundColor": "transparent",
1988
+ "fillStyle": "solid",
1989
+ "strokeWidth": 1,
1990
+ "strokeStyle": "solid",
1991
+ "roughness": 1,
1992
+ "opacity": 100,
1993
+ "groupIds": [],
1994
+ "frameId": null,
1995
+ "roundness": null,
1996
+ "seed": 994,
1997
+ "version": 1,
1998
+ "versionNonce": 994,
1999
+ "isDeleted": false,
2000
+ "boundElements": null,
2001
+ "updated": 1,
2002
+ "link": null,
2003
+ "locked": false,
2004
+ "text": "GET /1.0/Entities/:Begin/:Cap",
2005
+ "fontSize": 16,
2006
+ "fontFamily": 5,
2007
+ "textAlign": "left",
2008
+ "verticalAlign": "top",
2009
+ "containerId": null,
2010
+ "originalText": "GET /1.0/Entities/:Begin/:Cap",
2011
+ "autoResize": true,
2012
+ "lineHeight": 1.25,
2013
+ "index": null
2014
+ },
2015
+ {
2016
+ "id": "ft-elb-v-12",
2017
+ "type": "line",
2018
+ "x": 88,
2019
+ "y": 436,
2020
+ "width": 0,
2021
+ "height": 35,
2022
+ "angle": 0,
2023
+ "strokeColor": "#8A7F72",
2024
+ "backgroundColor": "transparent",
2025
+ "fillStyle": "hachure",
2026
+ "strokeWidth": 1.3,
2027
+ "strokeStyle": "solid",
2028
+ "roughness": 0.5,
2029
+ "opacity": 100,
2030
+ "groupIds": [],
2031
+ "frameId": null,
2032
+ "roundness": null,
2033
+ "seed": 918,
2034
+ "version": 1,
2035
+ "versionNonce": 918,
2036
+ "isDeleted": false,
2037
+ "boundElements": [],
2038
+ "updated": 1,
2039
+ "link": null,
2040
+ "locked": false,
2041
+ "index": null,
2042
+ "points": [
2043
+ [
2044
+ 0,
2045
+ 0
2046
+ ],
2047
+ [
2048
+ 0,
2049
+ 35
2050
+ ]
2051
+ ],
2052
+ "lastCommittedPoint": null,
2053
+ "startBinding": null,
2054
+ "endBinding": null,
2055
+ "startArrowhead": null,
2056
+ "endArrowhead": null
2057
+ },
2058
+ {
2059
+ "id": "ft-elb-h-12",
2060
+ "type": "line",
2061
+ "x": 88,
2062
+ "y": 454,
2063
+ "width": 16,
2064
+ "height": 0,
2065
+ "angle": 0,
2066
+ "strokeColor": "#8A7F72",
2067
+ "backgroundColor": "transparent",
2068
+ "fillStyle": "hachure",
2069
+ "strokeWidth": 1.3,
2070
+ "strokeStyle": "solid",
2071
+ "roughness": 0.5,
2072
+ "opacity": 100,
2073
+ "groupIds": [],
2074
+ "frameId": null,
2075
+ "roundness": null,
2076
+ "seed": 919,
2077
+ "version": 1,
2078
+ "versionNonce": 919,
2079
+ "isDeleted": false,
2080
+ "boundElements": [],
2081
+ "updated": 1,
2082
+ "link": null,
2083
+ "locked": false,
2084
+ "index": null,
2085
+ "points": [
2086
+ [
2087
+ 0,
2088
+ 0
2089
+ ],
2090
+ [
2091
+ 16,
2092
+ 0
2093
+ ]
2094
+ ],
2095
+ "lastCommittedPoint": null,
2096
+ "startBinding": null,
2097
+ "endBinding": null,
2098
+ "startArrowhead": null,
2099
+ "endArrowhead": null
2100
+ },
2101
+ {
2102
+ "id": "ft-node-1008",
2103
+ "type": "ellipse",
2104
+ "x": 114,
2105
+ "y": 450,
2106
+ "width": 8,
2107
+ "height": 8,
2108
+ "angle": 0,
2109
+ "strokeColor": "#8A7F72",
2110
+ "backgroundColor": "#8A7F72",
2111
+ "fillStyle": "solid",
2112
+ "strokeWidth": 1.4,
2113
+ "strokeStyle": "solid",
2114
+ "roughness": 0,
2115
+ "opacity": 100,
2116
+ "groupIds": [],
2117
+ "frameId": null,
2118
+ "roundness": null,
2119
+ "seed": 1008,
2120
+ "version": 1,
2121
+ "versionNonce": 1008,
2122
+ "isDeleted": false,
2123
+ "boundElements": [],
2124
+ "updated": 1,
2125
+ "link": null,
2126
+ "locked": false,
2127
+ "index": null
2128
+ },
2129
+ {
2130
+ "id": "ft-name-12",
2131
+ "type": "text",
2132
+ "x": 137,
2133
+ "y": 441,
2134
+ "width": 78,
2135
+ "height": 28,
2136
+ "angle": 0,
2137
+ "strokeColor": "#1B1F23",
2138
+ "backgroundColor": "transparent",
2139
+ "fillStyle": "solid",
2140
+ "strokeWidth": 1,
2141
+ "strokeStyle": "solid",
2142
+ "roughness": 1,
2143
+ "opacity": 100,
2144
+ "groupIds": [],
2145
+ "frameId": null,
2146
+ "roundness": null,
2147
+ "seed": 909,
2148
+ "version": 1,
2149
+ "versionNonce": 909,
2150
+ "isDeleted": false,
2151
+ "boundElements": null,
2152
+ "updated": 1,
2153
+ "link": null,
2154
+ "locked": false,
2155
+ "text": "Update",
2156
+ "fontSize": 20,
2157
+ "fontFamily": 5,
2158
+ "textAlign": "left",
2159
+ "verticalAlign": "top",
2160
+ "containerId": null,
2161
+ "originalText": "Update",
2162
+ "autoResize": true,
2163
+ "lineHeight": 1.25,
2164
+ "index": null
2165
+ },
2166
+ {
2167
+ "id": "ft-cmt-12",
2168
+ "type": "text",
2169
+ "x": 894,
2170
+ "y": 444,
2171
+ "width": 176,
2172
+ "height": 22,
2173
+ "angle": 0,
2174
+ "strokeColor": "#8A7F72",
2175
+ "backgroundColor": "transparent",
2176
+ "fillStyle": "solid",
2177
+ "strokeWidth": 1,
2178
+ "strokeStyle": "solid",
2179
+ "roughness": 1,
2180
+ "opacity": 100,
2181
+ "groupIds": [],
2182
+ "frameId": null,
2183
+ "roundness": null,
2184
+ "seed": 910,
2185
+ "version": 1,
2186
+ "versionNonce": 910,
2187
+ "isDeleted": false,
2188
+ "boundElements": null,
2189
+ "updated": 1,
2190
+ "link": null,
2191
+ "locked": false,
2192
+ "text": "PUT /1.0/Entity",
2193
+ "fontSize": 16,
2194
+ "fontFamily": 5,
2195
+ "textAlign": "left",
2196
+ "verticalAlign": "top",
2197
+ "containerId": null,
2198
+ "originalText": "PUT /1.0/Entity",
2199
+ "autoResize": true,
2200
+ "lineHeight": 1.25,
2201
+ "index": null
2202
+ },
2203
+ {
2204
+ "id": "ft-elb-v-13",
2205
+ "type": "line",
2206
+ "x": 88,
2207
+ "y": 471,
2208
+ "width": 0,
2209
+ "height": 35,
2210
+ "angle": 0,
2211
+ "strokeColor": "#8A7F72",
2212
+ "backgroundColor": "transparent",
2213
+ "fillStyle": "hachure",
2214
+ "strokeWidth": 1.3,
2215
+ "strokeStyle": "solid",
2216
+ "roughness": 0.5,
2217
+ "opacity": 100,
2218
+ "groupIds": [],
2219
+ "frameId": null,
2220
+ "roundness": null,
2221
+ "seed": 858,
2222
+ "version": 1,
2223
+ "versionNonce": 858,
2224
+ "isDeleted": false,
2225
+ "boundElements": [],
2226
+ "updated": 1,
2227
+ "link": null,
2228
+ "locked": false,
2229
+ "index": null,
2230
+ "points": [
2231
+ [
2232
+ 0,
2233
+ 0
2234
+ ],
2235
+ [
2236
+ 0,
2237
+ 35
2238
+ ]
2239
+ ],
2240
+ "lastCommittedPoint": null,
2241
+ "startBinding": null,
2242
+ "endBinding": null,
2243
+ "startArrowhead": null,
2244
+ "endArrowhead": null
2245
+ },
2246
+ {
2247
+ "id": "ft-elb-h-13",
2248
+ "type": "line",
2249
+ "x": 88,
2250
+ "y": 489,
2251
+ "width": 16,
2252
+ "height": 0,
2253
+ "angle": 0,
2254
+ "strokeColor": "#8A7F72",
2255
+ "backgroundColor": "transparent",
2256
+ "fillStyle": "hachure",
2257
+ "strokeWidth": 1.3,
2258
+ "strokeStyle": "solid",
2259
+ "roughness": 0.5,
2260
+ "opacity": 100,
2261
+ "groupIds": [],
2262
+ "frameId": null,
2263
+ "roundness": null,
2264
+ "seed": 859,
2265
+ "version": 1,
2266
+ "versionNonce": 859,
2267
+ "isDeleted": false,
2268
+ "boundElements": [],
2269
+ "updated": 1,
2270
+ "link": null,
2271
+ "locked": false,
2272
+ "index": null,
2273
+ "points": [
2274
+ [
2275
+ 0,
2276
+ 0
2277
+ ],
2278
+ [
2279
+ 16,
2280
+ 0
2281
+ ]
2282
+ ],
2283
+ "lastCommittedPoint": null,
2284
+ "startBinding": null,
2285
+ "endBinding": null,
2286
+ "startArrowhead": null,
2287
+ "endArrowhead": null
2288
+ },
2289
+ {
2290
+ "id": "ft-node-948",
2291
+ "type": "ellipse",
2292
+ "x": 114,
2293
+ "y": 485,
2294
+ "width": 8,
2295
+ "height": 8,
2296
+ "angle": 0,
2297
+ "strokeColor": "#8A7F72",
2298
+ "backgroundColor": "#8A7F72",
2299
+ "fillStyle": "solid",
2300
+ "strokeWidth": 1.4,
2301
+ "strokeStyle": "solid",
2302
+ "roughness": 0,
2303
+ "opacity": 100,
2304
+ "groupIds": [],
2305
+ "frameId": null,
2306
+ "roundness": null,
2307
+ "seed": 948,
2308
+ "version": 1,
2309
+ "versionNonce": 948,
2310
+ "isDeleted": false,
2311
+ "boundElements": [],
2312
+ "updated": 1,
2313
+ "link": null,
2314
+ "locked": false,
2315
+ "index": null
2316
+ },
2317
+ {
2318
+ "id": "ft-name-13",
2319
+ "type": "text",
2320
+ "x": 137,
2321
+ "y": 476,
2322
+ "width": 78,
2323
+ "height": 28,
2324
+ "angle": 0,
2325
+ "strokeColor": "#1B1F23",
2326
+ "backgroundColor": "transparent",
2327
+ "fillStyle": "solid",
2328
+ "strokeWidth": 1,
2329
+ "strokeStyle": "solid",
2330
+ "roughness": 1,
2331
+ "opacity": 100,
2332
+ "groupIds": [],
2333
+ "frameId": null,
2334
+ "roundness": null,
2335
+ "seed": 849,
2336
+ "version": 1,
2337
+ "versionNonce": 849,
2338
+ "isDeleted": false,
2339
+ "boundElements": null,
2340
+ "updated": 1,
2341
+ "link": null,
2342
+ "locked": false,
2343
+ "text": "Delete",
2344
+ "fontSize": 20,
2345
+ "fontFamily": 5,
2346
+ "textAlign": "left",
2347
+ "verticalAlign": "top",
2348
+ "containerId": null,
2349
+ "originalText": "Delete",
2350
+ "autoResize": true,
2351
+ "lineHeight": 1.25,
2352
+ "index": null
2353
+ },
2354
+ {
2355
+ "id": "ft-cmt-13",
2356
+ "type": "text",
2357
+ "x": 894,
2358
+ "y": 479,
2359
+ "width": 213,
2360
+ "height": 22,
2361
+ "angle": 0,
2362
+ "strokeColor": "#8A7F72",
2363
+ "backgroundColor": "transparent",
2364
+ "fillStyle": "solid",
2365
+ "strokeWidth": 1,
2366
+ "strokeStyle": "solid",
2367
+ "roughness": 1,
2368
+ "opacity": 100,
2369
+ "groupIds": [],
2370
+ "frameId": null,
2371
+ "roundness": null,
2372
+ "seed": 850,
2373
+ "version": 1,
2374
+ "versionNonce": 850,
2375
+ "isDeleted": false,
2376
+ "boundElements": null,
2377
+ "updated": 1,
2378
+ "link": null,
2379
+ "locked": false,
2380
+ "text": "DELETE /1.0/Entity/:ID",
2381
+ "fontSize": 16,
2382
+ "fontFamily": 5,
2383
+ "textAlign": "left",
2384
+ "verticalAlign": "top",
2385
+ "containerId": null,
2386
+ "originalText": "DELETE /1.0/Entity/:ID",
2387
+ "autoResize": true,
2388
+ "lineHeight": 1.25,
2389
+ "index": null
2390
+ },
2391
+ {
2392
+ "id": "ft-elb-v-14",
2393
+ "type": "line",
2394
+ "x": 88,
2395
+ "y": 506,
2396
+ "width": 0,
2397
+ "height": 35,
2398
+ "angle": 0,
2399
+ "strokeColor": "#8A7F72",
2400
+ "backgroundColor": "transparent",
2401
+ "fillStyle": "hachure",
2402
+ "strokeWidth": 1.3,
2403
+ "strokeStyle": "solid",
2404
+ "roughness": 0.5,
2405
+ "opacity": 100,
2406
+ "groupIds": [],
2407
+ "frameId": null,
2408
+ "roundness": null,
2409
+ "seed": 850,
2410
+ "version": 1,
2411
+ "versionNonce": 850,
2412
+ "isDeleted": false,
2413
+ "boundElements": [],
2414
+ "updated": 1,
2415
+ "link": null,
2416
+ "locked": false,
2417
+ "index": null,
2418
+ "points": [
2419
+ [
2420
+ 0,
2421
+ 0
2422
+ ],
2423
+ [
2424
+ 0,
2425
+ 35
2426
+ ]
2427
+ ],
2428
+ "lastCommittedPoint": null,
2429
+ "startBinding": null,
2430
+ "endBinding": null,
2431
+ "startArrowhead": null,
2432
+ "endArrowhead": null
2433
+ },
2434
+ {
2435
+ "id": "ft-elb-h-14",
2436
+ "type": "line",
2437
+ "x": 88,
2438
+ "y": 524,
2439
+ "width": 16,
2440
+ "height": 0,
2441
+ "angle": 0,
2442
+ "strokeColor": "#8A7F72",
2443
+ "backgroundColor": "transparent",
2444
+ "fillStyle": "hachure",
2445
+ "strokeWidth": 1.3,
2446
+ "strokeStyle": "solid",
2447
+ "roughness": 0.5,
2448
+ "opacity": 100,
2449
+ "groupIds": [],
2450
+ "frameId": null,
2451
+ "roundness": null,
2452
+ "seed": 851,
2453
+ "version": 1,
2454
+ "versionNonce": 851,
2455
+ "isDeleted": false,
2456
+ "boundElements": [],
2457
+ "updated": 1,
2458
+ "link": null,
2459
+ "locked": false,
2460
+ "index": null,
2461
+ "points": [
2462
+ [
2463
+ 0,
2464
+ 0
2465
+ ],
2466
+ [
2467
+ 16,
2468
+ 0
2469
+ ]
2470
+ ],
2471
+ "lastCommittedPoint": null,
2472
+ "startBinding": null,
2473
+ "endBinding": null,
2474
+ "startArrowhead": null,
2475
+ "endArrowhead": null
2476
+ },
2477
+ {
2478
+ "id": "ft-node-940",
2479
+ "type": "ellipse",
2480
+ "x": 114,
2481
+ "y": 520,
2482
+ "width": 8,
2483
+ "height": 8,
2484
+ "angle": 0,
2485
+ "strokeColor": "#8A7F72",
2486
+ "backgroundColor": "#8A7F72",
2487
+ "fillStyle": "solid",
2488
+ "strokeWidth": 1.4,
2489
+ "strokeStyle": "solid",
2490
+ "roughness": 0,
2491
+ "opacity": 100,
2492
+ "groupIds": [],
2493
+ "frameId": null,
2494
+ "roundness": null,
2495
+ "seed": 940,
2496
+ "version": 1,
2497
+ "versionNonce": 940,
2498
+ "isDeleted": false,
2499
+ "boundElements": [],
2500
+ "updated": 1,
2501
+ "link": null,
2502
+ "locked": false,
2503
+ "index": null
2504
+ },
2505
+ {
2506
+ "id": "ft-name-14",
2507
+ "type": "text",
2508
+ "x": 137,
2509
+ "y": 511,
2510
+ "width": 66,
2511
+ "height": 28,
2512
+ "angle": 0,
2513
+ "strokeColor": "#1B1F23",
2514
+ "backgroundColor": "transparent",
2515
+ "fillStyle": "solid",
2516
+ "strokeWidth": 1,
2517
+ "strokeStyle": "solid",
2518
+ "roughness": 1,
2519
+ "opacity": 100,
2520
+ "groupIds": [],
2521
+ "frameId": null,
2522
+ "roundness": null,
2523
+ "seed": 841,
2524
+ "version": 1,
2525
+ "versionNonce": 841,
2526
+ "isDeleted": false,
2527
+ "boundElements": null,
2528
+ "updated": 1,
2529
+ "link": null,
2530
+ "locked": false,
2531
+ "text": "Count",
2532
+ "fontSize": 20,
2533
+ "fontFamily": 5,
2534
+ "textAlign": "left",
2535
+ "verticalAlign": "top",
2536
+ "containerId": null,
2537
+ "originalText": "Count",
2538
+ "autoResize": true,
2539
+ "lineHeight": 1.25,
2540
+ "index": null
2541
+ },
2542
+ {
2543
+ "id": "ft-cmt-14",
2544
+ "type": "text",
2545
+ "x": 894,
2546
+ "y": 514,
2547
+ "width": 250,
2548
+ "height": 22,
2549
+ "angle": 0,
2550
+ "strokeColor": "#8A7F72",
2551
+ "backgroundColor": "transparent",
2552
+ "fillStyle": "solid",
2553
+ "strokeWidth": 1,
2554
+ "strokeStyle": "solid",
2555
+ "roughness": 1,
2556
+ "opacity": 100,
2557
+ "groupIds": [],
2558
+ "frameId": null,
2559
+ "roundness": null,
2560
+ "seed": 842,
2561
+ "version": 1,
2562
+ "versionNonce": 842,
2563
+ "isDeleted": false,
2564
+ "boundElements": null,
2565
+ "updated": 1,
2566
+ "link": null,
2567
+ "locked": false,
2568
+ "text": "GET /1.0/Entities/Count",
2569
+ "fontSize": 16,
2570
+ "fontFamily": 5,
2571
+ "textAlign": "left",
2572
+ "verticalAlign": "top",
2573
+ "containerId": null,
2574
+ "originalText": "GET /1.0/Entities/Count",
2575
+ "autoResize": true,
2576
+ "lineHeight": 1.25,
2577
+ "index": null
2578
+ },
2579
+ {
2580
+ "id": "ft-elb-v-15",
2581
+ "type": "line",
2582
+ "x": 88,
2583
+ "y": 541,
2584
+ "width": 0,
2585
+ "height": 35,
2586
+ "angle": 0,
2587
+ "strokeColor": "#8A7F72",
2588
+ "backgroundColor": "transparent",
2589
+ "fillStyle": "hachure",
2590
+ "strokeWidth": 1.3,
2591
+ "strokeStyle": "solid",
2592
+ "roughness": 0.5,
2593
+ "opacity": 100,
2594
+ "groupIds": [],
2595
+ "frameId": null,
2596
+ "roundness": null,
2597
+ "seed": 938,
2598
+ "version": 1,
2599
+ "versionNonce": 938,
2600
+ "isDeleted": false,
2601
+ "boundElements": [],
2602
+ "updated": 1,
2603
+ "link": null,
2604
+ "locked": false,
2605
+ "index": null,
2606
+ "points": [
2607
+ [
2608
+ 0,
2609
+ 0
2610
+ ],
2611
+ [
2612
+ 0,
2613
+ 35
2614
+ ]
2615
+ ],
2616
+ "lastCommittedPoint": null,
2617
+ "startBinding": null,
2618
+ "endBinding": null,
2619
+ "startArrowhead": null,
2620
+ "endArrowhead": null
2621
+ },
2622
+ {
2623
+ "id": "ft-elb-h-15",
2624
+ "type": "line",
2625
+ "x": 88,
2626
+ "y": 559,
2627
+ "width": 16,
2628
+ "height": 0,
2629
+ "angle": 0,
2630
+ "strokeColor": "#8A7F72",
2631
+ "backgroundColor": "transparent",
2632
+ "fillStyle": "hachure",
2633
+ "strokeWidth": 1.3,
2634
+ "strokeStyle": "solid",
2635
+ "roughness": 0.5,
2636
+ "opacity": 100,
2637
+ "groupIds": [],
2638
+ "frameId": null,
2639
+ "roundness": null,
2640
+ "seed": 939,
2641
+ "version": 1,
2642
+ "versionNonce": 939,
2643
+ "isDeleted": false,
2644
+ "boundElements": [],
2645
+ "updated": 1,
2646
+ "link": null,
2647
+ "locked": false,
2648
+ "index": null,
2649
+ "points": [
2650
+ [
2651
+ 0,
2652
+ 0
2653
+ ],
2654
+ [
2655
+ 16,
2656
+ 0
2657
+ ]
2658
+ ],
2659
+ "lastCommittedPoint": null,
2660
+ "startBinding": null,
2661
+ "endBinding": null,
2662
+ "startArrowhead": null,
2663
+ "endArrowhead": null
2664
+ },
2665
+ {
2666
+ "id": "ft-node-1028",
2667
+ "type": "ellipse",
2668
+ "x": 114,
2669
+ "y": 555,
2670
+ "width": 8,
2671
+ "height": 8,
2672
+ "angle": 0,
2673
+ "strokeColor": "#8A7F72",
2674
+ "backgroundColor": "#8A7F72",
2675
+ "fillStyle": "solid",
2676
+ "strokeWidth": 1.4,
2677
+ "strokeStyle": "solid",
2678
+ "roughness": 0,
2679
+ "opacity": 100,
2680
+ "groupIds": [],
2681
+ "frameId": null,
2682
+ "roundness": null,
2683
+ "seed": 1028,
2684
+ "version": 1,
2685
+ "versionNonce": 1028,
2686
+ "isDeleted": false,
2687
+ "boundElements": [],
2688
+ "updated": 1,
2689
+ "link": null,
2690
+ "locked": false,
2691
+ "index": null
2692
+ },
2693
+ {
2694
+ "id": "ft-name-15",
2695
+ "type": "text",
2696
+ "x": 137,
2697
+ "y": 546,
2698
+ "width": 78,
2699
+ "height": 28,
2700
+ "angle": 0,
2701
+ "strokeColor": "#1B1F23",
2702
+ "backgroundColor": "transparent",
2703
+ "fillStyle": "solid",
2704
+ "strokeWidth": 1,
2705
+ "strokeStyle": "solid",
2706
+ "roughness": 1,
2707
+ "opacity": 100,
2708
+ "groupIds": [],
2709
+ "frameId": null,
2710
+ "roundness": null,
2711
+ "seed": 929,
2712
+ "version": 1,
2713
+ "versionNonce": 929,
2714
+ "isDeleted": false,
2715
+ "boundElements": null,
2716
+ "updated": 1,
2717
+ "link": null,
2718
+ "locked": false,
2719
+ "text": "Schema",
2720
+ "fontSize": 20,
2721
+ "fontFamily": 5,
2722
+ "textAlign": "left",
2723
+ "verticalAlign": "top",
2724
+ "containerId": null,
2725
+ "originalText": "Schema",
2726
+ "autoResize": true,
2727
+ "lineHeight": 1.25,
2728
+ "index": null
2729
+ },
2730
+ {
2731
+ "id": "ft-cmt-15",
2732
+ "type": "text",
2733
+ "x": 894,
2734
+ "y": 549,
2735
+ "width": 240,
2736
+ "height": 22,
2737
+ "angle": 0,
2738
+ "strokeColor": "#8A7F72",
2739
+ "backgroundColor": "transparent",
2740
+ "fillStyle": "solid",
2741
+ "strokeWidth": 1,
2742
+ "strokeStyle": "solid",
2743
+ "roughness": 1,
2744
+ "opacity": 100,
2745
+ "groupIds": [],
2746
+ "frameId": null,
2747
+ "roundness": null,
2748
+ "seed": 930,
2749
+ "version": 1,
2750
+ "versionNonce": 930,
2751
+ "isDeleted": false,
2752
+ "boundElements": null,
2753
+ "updated": 1,
2754
+ "link": null,
2755
+ "locked": false,
2756
+ "text": "GET /1.0/Entity/Schema",
2757
+ "fontSize": 16,
2758
+ "fontFamily": 5,
2759
+ "textAlign": "left",
2760
+ "verticalAlign": "top",
2761
+ "containerId": null,
2762
+ "originalText": "GET /1.0/Entity/Schema",
2763
+ "autoResize": true,
2764
+ "lineHeight": 1.25,
2765
+ "index": null
2766
+ },
2767
+ {
2768
+ "id": "ft-elb-v-16",
2769
+ "type": "line",
2770
+ "x": 88,
2771
+ "y": 576,
2772
+ "width": 0,
2773
+ "height": 18,
2774
+ "angle": 0,
2775
+ "strokeColor": "#8A7F72",
2776
+ "backgroundColor": "transparent",
2777
+ "fillStyle": "hachure",
2778
+ "strokeWidth": 1.3,
2779
+ "strokeStyle": "solid",
2780
+ "roughness": 0.5,
2781
+ "opacity": 100,
2782
+ "groupIds": [],
2783
+ "frameId": null,
2784
+ "roundness": null,
2785
+ "seed": 262,
2786
+ "version": 1,
2787
+ "versionNonce": 262,
2788
+ "isDeleted": false,
2789
+ "boundElements": [],
2790
+ "updated": 1,
2791
+ "link": null,
2792
+ "locked": false,
2793
+ "index": null,
2794
+ "points": [
2795
+ [
2796
+ 0,
2797
+ 0
2798
+ ],
2799
+ [
2800
+ 0,
2801
+ 18
2802
+ ]
2803
+ ],
2804
+ "lastCommittedPoint": null,
2805
+ "startBinding": null,
2806
+ "endBinding": null,
2807
+ "startArrowhead": null,
2808
+ "endArrowhead": null
2809
+ },
2810
+ {
2811
+ "id": "ft-elb-h-16",
2812
+ "type": "line",
2813
+ "x": 88,
2814
+ "y": 594,
2815
+ "width": 16,
2816
+ "height": 0,
2817
+ "angle": 0,
2818
+ "strokeColor": "#8A7F72",
2819
+ "backgroundColor": "transparent",
2820
+ "fillStyle": "hachure",
2821
+ "strokeWidth": 1.3,
2822
+ "strokeStyle": "solid",
2823
+ "roughness": 0.5,
2824
+ "opacity": 100,
2825
+ "groupIds": [],
2826
+ "frameId": null,
2827
+ "roundness": null,
2828
+ "seed": 263,
2829
+ "version": 1,
2830
+ "versionNonce": 263,
2831
+ "isDeleted": false,
2832
+ "boundElements": [],
2833
+ "updated": 1,
2834
+ "link": null,
2835
+ "locked": false,
2836
+ "index": null,
2837
+ "points": [
2838
+ [
2839
+ 0,
2840
+ 0
2841
+ ],
2842
+ [
2843
+ 16,
2844
+ 0
2845
+ ]
2846
+ ],
2847
+ "lastCommittedPoint": null,
2848
+ "startBinding": null,
2849
+ "endBinding": null,
2850
+ "startArrowhead": null,
2851
+ "endArrowhead": null
2852
+ },
2853
+ {
2854
+ "id": "ft-node-352",
2855
+ "type": "ellipse",
2856
+ "x": 114,
2857
+ "y": 590,
2858
+ "width": 8,
2859
+ "height": 8,
2860
+ "angle": 0,
2861
+ "strokeColor": "#8A7F72",
2862
+ "backgroundColor": "#8A7F72",
2863
+ "fillStyle": "solid",
2864
+ "strokeWidth": 1.4,
2865
+ "strokeStyle": "solid",
2866
+ "roughness": 0,
2867
+ "opacity": 100,
2868
+ "groupIds": [],
2869
+ "frameId": null,
2870
+ "roundness": null,
2871
+ "seed": 352,
2872
+ "version": 1,
2873
+ "versionNonce": 352,
2874
+ "isDeleted": false,
2875
+ "boundElements": [],
2876
+ "updated": 1,
2877
+ "link": null,
2878
+ "locked": false,
2879
+ "index": null
2880
+ },
2881
+ {
2882
+ "id": "ft-name-16",
2883
+ "type": "text",
2884
+ "x": 137,
2885
+ "y": 581,
2886
+ "width": 43,
2887
+ "height": 28,
2888
+ "angle": 0,
2889
+ "strokeColor": "#1B1F23",
2890
+ "backgroundColor": "transparent",
2891
+ "fillStyle": "solid",
2892
+ "strokeWidth": 1,
2893
+ "strokeStyle": "solid",
2894
+ "roughness": 1,
2895
+ "opacity": 100,
2896
+ "groupIds": [],
2897
+ "frameId": null,
2898
+ "roundness": null,
2899
+ "seed": 253,
2900
+ "version": 1,
2901
+ "versionNonce": 253,
2902
+ "isDeleted": false,
2903
+ "boundElements": null,
2904
+ "updated": 1,
2905
+ "link": null,
2906
+ "locked": false,
2907
+ "text": "New",
2908
+ "fontSize": 20,
2909
+ "fontFamily": 5,
2910
+ "textAlign": "left",
2911
+ "verticalAlign": "top",
2912
+ "containerId": null,
2913
+ "originalText": "New",
2914
+ "autoResize": true,
2915
+ "lineHeight": 1.25,
2916
+ "index": null
2917
+ },
2918
+ {
2919
+ "id": "ft-cmt-16",
2920
+ "type": "text",
2921
+ "x": 894,
2922
+ "y": 584,
2923
+ "width": 278,
2924
+ "height": 22,
2925
+ "angle": 0,
2926
+ "strokeColor": "#8A7F72",
2927
+ "backgroundColor": "transparent",
2928
+ "fillStyle": "solid",
2929
+ "strokeWidth": 1,
2930
+ "strokeStyle": "solid",
2931
+ "roughness": 1,
2932
+ "opacity": 100,
2933
+ "groupIds": [],
2934
+ "frameId": null,
2935
+ "roundness": null,
2936
+ "seed": 254,
2937
+ "version": 1,
2938
+ "versionNonce": 254,
2939
+ "isDeleted": false,
2940
+ "boundElements": null,
2941
+ "updated": 1,
2942
+ "link": null,
2943
+ "locked": false,
2944
+ "text": "GET /1.0/Entity/Schema/New",
2945
+ "fontSize": 16,
2946
+ "fontFamily": 5,
2947
+ "textAlign": "left",
2948
+ "verticalAlign": "top",
2949
+ "containerId": null,
2950
+ "originalText": "GET /1.0/Entity/Schema/New",
2951
+ "autoResize": true,
2952
+ "lineHeight": 1.25,
2953
+ "index": null
2954
+ }
2955
+ ],
2956
+ "appState": {
2957
+ "viewBackgroundColor": "#FBF7EE",
2958
+ "theme": "light",
2959
+ "gridSize": null,
2960
+ "exportBackground": true,
2961
+ "exportEmbedScene": true,
2962
+ "exportScale": 1,
2963
+ "currentItemFontFamily": 5
2964
+ },
2965
+ "files": {}
2966
+ }