forked from nocomplexity/ArchitecturePlaybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchitecture-references.rst.OLD
1383 lines (1060 loc) · 199 KB
/
architecture-references.rst.OLD
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
Architecture References
========================
Architecture magazines
----------------------
Architectuur en Governance magazine
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------+
| **Link description** | Architecture & Governance Magazine is a publication of Troux Technologies. |
+------------------------+------------------------------------------------------------------------------+
| **URL** | http://www.architectureandgovernance.com/ |
+------------------------+------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+------------------------------------------------------------------------------+
|
DoDAF V2.02 Journal
~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The DoDAF Journal is a community of interest based discussion board. The Journal includes descriptions of best practices. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://dodcio.defense.gov/Library/DoD-Architecture-Framework/dodaf20_journal/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------+
|
Journal of Enterprise Architecture (AOGEA Journal)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Journal of Enterprise Architecture (JEA) is published quarterly by the Association of Enterprise Architects. It is a peer-reviewed international quarterly publication for the Enterprise Architecture community. Standard magazine for all TOGAF certified architects... |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.globalaea.org/?page=JEAOverview |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Journal of Information Architecture
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Journal of Information Architecture is an international peer-reviewed scholarly journal. Its aim is to facilitate the systematic development of the scientific body of knowledge in the field of information architecture. |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://journalofia.org/ |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The Architecture Journal (Microsoft)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Architecture Journal is an independent platform for free thinkers and practitioners of IT architecture. New editions are issued quarterly with articles designed to offer perspective |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://msdn.microsoft.com/en-us/architecture/bb410935.aspx |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
XR Magazine
~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------+
| **Link description** | XR Magazine is Dutch online platform and magazine for managers and architecten. (Language dutch). |
+------------------------+-----------------------------------------------------------------------------------------------------+
| **URL** | http://www.xr-magazine.nl/ |
+------------------------+-----------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture magazines |
+------------------------+-----------------------------------------------------------------------------------------------------+
|
Architecture Methods
--------------------
Archimate
~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Archimate 1.0 version: The ArchiMate enterprise architecture modeling language offers an integrated architectural approach that describes and visualizes the different architecture domains and their underlying relations and dependencies. In a short time |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.opengroup.org/archimate/doc/ts_archimate/index.html |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ARIS (Architecture of Integrated Information Systems)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Long time a industry default standard. Not anymore however -) ARIS is now more a tool of Software AG's. ARIS Business Process Analysis Platform is ideal for organizations that want to document |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.softwareag.com/corporate/products/aris_platform/default.asp# |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Cloud Computing Patterns
~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Describing good solutions to reoccurring problems as patterns is a common practice in research and industry alike. While the development of cloud applications faces many new challenges |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://cloudcomputingpatterns.org/ |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
DYA
~~~
+------------------------+-------------------------------------------------------+
| **Link description** | Primary Dutch EA method. Used and owned by Sogetti. |
+------------------------+-------------------------------------------------------+
| **URL** | http://www.dya.info/architectuur-met-dya |
+------------------------+-------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+-------------------------------------------------------+
|
DYA Infrastructure Repository
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------+
| **Link description** | DYA\|Infrastructure brings business agility |
+------------------------+-------------------------------------------------+
| **URL** | https://dya-knowledge.sogeti.nl/dir/Main_Page |
+------------------------+-------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+-------------------------------------------------+
|
EAM Pattern Catalog
~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The objective of the EAM Pattern Catalog is to complement existing Enterprise Architecture (EA) management frameworks |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://wwwmatthes.in.tum.de/wikis/eam-pattern-catalog/home |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
EAM Pattern Catalog
~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The objective of the EAM Pattern Catalog is to complement existing enterprise architecture (EA) management frameworks, which provide a holistic and generic view on the problem of EA management, and to provide additional detail and guidance needed to systematically establish EA management in a step-wise fashion within an enterprise. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://wwwmatthes.in.tum.de/pages/3b4t6l34g936/EAM-Pattern-Catalog-Wiki |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Foundation Architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
FSAM (Federal Segment Architecture Methodology)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Architecture and Infrastructure Committee released the Federal Segment Architecture Methodology (FSAM) v1.0 in December 2008. The FSAM features easy-to-use templates that expedite architecture development and maximize architecture use. The FSAM includes step by step guidance based on business-driven |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.fsam.gov/index.php |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Foundation Architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
FSAM (Federal Segment Architecture Methodology)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Architecture and Infrastructure Committee released the Federal Segment Architecture Methodology (FSAM) v1.0 in December 2008. The FSAM features easy-to-use templates that expedite architecture development and maximize architecture use. The FSAM includes step by step guidance based on business-driven |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.fsam.gov/index.php |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
GERAM (Generalised Enterprise Reference Architecture and Methodology)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The scope of GERAM encompasses all knowledge needed for enterprise engineering / integration. Thus GERAM is defined through a pragmatic approach providing a generalised framework for describing the components needed in all types of enterprise engineering/enterprise integration processes. |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.ict.griffith.edu.au/~bernus/taskforce/geram/versions/geram1-6-3/v1.6.3.html |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ITANA architecture library
~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | ITANA library for architects. ITANA is focused on developing the skills, tools and a suite of resources to assist institutions with their enterprise, business and technical architectural needs. Very useful collection of documents, tools and more for architects! |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://spaces.internet2.edu/display/itana/Library |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
TOGAF
~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------+
| **Link description** | TOGAF is a framework - a detailed method and a set of supporting tools - for developing an enterprise architecture. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------+
| **URL** | http://pubs.opengroup.org/architecture/togaf9-doc/arch/index.html |
+------------------------+-----------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods |
+------------------------+-----------------------------------------------------------------------------------------------------------------------+
|
Architecture organizations
--------------------------
Association of Enterprise Architects (AEA)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Association of Enterprise Architects (AEA) is the definitive professional organization for Enterprise Architects. Our goals are to increase job opportunities for all members and increase their market value by advancing professional excellence |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.globalaea.org/ |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
BIAN (Banking Industry Architecture Network)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The BIAN model is a Service Oriented Architecture with consistent service definitions, level of detail and boundaries. This makes it easier to choose and integrate commercially available products of different vendors. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://bian.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Industry Architectures |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Center for Enterprise Architecture (EA)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The purpose of the Center for Enterprise Architecture is to gather intellectual resources across Penn State to address open and important research concerns and questions that span the design |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://ea.ist.psu.edu/ |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Distributed Management Task Force
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | DMTF's Systems Management Architecture for Server Hardware (SMASH) standard is a suite of specifications that deliver industry standard semantics, protocols and profiles to make data center resource management interoperable. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.dmtf.org/ |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Industry Architectures, Standards |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Enterprise Architecture Center of Excellence (EACOE)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The mission of the Enterprise Architecture Center of Excellence (EACOE) is to be the definitive source for all aspects of Enterprise Architecture |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://eacoe.org/mission.shtml |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
|
IASA (Global IT Architects Association)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Iasa is the premier association focused on the architecture profession through the advancement of best practices and education while delivering programs and services to IT architects of all levels around the world. Our mission is to make IT architecture the most recognized profession in the world. |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://iasaglobal.org/ |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ITAG – Information Technology Architecture Group
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The MIT Enterprise Architecture Guide (EAG) documents MIT's architectural principles and goals, the current state of MIT's enterprise architecture, and a future state architectural vision. The EAG also includes information regarding the ITAG architecture review process. Since this document serves to inform developers about available enterprise tools and services, we expect the EAG will be useful to enterprise system developers across the institute. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://web.mit.edu/itag/index.html |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Principles, Reference architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
NAF (Nederlands Architectuur Forum)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------+
| **Link description** | Dutch organization for promoting working with the IT architecture discipline. (EA driven) |
+------------------------+---------------------------------------------------------------------------------------------+
| **URL** | http://www.naf.nl/ |
+------------------------+---------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+---------------------------------------------------------------------------------------------+
|
NGI architectuur
~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Dutch department under NGI-NGN (Dutch non-profit IT organization for IT professionals). This architecture group works with couple with other Dutch EA groups when organizing meetings and creating workgroups. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://www.ngi.nl/Afdelingen/Architectuur.html |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Software Engineering Institute (SEI)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Software Engineering Institute (SEI) is a federally funded research and development center (FFRDC) sponsored by the U.S. Department of Defense (DoD). It is operated by Carnegie Mellon University. The SEI offers many (free) publication on all aspects of software architecture. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.sei.cmu.edu/architecture/ |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The Information Architecture Institute
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------+
| **Link description** | The Information Architecture Institute is a 501(c)6 professional organization |
+------------------------+---------------------------------------------------------------------------------+
| **URL** | http://iainstitute.org/en/ |
+------------------------+---------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+---------------------------------------------------------------------------------+
|
The Jericho Forum
~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------+
| **Link description** | The Jericho Forum |
+------------------------+---------------------------------------------------------+
| **URL** | https://collaboration.opengroup.org/jericho/?gpid=326 |
+------------------------+---------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+---------------------------------------------------------+
|
The MOD research group
~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Research group on model-driven software engineering at SINTEF The MOD research group is part of the Department of Networked Systems and Services within the Division of Information and Communication Technology. This group is located in Oslo |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://modelbased.net/ |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The Open Data Institute (ODI)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Open Data Institute works with companies and governments to build an open, trustworthy data ecosystem, where people can make better decisions using data and manage any harmful impacts. The ODI produces guides, standards and more to make the use of data simpler. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://theodi.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The Open Group
~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Open Group is a global consortium that enables the achievement of business objectives through IT standards. With more than 400 member organizations |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www3.opengroup.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Via Nova Architectura
~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Dutch EA platform. Community site for all Dutch Architects. Also one the main communication channel of other Dutch architecture communities like NAF, KNVI etc. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://vianovaarchitectura.nl/ |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Architecture Patterns
---------------------
Cloud computing patterns
~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | CloudPatterns.org is a community site dedicated to documenting a master patterns catalog comprised of design patterns that capture and modularize technology-centric solutions distinct or relevant to modern-day cloud computing platforms and business-centric cloud technology architectures. Part of this catalog is comprised of compound patterns that tackle contemporary cloud delivery and deployment models (such as public cloud, IaaS, etc.) and decompose them into sets of co-existent patterns that establish core and optional feature sets provided by these environments. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://cloudpatterns.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Patterns, Cloud |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Cloud Design Patterns: Prescriptive Architecture Guidance for Cloud Applications patterns
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | This site contains twenty-four design patterns and ten related guidance topics, this guide articulates the benefit of applying patterns by showing how each piece can fit into the big picture of cloud application architectures. It also discusses the benefits and considerations for each pattern. Most of the patterns have code samples or snippets that show how to implement the patterns using the features of Microsoft Azure. However the majority of topics described in this guide are equally relevant to all kinds of distributed systems, whether hosted on Azure or on other cloud platforms. Patterns can also be downloaded as ePUB or PDF (or ordered as hard copy book). |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://msdn.microsoft.com/en-us/library/dn568099.aspx |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Patterns |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Cloud
-----
Cloud computing patterns
~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | CloudPatterns.org is a community site dedicated to documenting a master patterns catalog comprised of design patterns that capture and modularize technology-centric solutions distinct or relevant to modern-day cloud computing platforms and business-centric cloud technology architectures. Part of this catalog is comprised of compound patterns that tackle contemporary cloud delivery and deployment models (such as public cloud, IaaS, etc.) and decompose them into sets of co-existent patterns that establish core and optional feature sets provided by these environments. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://cloudpatterns.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Patterns, Cloud |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Eucalyptus Cloud Reference Architectures
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | HPE Helion Eucalyptus, hereafter “Eucalyptus,” is an open source platform that allows you to build an Amazon Web Services (AW S)-compatible, on-premise cloud. It is designed to run on commodity hardware and provide an implementation of popular AWS-compatible services, such as EC2 (Elastic Compute Cloud) and Auto Scaling. |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://www.hpe.com/h20195/v2/getpdf.aspx/4AA6-2547ENW.pdf |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Cloud, Reference architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
IBM Cloud Computing Reference Architecture 2.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------+
| **Link description** | Currently adopted by the Open Group |
+------------------------+---------------------------------------------------------------------------------------------+
| **URL** | https://www.opengroup.org/cloudcomputing/uploads/40/23840/CCRA.IBMSubmission.02282011.doc |
+------------------------+---------------------------------------------------------------------------------------------+
| **Tag(s)** | Cloud, Reference architectures |
+------------------------+---------------------------------------------------------------------------------------------+
|
NIST Cloud Computing Reference Architecture (Version 2)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------+
| **Link description** | NIST Cloud Computing Reference Architecture. |
+------------------------+----------------------------------------------------------------------------------------+
| **URL** | http://www.nist.gov/itl/cloud/upload/NIST_SP-500-291_Version-2_2013_June18_FINAL.pdf |
+------------------------+----------------------------------------------------------------------------------------+
| **Tag(s)** | Cloud, Reference architectures |
+------------------------+----------------------------------------------------------------------------------------+
|
Foundation Architectures
------------------------
EAM Pattern Catalog
~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The objective of the EAM Pattern Catalog is to complement existing enterprise architecture (EA) management frameworks, which provide a holistic and generic view on the problem of EA management, and to provide additional detail and guidance needed to systematically establish EA management in a step-wise fashion within an enterprise. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://wwwmatthes.in.tum.de/pages/3b4t6l34g936/EAM-Pattern-Catalog-Wiki |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Foundation Architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
FSAM (Federal Segment Architecture Methodology)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Architecture and Infrastructure Committee released the Federal Segment Architecture Methodology (FSAM) v1.0 in December 2008. The FSAM features easy-to-use templates that expedite architecture development and maximize architecture use. The FSAM includes step by step guidance based on business-driven |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.fsam.gov/index.php |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Foundation Architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Guidelines
----------
Microsoft REST API Guidelines
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Microsoft REST API Guidelines, as a design principle, encourages application developers to have resources accessible to them via a RESTful HTTP interface. To provide the smoothest possible experience for developers on platforms following the Microsoft REST API Guidelines, REST APIs SHOULD follow consistent design guidelines to make using them easy and intuitive. cc-by-sa document created by Microsoft architects |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Guidelines, Microservices |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Industry Architectures
----------------------
BIAN (Banking Industry Architecture Network)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The BIAN model is a Service Oriented Architecture with consistent service definitions, level of detail and boundaries. This makes it easier to choose and integrate commercially available products of different vendors. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://bian.org/ |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Industry Architectures |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Distributed Management Task Force
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | DMTF's Systems Management Architecture for Server Hardware (SMASH) standard is a suite of specifications that deliver industry standard semantics, protocols and profiles to make data center resource management interoperable. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.dmtf.org/ |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Industry Architectures, Standards |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
EURIDICE
~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | EURIDICE is an EU funded project which deals with the development and implementation of new concepts in the area of intelligent Cargo. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.iiisci.org/journal/CV$/sci/pdfs/GF869WE.pdf |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Industry Architectures, Reference architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
|
EURIDICE
~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Overview of the EURIDICE architecture main concepts and components. (Link to all public architecture documents). EURIDICE Integrated Project Euridice is an Integrated Project funded by EU's Seventh Framework Programme ICT for Transport Area. The basic concept of Euridice is to build an information services platform centred on the individual cargo item and on its interaction with the surrounding environment and the user. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.intelligentcargo.eu/content/public-documents-0 |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Industry Architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Rackspace Open Cloud reference architecture
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Description of Rackspace cloud architectural configurations so you known how to use it for your business or personal project. (cc-by license) |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://support.rackspace.com/how-to/rackspace-open-cloud-reference-architecture/ |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Industry Architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
|
Microservices
-------------
Designing microservices: Domain analysis
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Part of set of articles. Good read before designing, using and building and running microservices architecture on Azure. |
+------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://docs.microsoft.com/en-us/azure/architecture/microservices/domain-analysis |
+------------------------+----------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Microservices |
+------------------------+----------------------------------------------------------------------------------------------------------------------------+
|
Microservices architecture style (Microsoft)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------+
| **Link description** | Nice overview for what, how and when to use microservices. And of course tailored also for Azure specific details. |
+------------------------+----------------------------------------------------------------------------------------------------------------------+
| **URL** | https://docs.microsoft.com/en-us/azure/architecture/guide/architecture-styles/microservices |
+------------------------+----------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Microservices |
+------------------------+----------------------------------------------------------------------------------------------------------------------+
|
Microsoft REST API Guidelines
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Microsoft REST API Guidelines, as a design principle, encourages application developers to have resources accessible to them via a RESTful HTTP interface. To provide the smoothest possible experience for developers on platforms following the Microsoft REST API Guidelines, REST APIs SHOULD follow consistent design guidelines to make using them easy and intuitive. cc-by-sa document created by Microsoft architects |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Guidelines, Microservices |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Mobile
------
Mobile Security Reference Architecture
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Mobile Security Reference Architecture (MSRA) is a deliverable of the Digital Government Strategy (DGS). A key objective of the DGS is to procure and manage mobile devices, applications, and data in smart, secure, and affordable ways. The MSRA has been released by the Federal CIO Council and the Department of Homeland Security (DHS) to assist Federal Departments and Agencies (D/As) in the secure implementation of mobile solutions through their enterprise architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://s3.amazonaws.com/sitesusa/wp-content/uploads/sites/1151/downloads/2013/05/Mobile-Security-Reference-Architecture.pdf |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Mobile, Reference architectures, Security architecture |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Principles
----------
ITAG – Information Technology Architecture Group
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The MIT Enterprise Architecture Guide (EAG) documents MIT's architectural principles and goals, the current state of MIT's enterprise architecture, and a future state architectural vision. The EAG also includes information regarding the ITAG architecture review process. Since this document serves to inform developers about available enterprise tools and services, we expect the EAG will be useful to enterprise system developers across the institute. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://web.mit.edu/itag/index.html |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Principles, Reference architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The Principles for Digital Development
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Principles for Digital Development find their roots in the efforts of individuals, development organizations, and donors alike who have called for a more concerted effort by donors and implementing partners to institutionalize lessons learned in the use of information and communication technologies (ICTs) in development projects. |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://digitalprinciples.org/ |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Principles |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
U.S. Digital Services Playbook
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | U.S. Digital Services Playbook: The American people expect to interact with government through digital channels such as websites, email, and mobile applications. By building digital services that meet their needs, we can make the delivery of our policy and programs more effective. |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://playbook.cio.gov/ |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Principles |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Reference architectures
-----------------------
ATHENA Interoperability Framework (AIF)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The ATHENA Interoperability Framework (AIF) provides a compound framework and associated reference architecture for capturing the research elements and solutions to interoperability issues that address the problem in a holistic way by inter-relating relevant information from different perspectives of the enterprise. |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://athena.modelbased.net/index.html |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Australian Government Architecture Reference Models
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The AGA Reference Models provide a common language for Australian Government agencies so that their architectures can be described in a common and consistent manner. cc-by licensed material See also: http://www.finance.gov.au/policy-guides-procurement/australian-government-architecture-aga/aga-rm/ |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://www.finance.gov.au/files/2012/04/AGA_How_to_Guide.pdf |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Cloud Computing Portability and Interoperability (Open Group)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------+
| **Link description** | Open Group document. This guide analyzes cloud computing portability and interoperability. |
+------------------------+----------------------------------------------------------------------------------------------+
| **URL** | http://www.opengroup.org/cloud/cloud_iop/p4.htm |
+------------------------+----------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+----------------------------------------------------------------------------------------------+
|
Cybersecurity Framework (NIST)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------+
| **Link description** | The Framework Core offers a way to take a high-level Security Framework. |
+------------------------+----------------------------------------------------------------------------+
| **URL** | http://www.nist.gov/cyberframework/index.cfm |
+------------------------+----------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures, Security architecture |
+------------------------+----------------------------------------------------------------------------+
|
Data Transfer Project
~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Architecture document of The Data Transfer Project. The DTP project is formed in 2017 to create an open-source, service-to-service data portability platform so that all individuals across the web could easily move their data between online service providers whenever they want. The contributors to the Data Transfer Project believe portability and interoperability are central to innovation. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://datatransferproject.dev/dtp-overview.pdf |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
DoDAF (Department of Defense Architecture Framework)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------+
| **Link description** | Reference architecture of the Department of Defense (US) The DoDAF Architecture Framework Version 2.02 |
+------------------------+----------------------------------------------------------------------------------------------------------+
| **URL** | http://dodcio.defense.gov/Library/DoD-Architecture-Framework/ |
+------------------------+----------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+----------------------------------------------------------------------------------------------------------+
|
EAM Pattern Catalog
~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The objective of the EAM Pattern Catalog is to complement existing Enterprise Architecture (EA) management frameworks |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://wwwmatthes.in.tum.de/wikis/eam-pattern-catalog/home |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
Eucalyptus Cloud Reference Architectures
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | HPE Helion Eucalyptus, hereafter “Eucalyptus,” is an open source platform that allows you to build an Amazon Web Services (AW S)-compatible, on-premise cloud. It is designed to run on commodity hardware and provide an implementation of popular AWS-compatible services, such as EC2 (Elastic Compute Cloud) and Auto Scaling. |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://www.hpe.com/h20195/v2/getpdf.aspx/4AA6-2547ENW.pdf |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Cloud, Reference architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
EURIDICE
~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | EURIDICE is an EU funded project which deals with the development and implementation of new concepts in the area of intelligent Cargo. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.iiisci.org/journal/CV$/sci/pdfs/GF869WE.pdf |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Industry Architectures, Reference architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
|
European Interoperablity Reference Architecture(EIRA)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The European Interoperability Reference Architecture (EIRA©) is an architecture content metamodel defining the most salient architectural building blocks (ABBs) needed to build interoperable e-Government systems. The EIRA© provides a common terminology that can be used by people working for public administrations in various architecture and system development tasks. The EIRA© was created and is being maintained in the context of Action 2016.32 of the ISA² Programme. The EIRA uses (and extends) the ArchiMate language as a modelling notation and uses service orientation as an architectural style. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://joinup.ec.europa.eu/release/eira/v210 |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
GEMMA (GEMeentelijk Model Architectuur)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | (Dutch site) GEMMA 2.0 is een doorontwikkeling naar een architectuur die de gehele gemeentelijke informatievoorziening beschrijft, helpt bij het reduceren van de complexiteit van de informatievoorziening, bij het organiseren van samenwerkingsverbanden en het positioneren van functies in de cloud. |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://www.gemmaonline.nl/index.php/GEMMA_Architectuur |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
GERAM (Generalised Enterprise Reference Architecture and Methodology)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The scope of GERAM encompasses all knowledge needed for enterprise engineering / integration. Thus GERAM is defined through a pragmatic approach providing a generalised framework for describing the components needed in all types of enterprise engineering/enterprise integration processes. |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://www.ict.griffith.edu.au/~bernus/taskforce/geram/versions/geram1-6-3/v1.6.3.html |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
IBM Cloud Computing Reference Architecture 2.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+---------------------------------------------------------------------------------------------+
| **Link description** | Currently adopted by the Open Group |
+------------------------+---------------------------------------------------------------------------------------------+
| **URL** | https://www.opengroup.org/cloudcomputing/uploads/40/23840/CCRA.IBMSubmission.02282011.doc |
+------------------------+---------------------------------------------------------------------------------------------+
| **Tag(s)** | Cloud, Reference architectures |
+------------------------+---------------------------------------------------------------------------------------------+
|
Interoperability Solutions for EU public administrations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | Reference architecture documents for use and reuse developed within EU program. ISA's collaborative platform to find, reuse and share a wealth of ready-to-use interoperability solutions for eGovernment and best practices and discuss with your peers! |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://ec.europa.eu/isa/library/index_en.htm |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ITAG – Information Technology Architecture Group
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The MIT Enterprise Architecture Guide (EAG) documents MIT's architectural principles and goals, the current state of MIT's enterprise architecture, and a future state architectural vision. The EAG also includes information regarding the ITAG architecture review process. Since this document serves to inform developers about available enterprise tools and services, we expect the EAG will be useful to enterprise system developers across the institute. |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://web.mit.edu/itag/index.html |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture organizations, Principles, Reference architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ITANA architecture library
~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | ITANA library for architects. ITANA is focused on developing the skills, tools and a suite of resources to assist institutions with their enterprise, business and technical architectural needs. Very useful collection of documents, tools and more for architects! |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://spaces.internet2.edu/display/itana/Library |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Architecture Methods, Reference architectures |
+------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
ITSM Reference Architecture Framework
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | FitSM is a free and lightweight standards family aimed at facilitating service management in IT service provision, including federated scenarios. |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | http://fitsm.itemo.org/fitsm-templates-samples-guides |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures, Standards |
+------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
|
Microsoft Industry Reference Architecture for Banking (MIRA-B)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | MIRA-B This 2012 Microsoft Industry Reference Architecture for Banking gives financial institutions a framework to ensure IT meets their strategic goals across channels and various customer needs. |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://news.microsoft.com/download/presskits/msfinancial/docs/MIRAB.pdf |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Reference architectures |
+------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Mobile Security Reference Architecture
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Link description** | The Mobile Security Reference Architecture (MSRA) is a deliverable of the Digital Government Strategy (DGS). A key objective of the DGS is to procure and manage mobile devices, applications, and data in smart, secure, and affordable ways. The MSRA has been released by the Federal CIO Council and the Department of Homeland Security (DHS) to assist Federal Departments and Agencies (D/As) in the secure implementation of mobile solutions through their enterprise architectures |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **URL** | https://s3.amazonaws.com/sitesusa/wp-content/uploads/sites/1151/downloads/2013/05/Mobile-Security-Reference-Architecture.pdf |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Tag(s)** | Mobile, Reference architectures, Security architecture |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|