-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathATLAS-WIP.JSON
2814 lines (2812 loc) · 210 KB
/
ATLAS-WIP.JSON
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
{
"A.0": {
"Name": "Atlas Preamble",
"Version": 1,
"Type": "Atlas Preamble",
"Components": {
"Content": null
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.0.0"
],
"links_to": {},
"linked_from": []
},
"A.0.0": {
"Name": "Atlas Preamble Navigation Hub",
"Version": 1,
"Type": "Navigation Hub",
"Components": {
"Content": "The Atlas contains all data covering all aspects of operating the NEWDAO ecosystem. Further navigation: The Governance Scope Hub contains rules for governance documents and actors. The Support Scope Child Document contains rules and data related to AI tools."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.0.0"
],
"links_to": {
"The Governance Scope Hub": "A.1.0.0",
"The Support Scope": "A.2"
},
"linked_from": []
},
"A.1": {
"Name": "The Governance Scope",
"Version": 1,
"Type": "Scope",
"Components": {
"Content": "The Governance Scope covers principles and rules related to the Governance Processes and balance of power of NEWDAO and the NEW Ecosystem. The Governance Scope must ensure that the resilient equilibrium of NEWDAO Governance remains protected against all potential direct and indirect threats."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.da",
"A.1.0",
"A.1.1",
"A.1.2",
"A.1.3",
"A.1.4"
],
"links_to": {},
"linked_from": []
},
"A.1.da": {
"Name": "The Governance Scope Danish Translation",
"Version": 1,
"Type": "Scope",
"Components": {
"Original Document Type": "Scope",
"Language": "Danish.",
"Translated Name": "Styringsscopet",
"Indhold": "Styringsscopet d\\u00e6kker over principper og regler relateret til styringsprocesserne og magtbalancen i NEWDAO og NEW \\u00d8kosystemet. Styringsscopet skal sikre at NEWDAO's Styring forbliver i stabil ligev\\u00e6gt, og forbliver beskyttet mod alle potentielle direkte og indirekte trusler."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.0": {
"Name": "Supporting Root",
"Version": 1,
"Type": "Supporting Root",
"Components": {},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.0.0",
"A.1.0.1",
"A.1.0.2",
"A.1.0.3",
"A.1.0.4"
],
"links_to": {},
"linked_from": []
},
"A.1.0.0": {
"Name": "Governance Scope Navigation Hub",
"Version": 1,
"Type": "Navigation Hub",
"Components": {
"Content": "The Governance Scope contains rules and principles related to core NEWDAO governance processes and the actors, in particular Alignment Conservers, involved in core governance processes. Further Navigation: The Scope Improvement Child Document contains the rules and processes for improving the Governance Scope. The Spirit of the Atlas Child Document contains key principles related to the fundamental values and interpretation of the Atlas. The Atlas Documents Hub contains rules and specifications for the structure of the Atlas and the characteristics, properties and types of Atlas Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {
"Scope Improvement": "A.1.1",
"Spirit of the Atlas": "A.1.2",
"Atlas Documents Hub": "A.1.3.0.0"
},
"linked_from": []
},
"A.1.0.1": {
"Name": "Original Context Data",
"Version": 1,
"Type": "Original Context Data",
"Components": {
"Content": "The intent of A.1 is to establish the foundational governance principles and structure to enable NEWDAO to fulfill its vision in a sustainable and resilient manner. It aims to balance adaptation with stability by locking in core values while allowing carefully managed evolution of operational details. The rules aim to prevent governance attacks, drift from principles, and other forms of misalignment or corruption."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.0.2": {
"Name": "Element Analysis Directory",
"Version": 1,
"Type": "Element Analysis Directory",
"Components": {
"List of Elements and their Element Analysis Documents": {
"Indirect Threat Element Analysis": "A.1.0.2.1"
}
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.0.2.1"
],
"links_to": {},
"linked_from": []
},
"A.1.0.2.1": {
"Name": "Indirect Threat Element Analysis",
"Version": 1,
"Type": "Element Analysis",
"Components": {
"Element": "Indirect Threat",
"Analysis": "Indirect Threats refer to subtle, slow-moving or slippery slope risks, including slippery slope misalignment. Small scale violations, or well-intentioned, accidental violations of the balance of power or adherence to the Spirit of the Atlas enables an environment where misalignment becomes increasingly tolerated and eventually the Atlas becomes mutable, opening for the possibility of completely overturning the balance of power and comitting power grabs or centralization of the ecosystem. The Governance Scope must explicitly address these risks in all of its processes and ensure there is no openings in the rules and processes of the Atlas Documents that are vulnerable to indirect threats in the very long term."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.0.3": {
"Name": "FacilitatorDAO Action Example Directory",
"Version": 1,
"Type": "FacilitatorDAO Action Example Directory",
"Components": {
"Directory overview": "This directory contains examples of hypothetical FacilitatorDAO actions in response to governance issues, to serve as a guide for future decision-making."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.0.3.1"
],
"links_to": {},
"linked_from": []
},
"A.1.0.3.1": {
"Name": "Misaligned Aligned Scope Proposal Action Example",
"Version": 1,
"Type": "FacilitatorDAO Action Example",
"Components": {
"Input": "An AVC submits an Aligned Scope Proposal that modifies an Atlas Document in the Governance Scope to enable a budget to be used for funding new technical innovatio>aan.",
"Output": "The FacilitatorDAO derecognizes the AVC for open misalignment by taking actions that contravene the overall, scope, purpose and boundary of the Governance Scope as specified in its Scope Document.",
"Label": "Aligned"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.0.4": {
"Name": "FacilitatorDAO Action Precedent Directory",
"Version": 1,
"Type": "FacilitatorDAO Action Precedent Directory",
"Components": {
"Directory overview": "This directory will contain FacilitatorDAO Action Precedents related to A.1 . Currently it is empty"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.1": {
"Name": "Scope Improvement",
"Version": 1,
"Type": "Article",
"Components": {
"Content": "This Article discusses the principles and processes for improving the Governance Scope's Atlas Documents. It emphasizes the role of Scope Advisors, Governance FacilitatorDAOs, and the Atlas Operational Platform. The Sections of this Article provide detailed insight into these roles and their responsibilities."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.1.1",
"A.1.1.2",
"A.1.1.3"
],
"links_to": {},
"linked_from": []
},
"A.1.1.1": {
"Name": "Role of Scope Advisors",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "Improvements to the Governance Scope should be advised by expert Scope Advisors. They provide objective and factual input on Atlas Document improvements. They are selected through a governance poll, ensuring they meet specific criteria and avoid conflicts of interest. Their work output must be checked for alignment with the expected results."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.1.2": {
"Name": "Role of Governance FacilitatorDAOs",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "Governance FacilitatorDAOs manage the Scope Advisors, from soliciting proposals to ensuring the produced work aligns with the Scope Artifact. They also have the authority to propose changes to the Scope Framework in response to ambiguous or challenging situations."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.1.3": {
"Name": "Atlas Operational Platform",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "The Atlas Operational Platform is crucial for accessible participation in the Governance Scope. Part of the Scope Advisors must support its design and development. It should provide a comprehensive and user-friendly overview of all data and processes relevant to the Governance Scope, ensuring accessibility, transparency, and easy verification of processes and decisions."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.2": {
"Name": "Spirit of the Atlas",
"Version": 1,
"Type": "Article",
"Components": {
"Content": "The Spirit of the Atlas represents the foundational principles of NEWDAO Governance, enshrined in the Immutable Documents and reflected in Atlas Documents and aligned participants of the NEW Ecosystem."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.2.1",
"A.1.2.2"
],
"links_to": {},
"linked_from": []
},
"A.1.2.1": {
"Name": "Universal Alignment and the Spirit of the Atlas",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "The Spirit of the Atlas are the foundational principles that steer the NEWDAO Governance process. The Spirit of the Atlas are grounded concepts that enables coordination in the NEW Ecosystem around a resilient governance equilibrium that optimizes for Universal Alignment between the NEW Ecosystem and its surrounding environment. The grounded concepts of the Spirit of the Atlas provide specific boundaries for distinguishing Universal Alignment and misalignment when operating in the NEW Ecosystem context. The Immutable Documents of the Atlas are the bedrock for determining Universal Alignment of the NEW Ecosystem's rules and incentives, and hold precedence over any other conflicting rules or decisions. In situations where the Immutable Documents cannot be directly interpreted, the Spirit of the Atlas should be inferred in a way that maximizes Universal Alignment and mitigates risks of slippery slope misalignment. Achieving this necessitates a comprehensive understanding of Universal Alignment and the logic of how it is grounded in the Spirit of the Atlas within NEWDAO, and this Section must specify the processes to ensure the right research and documentation efforts occur to proactively protect the Spirit of the Atlas in the NEW Ecosystem."
},
"Last_Modified": "2023-11-09-00:00:00",
"Child_Documents": [
"A.1.2.1.0"
],
"links_to": {},
"linked_from": []
},
"A.1.2.1.0":
{
"Name": "Supporting Root",
"Version": 1,
"Type": "Supporting Root",
"Last_Modified": "2023-11-09-00:00:00",
"Child_Documents":
[
"A.1.2.1.0.2"
],
"links_to":
{},
"linked_from":
[]
},
"A.1.2.1.0.2":
{
"Name": "Element Analysis Directory",
"Version": 1,
"Type": "Element Analysis Directory",
"Components":
{
"List of Elements and their Element Analysis Documents":
{
"Operating Element Analysis": "A.1.2.1.0.2.1"
}
},
"Last_Modified": "2023-11-09-00:00:00",
"Child_Documents":
[
"A.1.2.1.0.2.1"
],
"links_to":
{},
"linked_from":
[]
},
"A.1.2.1.0.2.1":
{
"Name": "Operating Element Analysis",
"Version": 1,
"Type": "Element Analysis",
"Components":
{
"Element": "Operating",
"Analysis": "To effectively analyze operating in this context, it's crucial to first identify the stakeholders involved. Once identified, their actual engagement when operating should be examined. In the context of the NEW Ecosystem, the stakeholders significant for this analysis are those whose actions can be considered aligned or misaligned in the context of the Atlas. The impact of this alignment or misalignment can be either positive or negative for these stakeholders. The key stakeholders in this scenario include the ACs (Aligned Voter Committee Members, Aligned Delegates, Facilitators, and Budget Allocators), the Ecosystem Actors (Scope Advisors and Active Ecosystem Actors), and the SubDAOs.\nThe subsequent step involves pinpointing specific actions or instances of inactivity that qualify as operational activities. These may encompass participation in governance, contributions of work (whether paid or unpaid) as long as it is covered by the Atlas directly or indirectly, or any other forms of engagement that aim to influence the equilibrium established by the Atlas"
},
"Last_Modified": "2023-11-09-00:00:00",
"Child_Documents":
[],
"links_to":
{},
"linked_from":
[]
},
"A.1.2.2": {
"Name": "Interpretation of the Spirit of the Atlas",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "When the Immutable Documents do not contain explicit instructions about a particular topic, the Spirit of the Atlas should be extrapolated based on the best available knowledge and research into Universal Alignment. Resolution of Atlas Document ambiguity or contradictions must be fully congruent with the Spirit of the Atlas and prior precedent, and must be resolved in a way that also clearly sets new precedent to prevent future similar ambiguous situations from occurring. This Section must cover the processes needed to operationalize the capability to research and describe the Spirit of the Atlas, the establishment of Spirit of the Atlas interpretations and precedent, and its application to Adaptive Documents. FacilitatorDAOs must have a process for directly applying Spirit of the Atlas interpretations in cases of less ambiguity and impact. In situations where there are high levels of ambiguity about how to extraprolate the Spirit of the Atlas to the new data, a NEWDAO governance vote is needed to establish the precedent"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3": {
"Name": "Atlas Documents",
"Version": 1,
"Type": "Article",
"Components": {
"Content": "Atlas Documents are integral to NEWDAO\\u2019s structure and governance. They are organized into document trees, starting with Immutable Documents, containing the Spirit of the Atlas, and Adaptive Documents for operationalization and evolution. The Sections of this Article provide detailed insight into the properties, evolution, and processes related to Atlas Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.1",
"A.1.3.2",
"A.1.3.3",
"A.1.3.4",
"A.1.3.5"
],
"links_to": {},
"linked_from": []
},
"A.1.3.0": {
"Name": "Supporting Root",
"Version": 1,
"Type": "Supporting Root",
"Components": {},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.0.0"
],
"links_to": {},
"linked_from": []
},
"A.1.3.0.0": {
"Name": "Atlas Documents Navigation Hub",
"Version": 1,
"Type": "Navigation Hub",
"Components": {
"Content": "The Atlas Documents Document contains all of the rules and specifications related to Atlas Documents. Further navigation: Definition and Properties of Atlas Documents Child Document contains core structural rules of Atlas Document contents and identifiers. Recursive Governance Improvement of Adaptive Documents Child Document is a stub that covers how Atlas Documents interact with NEWDAO Governance. Structure, categories and types of Atlas Documents Hub contains the rules and specifications for different types and categories of Atlas Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {
"Definition and Properties of Atlas Documents": "A.1.3.1",
"Recursive Governance Improvement of Adaptive Documents": "A.1.3.2",
"Structure, categories and types of Atlas Documents Hub": "A.1.3.3.0.0"
},
"linked_from": []
},
"A.1.3.1": {
"Name": "Definition and Properties of Atlas Documents",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "Atlas Documents are the basic building blocks for structuring data in the Atlas. They are organized as nested document trees, each with a unique Document Identifier. The first three layers contain the Immutable Documents, which together enshrine the Spirit of the Atlas and the core, permanent boundaries for how to operationalize it without risking slippery slope misalignment. In the layers below the Immutable Documents are the Adaptive Documents, which are continuously improved through the NEWDAO governnace process to interpret and practically operationalize the Spirit of the Atlas, within the boundaries of the Immutable Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.1.1",
"A.1.3.1.2"
],
"links_to": {},
"linked_from": []
},
"A.1.3.1.1": {
"Name": "Document Identifiers",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "All Atlas Documents are distinguishable through their unique Document Identifier. The Document Identifier is the technical name of the Atlas Document, and it determines its position in the Document Tree of the Atlas. All Document Identifiers begin with a capital A, and the numbers and letters of the Document Identifiers are separated with dots, with each dot signifying that the Atlas Document is one layer deeper in the tree structure. The Document Identifiers help determine the position of each Atlas Document, and makes it easier to estimate the relationship between two different Atlas Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2": {
"Name": "Atlas Document Properties",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "All Atlas Documents have 5 standard properties that provide key information about them. The subdocuments of A.1.3.2 specify the characteristics of each of the 5 standard properties.\nThe standard properties of Atlas Documents should be listed in the following order:\n1. Name\n2. Version\n3. Last Modified\n4. Type\n5. Components"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.1.2.1",
"A.1.3.1.2.2",
"A.1.3.1.2.3",
"A.1.3.1.2.4",
"A.1.3.1.2.5"
],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2.1": {
"Name": "Name Property",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The Name property is used to provide each Atlas Document a human-readable name, to make it more easily distinguishable by humans, and to give a very rough overview of its purpose and function. The actual names of Atlas Documents for data-keeping purposes are their Document Identifiers, as a result it is possible to modify the name property with no consequences."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2.2": {
"Name": "Version Property",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The version property of Atlas Documents specifies how many times it has been modified. Every time an Atlas Document is modified, the newly modified Document gets its version number incremented, and the old version is recorded as a historical version with a Document Identifier equivalent to its version number. As an example, if an Atlas Document located 1.1.1 with version number 3 is modified, the new Atlas Document will have version number 4, and the old Atlas Document will be located at 1.1.1.v3. This means all historical versions of Atlas Documents are kept permanently as a part of the Atlas, to ensure the data isn't lost over time."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2.3": {
"Name": "Last Modified Property",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The 'Last Modified' property specifies the exact date and time when the Atlas Document was updated to its current version. It is recorded in the UTC timezone and follows the format 'YYYY-MM-DD-HH:MM:SS'. This property provides a timestamp for tracking modifications and ensuring transparency in the governance and update process. When an Atlas Document is at version 1, then Last Modified property denotes when the Atlas Document was created."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2.4": {
"Name": "Type Property",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The Type Property of Atlas Documents specifies the function, characteristic and purpose of the Atlas Document. The Type determines the data that must be contained in the Components Property. The various Document Types and their characteristics are specified in *A.1.3.3*."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.1.2.5": {
"Name": "Components Property",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The Components Property of Atlas Documents contains an object that specifies the data components of the Atlas Document as nested properties. The Components of an Atlas Document is determined by its Type. Some Document Types have no Components, in which the object is just empty. An Atlas Document with Components must always have all of its components properly filled according to the requirements defined by its Type Specification. Some documents have custom logic for how their Components behave, and this custom logic is specified through a special reserved component property called 'custom'. Atlas Documents of Types with specified custom logic components can have variable number of components, and different characteristics of each component, for each instance of the Type. Custom components are always appended to the end of the list of components."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.2": {
"Name": "Recursive governance improvement of Adaptive Documents",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "Adaptive Documents are updated quarterly through the AVC process, based on Aligned Scope Proposals produced by AVCs. These updates must always be aligned with the principles and boundaries of the Immutable Documents, and must aim to objectively improve the quality of the Adaptive Documents over time to ensure the NEW Ecosystem always trends towards greater Universal Alignment, lower inner incentive requirements of its participants, greater efficiency, greater resilience and sustainable growth."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3": {
"Name": "Structure, categories and types of Atlas Documents",
"Version": 1,
"Type": "Section",
"Components": {
"Content": "This Section must provide clear specifications of the basic structure of Atlas Documents, their general categores and individual types, their syntax and content requirements, and their functions and composability in the Atlas."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.3.1",
"A.1.3.3.2"
],
"links_to": {},
"linked_from": []
},
"A.1.3.3.0": {
"Name": "Supporting Root",
"Version": 1,
"Type": "Supporting Root",
"Components": {},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.3.0.0"
],
"links_to": {},
"linked_from": []
},
"A.1.3.3.0.0": {
"Name": "Structure, categories and types of Atlas Documents Navigation Hub",
"Version": 1,
"Type": "Navigation Hub",
"Components": {
"Content": "The Structure, categories and types of Atlas Documents Document is the root of the document subtree that covers all rules about the unique characteristics and differentiating factors of Atlas Documents, in particular Document Types. Further navigation: Atlas Document Type Categories Child Document contains the overview of the high level classification of Atlas Documents Types. List of Document Types and their specifications Child Document contains all of the Document Types and their rules as Child Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {
"Atlas Document Type Categories": "A.1.3.3.1",
"List of Document Types and their specifications": "A.1.3.3.2"
},
"linked_from": []
},
"A.1.3.3.1": {
"Name": "Atlas Document Type Categories",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The Atlas Document Types can be broadly categorized into distinct groups that determine how they are modified and how they function in the Atlas. At the highest level there are the Immutable Documents and the Adaptive Documents. The Adaptive Documents are further subdivided into 3 distinct groups: Primary Documents, Supporting Documents, and Accessory Documents. The category of an Atlas Document can be inferred from its Document Identifier, as each group have unique and non-overlapping rules for validity of their Document Identifiers."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.3.1.1",
"A.1.3.3.1.2",
"A.1.3.3.1.3",
"A.1.3.3.1.4"
],
"links_to": {},
"linked_from": []
},
"A.1.3.3.1.1": {
"Name": "Immutable Document category",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "Immutable Documents are the most important part the Atlas, as they record the Spirit of the Atlas, detailing the vision, purpose and unalienable principles of NEWDAO. They are fully immutable and can never be changed once the Sagittarius Lockstake Engine has been deployed. Any attempt to change or circumvent the Spirit of the Atlas as specified in the Immutable Documents is severe misalignment. Immutable Documents have Document identifiers that are at most 3 layers deep in the Document Tree."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.1.2": {
"Name": "Primary Document category",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "Primary Documents are the cornerstone of the Adaptive Documents and the practical operationalization and resilience of the Atlas. They detail specific, practical principles, rules, processes and roles necessary to operationalize the Spirit of the Atlas. Primary Documents are modified through AVC process only, and generally must be modified as slowly as possible, and as little as possible while remaining fully adapted to the external environment. Every modification of a Primary Document should aim to future-proof against the need for future modifications. The exception to this, is when Primary Documents are modified to adapt to changing external conditions, as it is important they stay up to date and are fully adapted in their ability to protect the Spirit of the Atlas against threats from a changing environment. Primary Documents have Document Identifiers that are 4 layers or deeper in the Document Tree, and cannot contain 0's."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.1.3": {
"Name": "Supporting Document category",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "Supporting Documents are attached to Immutable Documents and Primary Documents (called their Target Document). They provide context and in some cases advanced functionality to the Target Documents, enabling them to be fully operationally effective and unambiguous. The different Types of Supporting Documents have different functions, and some of them are required for all Immutable Documents and Primary Documents, while others are only required for certain Primary Document Types. Some Supporting Documents can only be modified through the AVC process, while others have active data components that can be modified in real time by processes specified in the Atlas, either in the Target Document or elsewhere in the Atlas, depending on the Supporting Document. Supporting Documents always have Document Identifiers that contain at least one 0."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.1.4": {
"Name": "Accessory Document category",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "Accessory Documents provide accessory data to every other Atlas Document type. There are two types of Accessory Documents; Translation Documents and Archive Documents. Translation Documents can be edited directly by FacilitatorDAOs, while Archive Documents are immutable. Accessory Documents always have Document Identifiers that contain letters in addition to the standard 'A' prefix of all Atlas Document Identifiers."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2": {
"Name": "List of Document Types and their specifications",
"Version": 1,
"Type": "Core",
"Components": {
"Content": "The subdocuments of this Core Document are Type Specification Documents that contain specifications of each of the Atlas Document Types, specifying their standardized characteristics and requirements which must be followed by all Atlas Documents to be valid and aligned."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [
"A.1.3.3.2.1",
"A.1.3.3.2.10",
"A.1.3.3.2.11",
"A.1.3.3.2.12",
"A.1.3.3.2.13",
"A.1.3.3.2.14",
"A.1.3.3.2.15",
"A.1.3.3.2.16",
"A.1.3.3.2.17",
"A.1.3.3.2.18",
"A.1.3.3.2.19",
"A.1.3.3.2.2",
"A.1.3.3.2.20",
"A.1.3.3.2.21",
"A.1.3.3.2.22",
"A.1.3.3.2.23",
"A.1.3.3.2.24",
"A.1.3.3.2.25",
"A.1.3.3.2.3",
"A.1.3.3.2.4",
"A.1.3.3.2.5",
"A.1.3.3.2.6",
"A.1.3.3.2.7",
"A.1.3.3.2.8",
"A.1.3.3.2.9"
],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.1": {
"Name": "The Type Specification Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Type Specification",
"Type Overview": "The Type Specification Type is used for Type Specification Documents that specify the characteristics of each of the different Document Types. It ensures that all Type Specifications contain all necessary information to make it easy to reason about whether a document follows the requirements for its type.",
"Type Components": {
"Type Name": "The Type Name Component must contain the name of the Document Type",
"Type Overview": "The Type Overview Component must contain high level information as human-readable text about the type, such as what it is used for and why it is necessary.",
"Type Components": "If the Type has Components, they must be specified in this Component as a nested object.",
"Type Category": "This Component must specify whether the Type is an Immutable Document, a Primary Document, a Supporting Document, or a Translation Document.",
"Document Identifier Rules": "This Component must specify as human-readable text rules related to the Document Identifier for Atlas Documents of this Type, and their locations in the Document Trees.",
"Type Authority": "This Component must specify, as a number from 0 to 1, the authority of Documents of this type, in order to assist in resolving contradictions between Documents of different types.",
"Additional Logic": "This Component can contain additional logic that applies to all Documents of the Type."
},
"Type Category": "Primary Document",
"Document Identifier Rules": "Type Specification Documents must follow the Document Identifier rules for Primary Documents and be grouped together in the Governance Scope Article relevant to Document creation and data integration.",
"Type Authority": 0.91,
"Additional Logic": "The rules specified in Type Specification Documents must be followed for all Atlas Documents"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.10": {
"Name": "The Element Analysis Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Element Analysis",
"Type Overview": "Element Analysis Documents analyze and interpret individual elements in a Main Document, breaking down the meaning, implications, and applications of these elements to provide a clear and comprehensive understanding of the Main Document's content.",
"Type Components": {
"Element": "The Element Component should contain the unique word or phrase from the Target Document that is being analyzed.",
"Analysis": "The Analysis Component should contain the interpretation, implications, and applications of the Element, providing a detailed understanding of its role and meaning in the Target Document in the broader context of the Spirit of the Atlas."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Element Analysis Documents must always be located as subdocuments to the Element Analysis Directory Document of their Target Document.",
"Type Authority": 0.4,
"Additional Logic": "Element Analysis Documents should be created to help in the understanding and interpretation of the Target Document. They should be updated as necessary to reflect changes in the understanding or interpretation of the Element, while maintaining consistency with the Target Document. The Element Analysis should not contradict its Target Document or other context data of the Target Document."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.11": {
"Name": "The FacilitatorDAO Action Example Directory Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "FacilitatorDAO Action Example Directory",
"Type Overview": "The FacilitatorDAO Action Example Directory Type is a directory Type used to list all of the FacilitatorDAO Action Example Documents that pertain to a Target Document. FacilitatorDAO Action Example Documents provide hypothetical examples of FacilitatorDAO Actions that provide context and clarity on the interpretation of the Target Document in a real situation.",
"Type Components": {},
"Type Category": "Supporting",
"Document Identifier Rules": "FacilitatorDAO Action Example Directory Documents must always be located at the .0.3 position of their Target Document.",
"Type Authority": "N/A",
"Additional Logic": "N/A"
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.12": {
"Name": "The FacilitatorDAO Action Example Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "FacilitatorDAO Action Example",
"Type Overview": "The FacilitatorDAO Action Example Type is used to provide hypothetical examples of FacilitatorDAO Actions, which serve as a guide for future FacilitatorDAO Actions and decision-making processes. It illustrates the application of principles and rules in practical scenarios, promoting understanding and consistency in governance actions.",
"Type Components": {
"Input": "The Input Component must contain a description of the situation or context in which the FacilitatorDAO Action takes place. This could include any relevant information, such as the state of governance or the specific issue at hand.",
"Output": "The Output Component must contain a description of the FacilitatorDAO's action and the outcome or decision that resulted from it. This should provide a clear illustration of how the FacilitatorDAO responded to the situation.",
"Label": "The Label Component indicates whether the FacilitatorDAO's action is considered aligned or misaligned according to the principles and rules of governance. This judgment is intended to guide future actions and decisions. If the label is misaligned, it must also specify the penalty that is applied to the FacilitatorDAO for misalignment."
},
"Type Category": "Supporting",
"Document Identifier Rules": "FacilitatorDAO Action Example Documents must always be located as subdocuments of the FacilitatorDAO Action Example Directory Document of their Target Document.",
"Type Authority": 0.5,
"Additional Logic": "FacilitatorDAO Action Example Documents should be created and updated as necessary to reflect changes in governance practices, provide clarity on decision-making processes, and enhance understanding of governance principles and rules. The examples should not contradict their Target Document or other Supporting Documents of the Target Document."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.13": {
"Name": "The FacilitatorDAO Action Precedent Directory Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "FacilitatorDAO Action Precedent Directory",
"Type Overview": "FacilitatorDAO Action Precedent Directory Documents list all of the FacilitatorDAO Action Precedent Documents that pertain to a Target Document. FacilitatorDAO Action Precedent Documents record data about FacilitatorDAO Actions, including ongoing actions, that are primarily based on interpretation of content of the Target Document.",
"Type Components": {
"Directory overview": "This Component should contain a brief explanation of overall patterns and themes of the FacilitatorDAO Action Precedents contained within."
},
"Type Category": "Supporting",
"Document Identifier Rules": "FacilitatorDAO Action Precedent Directory Documents must always be located at the .0.4 position below their Target Document.",
"Type Authority": "N/A",
"Additional Logic": "A FacilitatorDAO Action Precedent Directory Document must be updated whenever a new FacilitatorDAO Action Precedent Document is added that meaningfully changes what should be contained in the Directory overview Component."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.14": {
"Name": "The FacilitatorDAO Action Precedent Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "FacilitatorDAO Action Precedent",
"Type Overview": "The FacilitatorDAO Action Precedent Type is used to record all the relevant data related to a FacilitatorDAO Action, to serve as precedent for future FacilitatorDAO Actions and decision-making processes. It is also used for ongoing FacilitatorDAO Actions, and the creation of a FacilitatorDAO Action Precedent is the formal method that FacilitatorDAOs use to take action against misalignment, or explicitly approve ecosystem activity.",
"Type Components": {
"Input": "The Input Component must contain a description of the situation or context in which the FacilitatorDAO Action takes place. This could include any relevant information, such as the state of governance or the specific issue at hand.",
"Output": "The Output Component must contain a description of the FacilitatorDAO's action and the outcome or decision that resulted from it. This should provide a clear illustration of how the FacilitatorDAO responded to the situation.",
"Label": "The Label Component indicates whether the FacilitatorDAO's action is considered aligned or misaligned according to the principles and rules of governance. This judgment is intended to guide future actions and decisions. If the label is misaligned, it must also specify the penalty that is applied to the FacilitatorDAO for misalignment. The Label must always be marked as Aligned when it is created by the FacilitatorDAO, and further action by NEWDAO Governance can directly modify this later according to the specifications of the Atlas Documents relevant to appealing Facilitator Actions."
},
"Type Category": "Supporting",
"Document Identifier Rules": "FacilitatorDAO Action Precedent Documents must always be located as subdocuments of the FacilitatorDAO Action Precedent Directory Document of their Target Document.",
"Type Authority": 0.5,
"Additional Logic": "FacilitatorDAO Action Precedent Documents should be created and updated as necessary to reflect changes in governance practices, provide clarity on decision-making processes, and enhance understanding of governance principles and rules. The Precedents should not contradict their Target Document or other Supporting Documents of the Target Document."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.15": {
"Name": "The Active Data Controller Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Active Data Controller",
"Type Overview": "Active Data Controller Documents are Primary Documents that can have Active Data Documents attached to them as Supporting Documents, and contain variable state that can be directly modified by Facilitators and other processes external to the standard AVC process. Active Data can be lists of authorized actors, parameters, or externally collected data being prepared for data integration with the Atlas.",
"Type Components": {
"Content": "The Content Component of Active Data Controller Documents is used to describe flexible rules of how the Active Data Documents must behave, and how they can be modified. The Custom Components format and requirements of the Active Data Documents must be defined as well."
},
"Type Category": "Primary",
"Document Identifier Rules": "Active Data Controller Documents follow the Document Identifier Rules of Primary Documents.",
"Type Authority": 0.89,
"Additional Logic": "Active Data Controller Documents must have an Active Data Directory Document located below it at the .0.5 position. The Active Data Controller Document can reference its Active Data subdocuments for its own logic. This allows Active Data Documents to be self-improving and adaptive at high speeds."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.16": {
"Name": "The Active Data Directory Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Active Data Directory",
"Type Overview": "The Active Data Directory Type is a directory Type used to list all of the Active Data Documents that pertain to an Active Data Controller Document. Active Data Documents contain variable state that can be directly modified by Facilitators and other processes external to the standard AVC process.",
"Type Components": {
"Directory overview": "This Component should contain a brief explanation of overall patterns and themes of the Active Data Documents contained within."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Active Data Directory Documents must always be located at the .0.5 position of their Active Data Controller Document or Budget Controller Document.",
"Type Authority": "N/A",
"Additional Logic": "An Active Data Directory Document should be updated whenever a new Active Data Document is added that meaningfully changes what should be contained in the Directory overview Component."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.17": {
"Name": "Test Document",
"Version": null,
"Type": null,
"Components": {},
"Last_Modified": "2023-09-23",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.18": {
"Name": "The Active Data Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Active Data",
"Type Overview": "The Active Data Type is used for Supporting Documents that contain variable state that can be directly modified by Facilitators and other processes external to the standard AVC process. Active Data can be lists of authorized actors, parameters, or externally collected data being prepared for data integration with the Atlas.",
"Type Components": {
"Custom Components": "The Custom Components of Active Data Documents are defined by the Active Data Controller Document. They contain the variable state that can be directly modified."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Active Data Documents must always be located as subdocuments of the Active Data Directory Document of their Active Data Controller Document.",
"Type Authority": 0.1,
"Additional Logic": "Active Data Documents can contain arbitrary types of data, and can contain large amounts of data or code. The function and purpose of the contained data depends on the logic specified in the Active Data Controller Document. Active Data Documents can be modified directly through processes external to the Standard AVC process."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.19": {
"Name": "The Budget Controller Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Budget Controller",
"Type Overview": "The Budget Controller Type is used to manage the budgets used by NEWDAO to operationalize the Scopes to achieve the purpose and goals of the Spirit of the Atlas. It controls variable state that specifically authorizes executive votes to disburse payments from the NEWDAO Surplus Buffer, or authorize smart contracts to disbuse such payments. The Budget Controller Document determines the rules and processes for modifying and using the budgets contained in the Budget Documents that are attached to it. Budget Controllers also have Active Data Documents attached that are used to report on the status and results of projects funded through the Budget Documents.",
"Type Components": {
"Content": "The Content Component of Budget Controller Documents is used to describe flexible rules of how the Active Data Documents and Budget Documents must behave, and how they can be modified. The Custom Components format and requirements of the Active Data Documents and the Budget Documents must be defined as well."
},
"Type Category": "Primary",
"Document Identifier Rules": "Budget Controller Documents follow the Document Identifier Rules of Primary Documents.",
"Type Authority": 0.89,
"Additional Logic": "Budget Controller Documents must have an Active Data Directory Document located below it at the .0.5 position, and a Budget Directory Document located below it at the .0.6 position."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.2": {
"Name": "The Atlas Preamble Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Atlas Preamble",
"Type Overview": "The Atlas Preamble Type is used for the Atlas Preamble Document Tree which starts at the 0th position of the first layer of the Atlas. The Atlas Preamble details the Spirit of the Atlas in human-readable language, and specifies important definitions for understanding the Spirit of the Atlas, that must be used as context when interpreting all other parts of the Atlas.",
"Type Components": {
"Content": "The content Component is very flexible and defines in broad human-readable language the Spirit of the Atlas."
},
"Type Category": "Immutable",
"Document Identifier Rules": "Atlas Preamble Documents are located at A.0 or as nested Documents one layer below A.0.",
"Type Authority": 1,
"Additional Logic": "Atlas Preamble Documents are immutable, foundational parts of the Atlas and their content must be considered when interpreting all other Atlas Documents."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.20": {
"Name": "The Budget Directory Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Budget Directory",
"Type Overview": "The Budget Directory Type is a directory Type used to list all of the Budget Documents that pertain to a Budget Controller Document.",
"Type Components": {
"Directory overview": "This Component should contain a brief explanation of overall patterns and themes of the Budget Documents contained within."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Budget Directory Documents must always be located at the .0.6 position of their Budget Controller Document.",
"Type Authority": "N/A",
"Additional Logic": "A Budget Directory Document should be updated whenever a new Budget Document is added that meaningfully changes what should be contained in the Directory overview Component."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.21": {
"Name": "The Budget Document Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Budget",
"Type Overview": "Budget Documents contain state that can authorize executive votes to disburse payments from the NEWDAO Surplus Buffer, or authorize smart contracts to disburse such payments.",
"Type Components": {
"Custom Components": "The Custom Components of Budget Documents are defined by the Budget Controller Document. They contain the variable state that can be directly modified."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Budget Documents must always be located as subdocuments of the Budget Directory Document of their Budget Controller Document.",
"Type Authority": 0.2,
"Additional Logic": "Budget Documents specify a budget rate expressed as NEW per unit of time. Additionally, they can contain large amounts of data, or code, and their function and purpose depends on their Budget Controller Document. Budget Documents can be modified directly through processes external to the Standard AVC process as specified by their Budget Controller Document."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.22": {
"Name": "The Definition Directory Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Definition Directory",
"Type Overview": "The Definition Directory Type is used for Target Documents with a lot of complex subdocuments, and acts as a directory for definitions of unique terms that are only referenced in its subdocuments.",
"Type Components": {},
"Type Category": "Supporting",
"Document Identifier Rules": "Definition Directory Documents must always be located at the .0.0 position of their Target Document.",
"Type Authority": "N/A",
"Additional Logic": "Definition Directory Documents only need to be present in Atlas Documents that require definitions for unique terms in their Subdocuments."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.23": {
"Name": "The Definition Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Definition",
"Type Overview": "The Definition Type is used for documents that define unique concepts contained in Subdocuments to the Target Document of the Definition Document",
"Type Components": {
"Term": "The Term Component contains the name of the term that is being defined.",
"Definition": "The Definition Component contains the detailed definition of the term."
},
"Type Category": "Supporting",
"Document Identifier Rules": "Definition Documents must always be located as subdocuments of the Definition Directory Document of their Target Document.",
"Type Authority": 0.1,
"Additional Logic": "To the extent possible it should be avoided to have the same term defined multiple times in the Atlas, and instead always put a single defininition at a location in the Atlas that covers all of its use. The main exception to this principle should be when relatively niche terms are present in two different Scopes."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.24": {
"Name": "The Translation Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Translation",
"Type Overview": "The Translation Type is used for creating translated versions of Atlas Documents to make the Atlas accessible to non-English speakers. Translation Documents are Accessory Documents and they do not have any impact on the governance or operation of NEWDAO, but they are important for accessibility and inclusivity.",
"Type Components": {
"Original Document Type": "The Type of the original document that is being translated must be specified in this component.",
"Language": "The Language Component specifies the language in which the Atlas Document is translated.",
"Translated Name": "The Translated Name component contains the name of the translated Atlas Document in the new language.",
"Custom": "Translation Documents contain Custom Components that mirror the components of the original Document with component name and component data translated to the new language."
},
"Type Category": "Accessory",
"Document Identifier Rules": "Translation Documents are located as subdocuments to the Atlas Document they are translating. Their Document Identifier is the same as the Atlas Document they are translating, with an additional suffix that represents the language of the translation. For example, a Spanish translation of A.1 would have the Document Identifier A.1.es.",
"Type Authority": "N/A",
"Additional Logic": "Translation Documents should be updated whenever the Atlas Document they are translating is updated to ensure that the translation remains accurate. However, in case of any discrepancies or contradictions, the original English version of the Atlas Document always takes precedence."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.25": {
"Name": "The Archive Type",
"Version": 1,
"Type": "Type Specification",
"Components": {
"Type Name": "Archive",
"Type Overview": "The Archive Type is used for storing historical versions of Atlas Documents. Archive Documents are Accessory Documents and they do not have any impact on the governance or operation of NEWDAO, but they are important for maintaining a record of changes and evolution of the Atlas over time.",
"Type Components": {
"Original Document Type": "The Type of the original document that is being archived must be specified in this component.",
"Custom": "Archive Documents contain Custom Components that mirror the components of the original Document at the time of the version being archived."
},
"Type Category": "Accessory",
"Document Identifier Rules": "Archive Documents are located as subdocuments to the Atlas Document they are archiving. Their Document Identifier is the same as the Atlas Document they are archiving, with an additional suffix 'v' followed by the version number of the document being archived. For example, the third version of A.1 would have the Document Identifier A.1.v3.",
"Type Authority": "N/A",
"Additional Logic": "Archive Documents should be created whenever an Atlas Document is updated to ensure that a record of all previous versions is maintained. They are not meant to be modified or deleted once created."
},
"Last_Modified": "2023-08-16-19:07:00",
"Child_Documents": [],
"links_to": {},
"linked_from": []
},
"A.1.3.3.2.26": {
"Name": "The Navigation Hub Type",
"Version": 1,