forked from schlothauer-wauer/jsoncodegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
junctionModel.puml
1093 lines (1042 loc) · 22.4 KB
/
junctionModel.puml
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@startuml
skinparam roundcorner 10
skinparam class {
BackgroundColor #FFFFFF
ArrowColor #000000
BorderColor #000000
BorderColor<<InnerType>> #777777
BackgroundColor<<InnerType>> #EEEEEE
BackgroundColor<<GidType>> #e4ffd4
FontName Courier
FontSize 12
}
skinparam note {
BackgroundColor #dedede
BorderColor #000000
FontSize 10
}
skinparam classAttribute {
FontName Courier
FontSize 12
}
class JunctionLocationStreetsItem <restSubPath><<InnerType>> << ( ,#ff0000) >> {
-classification: string
..
-entryId: string/uuid
..
-main: boolean
..
-name: string
..
-position: number
}
class JunctionLocation <<InnerType>> << ( ,#ff00ff) >> {
-city: string
..
-country: string
..
-county: string
..
-district: string
..
-<color:#ff0000 ><b>streets: JunctionLocationStreetsItem[]</b></color>
}
class Junction <rest,\njoined,\nmongodb><<GidType>> << ( ,#ff0000) >> {
-guid: string/uuid
..
-<color:#ff00ff ><b>location: JunctionLocation</b></color>
..
-objectBaseId: string/uuid
..
-startupDate: string/date
..
-<color:#0000ff ><b>state: ListEntry</b></color>
..
-tenantId: string/uuid
..
-<color:#0000ff ><b>type: ListEntry</b></color>
}
note top of Junction
Junction is
a anchor point
of interest
of application
level
end note
class JunctionComment <rest,\nmongodb><<GidType>> << ( ,#007f00) >> {
-date: string/date-time
..
-text: string
..
-user: string
..
-guid: string/uuid
..
-junctionId: string/uuid
..
-tenantId: string/uuid
}
note top of JunctionComment
Junction is
a anchor point
of interest
of application
level
end note
class JunctionContact <rest,\nmongodb><<GidType>> << ( ,#00007f) >> {
-<color:#007f00 ><b>address: Address</b></color>
..
-<color:#0000ff ><b>type: ListEntry</b></color>
..
-guid: string/uuid
..
-junctionId: string/uuid
..
-tenantId: string/uuid
}
note top of JunctionContact
Junction is
a anchor point
of interest
of application
level
end note
class JunctionDocument <rest,\nmongodb><<GidType>> << ( ,#ff00ff) >> {
-date: string
..
-mimeType: string
..
-name: string
..
-originalName: string
..
-previewUrl: string
..
-smallPreviewUrl: string
..
-thumbUrl: string
..
-<color:#0000ff ><b>type: ListEntry</b></color>
..
-url: string
..
-user: string
..
-guid: string/uuid
..
-junctionId: string/uuid
..
-tenantId: string/uuid
}
note top of JunctionDocument
Junction is
a anchor point
of interest
of application
level
end note
class JunctionJoined <rest,\njoinedType><<GidType>> << ( ,#0000ff) >> {
-guid: string/uuid
..
-<color:#ff00ff ><b>location: JunctionLocation</b></color>
..
-objectBaseId: string/uuid
..
-startupDate: string/date
..
-<color:#0000ff ><b>state: ListEntry</b></color>
..
-tenantId: string/uuid
..
-<color:#0000ff ><b>type: ListEntry</b></color>
..
-<color:#007f00 ><b>objectBase: ObjectBase</b></color>
}
note top of JunctionJoined
Junction with
joined ObjectBase
end note
class JunctionNumber <rest,\nmongodb><<GidType>> << ( ,#007f00) >> {
-guid: string/uuid
..
-junctionId: string/uuid
..
-number: string
..
-tenantId: string/uuid
..
-<color:#0000ff ><b>type: ListEntry</b></color>
}
note top of JunctionNumber
Junction is
a anchor point
of interest
of application
level
end note
class JunctionNumberType <rest,\nmongodb,\nselList><<GidType>> << ( ,#7f007f) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of JunctionNumberType
Technical identifier
for that junction
end note
class JunctionState <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff6100) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of JunctionState
state of junction
end note
class JunctionType <rest,\nmongodb,\nselList><<GidType>> << ( ,#00007f) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of JunctionType
types of junctions
end note
class GeoArea << ( ,#007f00) >> {
-<color:#ff6100 ><b>points: GeoPoint[]</b></color>
..
-projection: string
}
note top of GeoArea
Area geo-type
end note
class GeoPoint << ( ,#ff6100) >> {
-lon: number
..
-lat: number
..
-projection: string
}
note top of GeoPoint
Single point
geo-type
end note
class ObjectBase <rest,\nmongodb,\nindex2d><<GidType>> << ( ,#007f00) >> {
-<color:#9b0000 ><b>gis: ObjectBaseGis</b></color>
..
-guid: string/uuid
..
-name: string
..
-number: string
..
-<color:#0000ff ><b>objectGroup: ListEntry</b></color>
..
-regions: string/uuid[]
..
-<color:#0000ff ><b>tags: ListEntry[]</b></color>
..
-tenantId: string/uuid
}
note top of ObjectBase
Object is a
anchor point
of interest
of application
level, that's
the minimal
information
about that
end note
class GeoMultiline << ( ,#ff0000) >> {
-<color:#ff6100 ><b>points: GeoPoint[]</b></color>
..
-projection: string
}
note top of GeoMultiline
Multiline geo-type
end note
class ListEntry << ( ,#0000ff) >> {
-refId: string
..
-text: string
}
note top of ListEntry
type for entries
that have references
to look-up
tables - as
an more dynamic
alternative
to enums
end note
class Region <rest,\nmongodb,\nselList><<GidType>> << ( ,#00007f) >> {
-active: boolean
..
-comment: string
..
-created: string/date-time
..
-group: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-tenantId: string/uuid
}
note top of Region
A region is
some kind of
a logical group
that could
be set for
some entries.
It allows 'vertical'
restrictions
of object visibility
end note
class Tenant <<GidType>> << ( ,#7f007f) >> {
-active: boolean
..
-description: string
..
-guid: string/uuid
..
-name: string
}
note top of Tenant
Tenant of a
running application.
end note
class Tag <rest,\nmongodb,\nselList><<GidType>> << ( ,#5f005f) >> {
-active: boolean
..
-color: string
..
-comment: string
..
-created: string/date-time
..
-group: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-tenantId: string/uuid
}
note top of Tag
A tag is some
kind of a global
keyword that
could be set
for some entries
end note
class ObjectBaseGis <<InnerType>> << ( ,#9b0000) >> {
-<color:#007f00 ><b>area: GeoArea</b></color>
..
-<color:#ff6100 ><b>center: GeoPoint</b></color>
..
-<color:#ff0000 ><b>route: GeoMultiline</b></color>
}
class ObjectGroup <rest,\nmongodb,\nselList><<GidType>> << ( ,#9b0000) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of ObjectGroup
Groups of objects
(f.e. intersections,
INES nets,
public transport
route, ...)
end note
class Comment << ( ,#0000ff) >> {
-date: string/date-time
..
-text: string
..
-user: string
}
note top of Comment
A comment for
an data entry
end note
class Contact << ( ,#ff6100) >> {
-<color:#007f00 ><b>address: Address</b></color>
..
-<color:#0000ff ><b>type: ListEntry</b></color>
}
note top of Contact
contact to
a specific
entity
end note
class Address << ( ,#007f00) >> {
-city: string
..
-<color:#9b0000 ><b>contact: ContactData</b></color>
..
-country: string
..
-department: string
..
-extra: string
..
-name: string
..
-<color:#5f005f ><b>persons: AddressPerson[]</b></color>
..
-postalCode: string
..
-street: string
..
-<color:#0000ff ><b>type: ListEntry</b></color>
..
-web: string
}
class ContactData << ( ,#9b0000) >> {
-email: string[]
..
-fax: string
..
-phone: string[]
}
note top of ContactData
contact data
for a person
or address
end note
class Person << ( ,#ff00ff) >> {
-active: boolean
..
-addressId: string/uuid
..
-<color:#9b0000 ><b>contact: ContactData</b></color>
..
-firstName: string
..
-name: string
..
-title: string
}
note top of Person
simple person
definition
end note
class AddressPerson << ( ,#5f005f) >> {
-active: boolean
..
-addressId: string/uuid
..
-<color:#9b0000 ><b>contact: ContactData</b></color>
..
-firstName: string
..
-name: string
..
-title: string
..
-entryId: string/uuid
}
note top of AddressPerson
a person that
is linked to
an address
end note
class AddressType <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff0000) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of AddressType
type of a document
end note
class ContactType <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff6100) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of ContactType
type of a contact
end note
class Document << ( ,#9b0000) >> {
-date: string
..
-mimeType: string
..
-name: string
..
-originalName: string
..
-previewUrl: string
..
-smallPreviewUrl: string
..
-thumbUrl: string
..
-<color:#0000ff ><b>type: ListEntry</b></color>
..
-url: string
..
-user: string
}
note top of Document
description
of a contained
document
end note
class DocumentType <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff0000) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of DocumentType
type of a document
end note
class Incident <rest,\njoined,\nmongodb><<GidType>> << ( ,#0000ff) >> {
-description: string
..
-guid: string/uuid
..
-<color:#0000ff ><b>number: IncidentNumber</b></color>
..
-objectBaseId: string/uuid
..
-opMessages: string/uuid[]
..
-<color:#007f00 ><b>rawData: IncidentRawData</b></color>
..
-references: string/uuid[]
..
-<color:#7f007f ><b>states: IncidentState[]</b></color>
..
-<color:#007f00 ><b>tags: ListEntry[]</b></color>
..
-tenantId: string/uuid
..
-<color:#007f00 ><b>type: ListEntry</b></color>
..
-urgency: integer
}
note top of Incident
A detected
failure state
that needs
some actions
to solve it
end note
class IncidentComment <rest,\nmongodb><<GidType>> << ( ,#ff6100) >> {
-date: string/date-time
..
-text: string
..
-user: string
..
-guid: string/uuid
..
-incidentId: string/uuid
..
-tenantId: string/uuid
}
note top of IncidentComment
Comment entries
to incidents
end note
class IncidentDocument <rest,\nmongodb><<GidType>> << ( ,#ff0000) >> {
-date: string
..
-mimeType: string
..
-name: string
..
-originalName: string
..
-previewUrl: string
..
-smallPreviewUrl: string
..
-thumbUrl: string
..
-<color:#007f00 ><b>type: ListEntry</b></color>
..
-url: string
..
-user: string
..
-guid: string/uuid
..
-incidentId: string/uuid
..
-tenantId: string/uuid
}
note top of IncidentDocument
documents linked
to incident
entries
end note
class IncidentJoined <rest,\njoinedType><<GidType>> << ( ,#ff00ff) >> {
-description: string
..
-guid: string/uuid
..
-<color:#0000ff ><b>number: IncidentNumber</b></color>
..
-objectBaseId: string/uuid
..
-opMessages: string/uuid[]
..
-<color:#007f00 ><b>rawData: IncidentRawData</b></color>
..
-references: string/uuid[]
..
-<color:#7f007f ><b>states: IncidentState[]</b></color>
..
-<color:#007f00 ><b>tags: ListEntry[]</b></color>
..
-tenantId: string/uuid
..
-<color:#007f00 ><b>type: ListEntry</b></color>
..
-urgency: integer
..
-<color:#0000ff ><b>objectBase: ObjectBase</b></color>
}
note top of IncidentJoined
Incident with
joined ObjectBase
end note
class IncidentNumber << ( ,#0000ff) >> {
-external: string
..
-internal: string
}
class IncidentRawData << ( ,#007f00) >> {
-data: string
..
-mimeType: string
..
-type: string
}
class IncidentState << ( ,#7f007f) >> {
-assignTo: string
..
-endComment: string
..
-endDate: string/date-time
..
-endedBy: string
..
-entryId: string/uuid
..
-startComment: string
..
-startDate: string/date-time
..
-startedBy: string
..
-<color:#007f00 ><b>stateType: ListEntry</b></color>
}
class IncidentStateType <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff6100) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-incidentTypeId: string/uuid[]
..
-locked: boolean
..
-name: string
..
-order: boolean
..
-progress: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of IncidentStateType
occurs, entered,
resolved, ...
end note
class IncidentTag <rest,\nmongodb,\nselList><<GidType>> << ( ,#00007f) >> {
-active: boolean
..
-color: string
..
-comment: string
..
-created: string/date-time
..
-group: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-tenantId: string/uuid
}
note top of IncidentTag
key-word for
additional
incident tagging
end note
class IncidentType <rest,\nmongodb,\nselList><<GidType>> << ( ,#007f00) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-objectGroupIds: string/uuid[]
..
-resStr: string
..
-tenantId: string/uuid
}
note top of IncidentType
types of incidents
end note
class OpMessage <rest,\njoined,\nmongodb><<GidType>> << ( ,#ff6100) >> {
-creationTime: string/date-time
..
-eventTimeEnd: string/date-time
..
-eventTimeStart: string/date-time
..
-guid: string/uuid
..
-level: string
..
-msgCode: integer
..
-msgResStr: string
..
-msgText: string
..
-objectBaseId: string/uuid
..
-<color:#007f00 ><b>rawData: OpMessageRawData</b></color>
..
-references: string/uuid[]
..
-<color:#007f00 ><b>sender: ListEntry</b></color>
..
-<color:#007f00 ><b>tags: ListEntry[]</b></color>
..
-tenantId: string/uuid
..
-<color:#007f00 ><b>type: ListEntry</b></color>
}
note top of OpMessage
General system
operation message
end note
class OpMessageJoined <rest,\njoinedType><<GidType>> << ( ,#00007f) >> {
-creationTime: string/date-time
..
-eventTimeEnd: string/date-time
..
-eventTimeStart: string/date-time
..
-guid: string/uuid
..
-level: string
..
-msgCode: integer
..
-msgResStr: string
..
-msgText: string
..
-objectBaseId: string/uuid
..
-<color:#007f00 ><b>rawData: OpMessageRawData</b></color>
..
-references: string/uuid[]
..
-<color:#007f00 ><b>sender: ListEntry</b></color>
..
-<color:#007f00 ><b>tags: ListEntry[]</b></color>
..
-tenantId: string/uuid
..
-<color:#007f00 ><b>type: ListEntry</b></color>
..
-<color:#0000ff ><b>objectBase: ObjectBase</b></color>
}
note top of OpMessageJoined
OpMessage with
joined ObjectBase
end note
class OpMessageRawData << ( ,#007f00) >> {
-data: string
..
-mimeType: string
..
-type: string
}
note top of OpMessageRawData
container for
additional,
app-specific
content
end note
class OpMessageSender <rest,\nmongodb,\nselList><<GidType>> << ( ,#9b0000) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of OpMessageSender
Who sends the
message
end note
class OpMessageTag <rest,\nmongodb,\nselList><<GidType>> << ( ,#5f005f) >> {
-active: boolean
..
-color: string
..
-comment: string
..
-created: string/date-time
..
-group: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-tenantId: string/uuid
}
note top of OpMessageTag
Tag to group
messages
end note
class OpMessageType <rest,\nmongodb,\nselList><<GidType>> << ( ,#ff0000) >> {
-active: boolean
..
-comment: string
..
-guid: string/uuid
..
-locked: boolean
..
-name: string
..
-resStr: string
..
-tenantId: string/uuid
}
note top of OpMessageType
types of message
end note
hide methods
JunctionLocation *-- "many" JunctionLocationStreetsItem #ff0000
Junction *-- JunctionLocation #ff00ff
Junction .. ObjectBase #007f00
Junction *-- ListEntry #0000ff
Junction .. JunctionState #ff6100
Junction .. Tenant #7f007f
Junction .. JunctionType #00007f
JunctionComment .. Junction #ff0000
JunctionComment .. Tenant #7f007f
JunctionContact *-- Address #007f00
JunctionContact *-- ListEntry #0000ff
JunctionContact .. ContactType #ff6100
JunctionContact .. Junction #ff0000
JunctionContact .. Tenant #7f007f
JunctionDocument *-- ListEntry #0000ff
JunctionDocument .. DocumentType #ff0000
JunctionDocument .. Junction #ff0000
JunctionDocument .. Tenant #7f007f
JunctionJoined *-- JunctionLocation #ff00ff
JunctionJoined .. ObjectBase #007f00
JunctionJoined *-- ListEntry #0000ff
JunctionJoined .. JunctionState #ff6100
JunctionJoined .. Tenant #7f007f