@millstone/synapse-site 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1477 @@
1
+ {
2
+ "adr": {
3
+ "$id": "adr.schema.json",
4
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5
+ "type": "object",
6
+ "properties": {
7
+ "id": {
8
+ "type": "string",
9
+ "pattern": "^ADR-\\d{4,}$"
10
+ },
11
+ "type": {
12
+ "const": "adr"
13
+ },
14
+ "title": {
15
+ "type": "string",
16
+ "minLength": 1
17
+ },
18
+ "status": {
19
+ "type": "string",
20
+ "enum": [
21
+ "draft",
22
+ "review",
23
+ "approved",
24
+ "deprecated",
25
+ "proposed",
26
+ "accepted",
27
+ "superseded"
28
+ ]
29
+ },
30
+ "owner": {
31
+ "type": "string",
32
+ "minLength": 1
33
+ },
34
+ "created": {
35
+ "type": "string",
36
+ "format": "date-time"
37
+ },
38
+ "updated": {
39
+ "type": "string",
40
+ "format": "date-time"
41
+ },
42
+ "tags": {
43
+ "type": "array",
44
+ "items": {
45
+ "type": "string"
46
+ }
47
+ },
48
+ "summary": {
49
+ "type": "string"
50
+ },
51
+ "example": {
52
+ "type": "boolean"
53
+ },
54
+ "supersedes": {
55
+ "type": "string"
56
+ },
57
+ "superseded_by": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "required": [
62
+ "id",
63
+ "type",
64
+ "title",
65
+ "status",
66
+ "owner",
67
+ "created",
68
+ "updated"
69
+ ],
70
+ "additionalProperties": false
71
+ },
72
+ "agreement": {
73
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
74
+ "title": "Independent Contractor Agreement",
75
+ "type": "object",
76
+ "required": [
77
+ "id",
78
+ "type",
79
+ "title",
80
+ "status",
81
+ "owner",
82
+ "effective_date",
83
+ "parties",
84
+ "compensation",
85
+ "governing_law",
86
+ "venue",
87
+ "signatures"
88
+ ],
89
+ "properties": {
90
+ "id": {
91
+ "type": "string"
92
+ },
93
+ "type": {
94
+ "const": "agreement"
95
+ },
96
+ "title": {
97
+ "type": "string"
98
+ },
99
+ "status": {
100
+ "type": "string"
101
+ },
102
+ "owner": {
103
+ "type": "string"
104
+ },
105
+ "created": {
106
+ "type": "string"
107
+ },
108
+ "updated": {
109
+ "type": "string"
110
+ },
111
+ "tags": {
112
+ "type": "array",
113
+ "items": {
114
+ "type": "string"
115
+ }
116
+ },
117
+ "effective_date": {
118
+ "type": "string"
119
+ },
120
+ "parties": {
121
+ "type": "object",
122
+ "required": [
123
+ "client",
124
+ "contractor"
125
+ ],
126
+ "properties": {
127
+ "client": {
128
+ "type": "object",
129
+ "required": [
130
+ "name",
131
+ "state",
132
+ "address"
133
+ ],
134
+ "properties": {
135
+ "name": {
136
+ "type": "string"
137
+ },
138
+ "state": {
139
+ "type": "string"
140
+ },
141
+ "address": {
142
+ "type": "string"
143
+ }
144
+ }
145
+ },
146
+ "contractor": {
147
+ "type": "object",
148
+ "required": [
149
+ "name",
150
+ "state",
151
+ "address"
152
+ ],
153
+ "properties": {
154
+ "name": {
155
+ "type": "string"
156
+ },
157
+ "state": {
158
+ "type": "string"
159
+ },
160
+ "address": {
161
+ "type": "string"
162
+ }
163
+ }
164
+ }
165
+ }
166
+ },
167
+ "compensation": {
168
+ "type": "object",
169
+ "required": [
170
+ "total"
171
+ ],
172
+ "properties": {
173
+ "total": {
174
+ "type": "number"
175
+ },
176
+ "in_kind": {
177
+ "type": "array",
178
+ "items": {
179
+ "type": "object",
180
+ "required": [
181
+ "description",
182
+ "fair_market_value",
183
+ "delivery"
184
+ ],
185
+ "properties": {
186
+ "description": {
187
+ "type": "string"
188
+ },
189
+ "fair_market_value": {
190
+ "type": "number"
191
+ },
192
+ "delivery": {
193
+ "type": "string"
194
+ }
195
+ }
196
+ }
197
+ },
198
+ "milestones": {
199
+ "type": "array",
200
+ "items": {
201
+ "type": "object",
202
+ "required": [
203
+ "name",
204
+ "amount",
205
+ "trigger",
206
+ "due_days"
207
+ ],
208
+ "properties": {
209
+ "name": {
210
+ "type": "string"
211
+ },
212
+ "amount": {
213
+ "type": "number"
214
+ },
215
+ "trigger": {
216
+ "type": "string"
217
+ },
218
+ "due_days": {
219
+ "type": "number"
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "termination": {
227
+ "type": "object",
228
+ "properties": {
229
+ "convenience": {
230
+ "type": "object",
231
+ "properties": {
232
+ "notice_days": {
233
+ "type": "number"
234
+ }
235
+ }
236
+ }
237
+ }
238
+ },
239
+ "governing_law": {
240
+ "type": "string"
241
+ },
242
+ "venue": {
243
+ "type": "string"
244
+ },
245
+ "signatures": {
246
+ "type": "object",
247
+ "required": [
248
+ "client_signatory",
249
+ "contractor_signatory"
250
+ ],
251
+ "properties": {
252
+ "client_signatory": {
253
+ "type": "string"
254
+ },
255
+ "contractor_signatory": {
256
+ "type": "string"
257
+ }
258
+ }
259
+ }
260
+ },
261
+ "additionalProperties": false
262
+ },
263
+ "capability": {
264
+ "$id": "capability.schema.json",
265
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
266
+ "type": "object",
267
+ "properties": {
268
+ "id": {
269
+ "type": "string",
270
+ "minLength": 1
271
+ },
272
+ "type": {
273
+ "const": "capability"
274
+ },
275
+ "title": {
276
+ "type": "string",
277
+ "minLength": 1
278
+ },
279
+ "status": {
280
+ "type": "string",
281
+ "enum": [
282
+ "draft",
283
+ "review",
284
+ "approved",
285
+ "deprecated",
286
+ "proposed",
287
+ "accepted",
288
+ "superseded"
289
+ ]
290
+ },
291
+ "owner": {
292
+ "type": "string",
293
+ "minLength": 1
294
+ },
295
+ "created": {
296
+ "type": "string",
297
+ "format": "date-time"
298
+ },
299
+ "updated": {
300
+ "type": "string",
301
+ "format": "date-time"
302
+ },
303
+ "tags": {
304
+ "type": "array",
305
+ "items": {
306
+ "type": "string"
307
+ }
308
+ },
309
+ "summary": {
310
+ "type": "string"
311
+ },
312
+ "example": {
313
+ "type": "boolean"
314
+ },
315
+ "evidence_links": {
316
+ "type": "array",
317
+ "items": {
318
+ "type": "string"
319
+ }
320
+ }
321
+ },
322
+ "required": [
323
+ "id",
324
+ "type",
325
+ "title",
326
+ "status",
327
+ "owner",
328
+ "created",
329
+ "updated"
330
+ ],
331
+ "additionalProperties": false
332
+ },
333
+ "meeting": {
334
+ "$id": "meeting.schema.json",
335
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
336
+ "type": "object",
337
+ "properties": {
338
+ "id": {
339
+ "type": "string",
340
+ "minLength": 1
341
+ },
342
+ "type": {
343
+ "const": "meeting"
344
+ },
345
+ "title": {
346
+ "type": "string",
347
+ "minLength": 1
348
+ },
349
+ "status": {
350
+ "type": "string",
351
+ "enum": [
352
+ "draft",
353
+ "review",
354
+ "approved",
355
+ "deprecated",
356
+ "proposed",
357
+ "accepted",
358
+ "superseded"
359
+ ]
360
+ },
361
+ "owner": {
362
+ "type": "string",
363
+ "minLength": 1
364
+ },
365
+ "created": {
366
+ "type": "string",
367
+ "format": "date-time"
368
+ },
369
+ "updated": {
370
+ "type": "string",
371
+ "format": "date-time"
372
+ },
373
+ "tags": {
374
+ "type": "array",
375
+ "items": {
376
+ "type": "string"
377
+ }
378
+ },
379
+ "summary": {
380
+ "type": "string"
381
+ },
382
+ "example": {
383
+ "type": "boolean"
384
+ },
385
+ "company": {
386
+ "type": "string",
387
+ "minLength": 1
388
+ },
389
+ "topic": {
390
+ "type": "string",
391
+ "minLength": 1
392
+ },
393
+ "meeting_date": {
394
+ "type": "string",
395
+ "format": "date-time"
396
+ },
397
+ "our_attendees": {
398
+ "type": "array",
399
+ "items": {
400
+ "type": "string"
401
+ }
402
+ },
403
+ "their_attendees": {
404
+ "type": "array",
405
+ "items": {
406
+ "type": "string"
407
+ }
408
+ },
409
+ "related_docs": {
410
+ "type": "array",
411
+ "items": {
412
+ "type": "string"
413
+ }
414
+ }
415
+ },
416
+ "required": [
417
+ "id",
418
+ "type",
419
+ "title",
420
+ "status",
421
+ "owner",
422
+ "created",
423
+ "updated",
424
+ "company",
425
+ "topic",
426
+ "meeting_date"
427
+ ],
428
+ "additionalProperties": false
429
+ },
430
+ "policy": {
431
+ "$id": "policy.schema.json",
432
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
433
+ "type": "object",
434
+ "properties": {
435
+ "id": {
436
+ "type": "string",
437
+ "minLength": 1
438
+ },
439
+ "type": {
440
+ "const": "policy"
441
+ },
442
+ "title": {
443
+ "type": "string",
444
+ "minLength": 1
445
+ },
446
+ "status": {
447
+ "type": "string",
448
+ "enum": [
449
+ "draft",
450
+ "review",
451
+ "approved",
452
+ "deprecated",
453
+ "proposed",
454
+ "accepted",
455
+ "superseded"
456
+ ]
457
+ },
458
+ "owner": {
459
+ "type": "string",
460
+ "minLength": 1
461
+ },
462
+ "created": {
463
+ "type": "string",
464
+ "format": "date-time"
465
+ },
466
+ "updated": {
467
+ "type": "string",
468
+ "format": "date-time"
469
+ },
470
+ "tags": {
471
+ "type": "array",
472
+ "items": {
473
+ "type": "string"
474
+ }
475
+ },
476
+ "summary": {
477
+ "type": "string"
478
+ },
479
+ "example": {
480
+ "type": "boolean"
481
+ },
482
+ "related_standards": {
483
+ "type": "array",
484
+ "items": {
485
+ "type": "string"
486
+ }
487
+ }
488
+ },
489
+ "required": [
490
+ "id",
491
+ "type",
492
+ "title",
493
+ "status",
494
+ "owner",
495
+ "created",
496
+ "updated"
497
+ ],
498
+ "additionalProperties": false
499
+ },
500
+ "prd": {
501
+ "$id": "prd.schema.json",
502
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
503
+ "type": "object",
504
+ "properties": {
505
+ "id": {
506
+ "type": "string",
507
+ "minLength": 1
508
+ },
509
+ "type": {
510
+ "const": "prd"
511
+ },
512
+ "title": {
513
+ "type": "string",
514
+ "minLength": 1
515
+ },
516
+ "status": {
517
+ "type": "string",
518
+ "enum": [
519
+ "draft",
520
+ "review",
521
+ "approved",
522
+ "deprecated",
523
+ "proposed",
524
+ "accepted",
525
+ "superseded"
526
+ ]
527
+ },
528
+ "owner": {
529
+ "type": "string",
530
+ "minLength": 1
531
+ },
532
+ "created": {
533
+ "type": "string",
534
+ "format": "date-time"
535
+ },
536
+ "updated": {
537
+ "type": "string",
538
+ "format": "date-time"
539
+ },
540
+ "tags": {
541
+ "type": "array",
542
+ "items": {
543
+ "type": "string"
544
+ }
545
+ },
546
+ "summary": {
547
+ "type": "string"
548
+ },
549
+ "example": {
550
+ "type": "boolean"
551
+ },
552
+ "related_prds": {
553
+ "type": "array",
554
+ "items": {
555
+ "type": "string"
556
+ }
557
+ },
558
+ "related_tdds": {
559
+ "type": "array",
560
+ "items": {
561
+ "type": "string"
562
+ }
563
+ },
564
+ "related_standards": {
565
+ "type": "array",
566
+ "items": {
567
+ "type": "string"
568
+ }
569
+ }
570
+ },
571
+ "required": [
572
+ "id",
573
+ "type",
574
+ "title",
575
+ "status",
576
+ "owner",
577
+ "created",
578
+ "updated"
579
+ ],
580
+ "additionalProperties": false
581
+ },
582
+ "process": {
583
+ "$id": "process.schema.json",
584
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
585
+ "type": "object",
586
+ "properties": {
587
+ "id": {
588
+ "type": "string",
589
+ "minLength": 1
590
+ },
591
+ "type": {
592
+ "const": "process"
593
+ },
594
+ "title": {
595
+ "type": "string",
596
+ "minLength": 1
597
+ },
598
+ "status": {
599
+ "type": "string",
600
+ "enum": [
601
+ "draft",
602
+ "review",
603
+ "approved",
604
+ "deprecated",
605
+ "proposed",
606
+ "accepted",
607
+ "superseded"
608
+ ]
609
+ },
610
+ "owner": {
611
+ "type": "string",
612
+ "minLength": 1
613
+ },
614
+ "created": {
615
+ "type": "string",
616
+ "format": "date-time"
617
+ },
618
+ "updated": {
619
+ "type": "string",
620
+ "format": "date-time"
621
+ },
622
+ "tags": {
623
+ "type": "array",
624
+ "items": {
625
+ "type": "string"
626
+ }
627
+ },
628
+ "summary": {
629
+ "type": "string"
630
+ },
631
+ "example": {
632
+ "type": "boolean"
633
+ },
634
+ "related_standards": {
635
+ "type": "array",
636
+ "items": {
637
+ "type": "string"
638
+ }
639
+ },
640
+ "related_prds": {
641
+ "type": "array",
642
+ "items": {
643
+ "type": "string"
644
+ }
645
+ },
646
+ "related_tdds": {
647
+ "type": "array",
648
+ "items": {
649
+ "type": "string"
650
+ }
651
+ },
652
+ "related_sops": {
653
+ "type": "array",
654
+ "items": {
655
+ "type": "string"
656
+ }
657
+ },
658
+ "related_systems": {
659
+ "type": "array",
660
+ "items": {
661
+ "type": "string"
662
+ }
663
+ }
664
+ },
665
+ "required": [
666
+ "id",
667
+ "type",
668
+ "title",
669
+ "status",
670
+ "owner",
671
+ "created",
672
+ "updated"
673
+ ],
674
+ "additionalProperties": false
675
+ },
676
+ "reference": {
677
+ "$id": "reference.schema.json",
678
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
679
+ "type": "object",
680
+ "properties": {
681
+ "id": {
682
+ "type": "string",
683
+ "minLength": 1
684
+ },
685
+ "type": {
686
+ "const": "reference"
687
+ },
688
+ "title": {
689
+ "type": "string",
690
+ "minLength": 1,
691
+ "description": "Title of the reference document"
692
+ },
693
+ "status": {
694
+ "type": "string",
695
+ "enum": [
696
+ "draft",
697
+ "published",
698
+ "archived"
699
+ ],
700
+ "description": "Status of the reference document"
701
+ },
702
+ "owner": {
703
+ "type": "string",
704
+ "minLength": 1
705
+ },
706
+ "created": {
707
+ "type": "string",
708
+ "format": "date-time"
709
+ },
710
+ "updated": {
711
+ "type": "string",
712
+ "format": "date-time"
713
+ },
714
+ "tags": {
715
+ "type": "array",
716
+ "items": {
717
+ "type": "string"
718
+ }
719
+ },
720
+ "summary": {
721
+ "type": "string",
722
+ "description": "Brief description or excerpt"
723
+ },
724
+ "example": {
725
+ "type": "boolean"
726
+ },
727
+ "upstream_url": {
728
+ "type": "string",
729
+ "format": "uri",
730
+ "description": "Source URL where this reference content originates"
731
+ },
732
+ "source_prefix": {
733
+ "type": "string",
734
+ "pattern": "^[a-z0-9-]+$",
735
+ "description": "Manual override for source prefix in filename (e.g., 'claude-code', 'dora'). Only needed if automatic extraction from upstream_url fails or needs customization."
736
+ },
737
+ "last_synced": {
738
+ "type": "string",
739
+ "format": "date-time",
740
+ "description": "Timestamp of when content was last synchronized from upstream"
741
+ },
742
+ "attribution": {
743
+ "type": "string",
744
+ "minLength": 1,
745
+ "description": "Original author or organization"
746
+ },
747
+ "license": {
748
+ "type": "string",
749
+ "minLength": 1,
750
+ "description": "License under which the upstream content is distributed"
751
+ },
752
+ "upstream_version": {
753
+ "type": "string",
754
+ "description": "Version or commit hash from upstream source (optional)"
755
+ },
756
+ "category": {
757
+ "type": "string",
758
+ "enum": [
759
+ "documentation",
760
+ "api-reference",
761
+ "blog-post",
762
+ "standard",
763
+ "specification",
764
+ "tutorial",
765
+ "other"
766
+ ],
767
+ "description": "Category of external reference"
768
+ }
769
+ },
770
+ "required": [
771
+ "id",
772
+ "type",
773
+ "title",
774
+ "status",
775
+ "owner",
776
+ "created",
777
+ "updated",
778
+ "upstream_url",
779
+ "last_synced"
780
+ ],
781
+ "additionalProperties": false
782
+ },
783
+ "runbook": {
784
+ "$id": "runbook.schema.json",
785
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
786
+ "type": "object",
787
+ "properties": {
788
+ "id": {
789
+ "type": "string",
790
+ "minLength": 1
791
+ },
792
+ "type": {
793
+ "const": "runbook"
794
+ },
795
+ "title": {
796
+ "type": "string",
797
+ "minLength": 1
798
+ },
799
+ "status": {
800
+ "type": "string",
801
+ "enum": [
802
+ "draft",
803
+ "review",
804
+ "approved",
805
+ "deprecated",
806
+ "proposed",
807
+ "accepted",
808
+ "superseded"
809
+ ]
810
+ },
811
+ "owner": {
812
+ "type": "string",
813
+ "minLength": 1
814
+ },
815
+ "created": {
816
+ "type": "string",
817
+ "format": "date-time"
818
+ },
819
+ "updated": {
820
+ "type": "string",
821
+ "format": "date-time"
822
+ },
823
+ "tags": {
824
+ "type": "array",
825
+ "items": {
826
+ "type": "string"
827
+ }
828
+ },
829
+ "summary": {
830
+ "type": "string"
831
+ },
832
+ "example": {
833
+ "type": "boolean"
834
+ }
835
+ },
836
+ "required": [
837
+ "id",
838
+ "type",
839
+ "title",
840
+ "status",
841
+ "owner",
842
+ "created",
843
+ "updated"
844
+ ],
845
+ "additionalProperties": false
846
+ },
847
+ "scorecard": {
848
+ "$id": "scorecard.schema.json",
849
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
850
+ "type": "object",
851
+ "properties": {
852
+ "id": {
853
+ "type": "string",
854
+ "minLength": 1
855
+ },
856
+ "type": {
857
+ "const": "scorecard"
858
+ },
859
+ "title": {
860
+ "type": "string",
861
+ "minLength": 1
862
+ },
863
+ "status": {
864
+ "type": "string",
865
+ "enum": [
866
+ "draft",
867
+ "review",
868
+ "approved",
869
+ "deprecated",
870
+ "proposed",
871
+ "accepted",
872
+ "superseded"
873
+ ]
874
+ },
875
+ "owner": {
876
+ "type": "string",
877
+ "minLength": 1
878
+ },
879
+ "created": {
880
+ "type": "string",
881
+ "format": "date-time"
882
+ },
883
+ "updated": {
884
+ "type": "string",
885
+ "format": "date-time"
886
+ },
887
+ "tags": {
888
+ "type": "array",
889
+ "items": {
890
+ "type": "string"
891
+ }
892
+ },
893
+ "summary": {
894
+ "type": "string"
895
+ },
896
+ "example": {
897
+ "type": "boolean"
898
+ },
899
+ "dimensions": {
900
+ "type": "array",
901
+ "items": {
902
+ "type": "object",
903
+ "properties": {
904
+ "name": {
905
+ "type": "string",
906
+ "minLength": 1
907
+ },
908
+ "weight": {
909
+ "type": "number",
910
+ "minimum": 0,
911
+ "maximum": 1
912
+ },
913
+ "rating": {
914
+ "type": "number",
915
+ "minimum": 0,
916
+ "maximum": 5
917
+ },
918
+ "evidence": {
919
+ "type": "string"
920
+ },
921
+ "notes": {
922
+ "type": "string"
923
+ }
924
+ },
925
+ "required": [
926
+ "name"
927
+ ]
928
+ },
929
+ "minItems": 1
930
+ },
931
+ "weighted_total": {
932
+ "type": "number",
933
+ "minimum": 0
934
+ },
935
+ "overall_summary": {
936
+ "type": "string",
937
+ "minLength": 1
938
+ },
939
+ "strengths": {
940
+ "type": "array",
941
+ "items": {
942
+ "type": "string"
943
+ }
944
+ },
945
+ "top_risks": {
946
+ "type": "array",
947
+ "items": {
948
+ "type": "string"
949
+ }
950
+ },
951
+ "recommendation": {
952
+ "type": "string",
953
+ "enum": [
954
+ "Proceed",
955
+ "Proceed with conditions",
956
+ "Do not proceed"
957
+ ]
958
+ },
959
+ "metrics": {
960
+ "type": "object",
961
+ "additionalProperties": {
962
+ "type": "string"
963
+ }
964
+ },
965
+ "risks": {
966
+ "type": "array",
967
+ "items": {
968
+ "type": "object",
969
+ "properties": {
970
+ "risk": {
971
+ "type": "string"
972
+ },
973
+ "severity": {
974
+ "type": "string",
975
+ "enum": [
976
+ "H",
977
+ "M",
978
+ "L"
979
+ ]
980
+ },
981
+ "likelihood": {
982
+ "type": "string",
983
+ "enum": [
984
+ "H",
985
+ "M",
986
+ "L"
987
+ ]
988
+ },
989
+ "owner": {
990
+ "type": "string"
991
+ },
992
+ "mitigation": {
993
+ "type": "string"
994
+ },
995
+ "due_date": {
996
+ "type": "string"
997
+ },
998
+ "status": {
999
+ "type": "string"
1000
+ }
1001
+ },
1002
+ "required": [
1003
+ "risk",
1004
+ "severity",
1005
+ "likelihood"
1006
+ ]
1007
+ }
1008
+ },
1009
+ "action_plan": {
1010
+ "type": "array",
1011
+ "items": {
1012
+ "type": "object",
1013
+ "properties": {
1014
+ "initiative": {
1015
+ "type": "string"
1016
+ },
1017
+ "impact": {
1018
+ "type": "string",
1019
+ "enum": [
1020
+ "H",
1021
+ "M",
1022
+ "L"
1023
+ ]
1024
+ },
1025
+ "effort": {
1026
+ "type": "string",
1027
+ "enum": [
1028
+ "H",
1029
+ "M",
1030
+ "L"
1031
+ ]
1032
+ },
1033
+ "owner": {
1034
+ "type": "string"
1035
+ },
1036
+ "milestones": {
1037
+ "type": "string"
1038
+ },
1039
+ "dependencies": {
1040
+ "type": "string"
1041
+ }
1042
+ },
1043
+ "required": [
1044
+ "initiative"
1045
+ ]
1046
+ }
1047
+ },
1048
+ "related_docs": {
1049
+ "type": "array",
1050
+ "items": {
1051
+ "type": "string"
1052
+ }
1053
+ }
1054
+ },
1055
+ "required": [
1056
+ "id",
1057
+ "type",
1058
+ "title",
1059
+ "status",
1060
+ "owner",
1061
+ "created",
1062
+ "updated",
1063
+ "dimensions",
1064
+ "overall_summary"
1065
+ ],
1066
+ "additionalProperties": false
1067
+ },
1068
+ "sop": {
1069
+ "$id": "sop.schema.json",
1070
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1071
+ "type": "object",
1072
+ "properties": {
1073
+ "id": {
1074
+ "type": "string",
1075
+ "minLength": 1
1076
+ },
1077
+ "type": {
1078
+ "const": "sop"
1079
+ },
1080
+ "title": {
1081
+ "type": "string",
1082
+ "minLength": 1
1083
+ },
1084
+ "status": {
1085
+ "type": "string",
1086
+ "enum": [
1087
+ "draft",
1088
+ "review",
1089
+ "approved",
1090
+ "deprecated",
1091
+ "proposed",
1092
+ "accepted",
1093
+ "superseded"
1094
+ ]
1095
+ },
1096
+ "owner": {
1097
+ "type": "string",
1098
+ "minLength": 1
1099
+ },
1100
+ "created": {
1101
+ "type": "string",
1102
+ "format": "date-time"
1103
+ },
1104
+ "updated": {
1105
+ "type": "string",
1106
+ "format": "date-time"
1107
+ },
1108
+ "tags": {
1109
+ "type": "array",
1110
+ "items": {
1111
+ "type": "string"
1112
+ }
1113
+ },
1114
+ "summary": {
1115
+ "type": "string"
1116
+ },
1117
+ "example": {
1118
+ "type": "boolean"
1119
+ },
1120
+ "related_process": {
1121
+ "type": "string",
1122
+ "minLength": 1
1123
+ },
1124
+ "related_prds": {
1125
+ "type": "array",
1126
+ "items": {
1127
+ "type": "string"
1128
+ }
1129
+ },
1130
+ "related_standards": {
1131
+ "type": "array",
1132
+ "items": {
1133
+ "type": "string"
1134
+ }
1135
+ },
1136
+ "related_systems": {
1137
+ "type": "array",
1138
+ "items": {
1139
+ "type": "string"
1140
+ }
1141
+ }
1142
+ },
1143
+ "required": [
1144
+ "id",
1145
+ "type",
1146
+ "title",
1147
+ "status",
1148
+ "owner",
1149
+ "created",
1150
+ "updated",
1151
+ "related_process"
1152
+ ],
1153
+ "additionalProperties": false
1154
+ },
1155
+ "sow": {
1156
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1157
+ "$id": "sow.schema.json",
1158
+ "title": "Statement of Work Schema",
1159
+ "type": "object",
1160
+ "required": [
1161
+ "id",
1162
+ "type",
1163
+ "title",
1164
+ "status",
1165
+ "owner",
1166
+ "created",
1167
+ "updated"
1168
+ ],
1169
+ "properties": {
1170
+ "id": {
1171
+ "type": "string",
1172
+ "minLength": 1
1173
+ },
1174
+ "type": {
1175
+ "const": "sow"
1176
+ },
1177
+ "title": {
1178
+ "type": "string",
1179
+ "minLength": 1
1180
+ },
1181
+ "status": {
1182
+ "type": "string",
1183
+ "enum": [
1184
+ "draft",
1185
+ "review",
1186
+ "approved",
1187
+ "deprecated",
1188
+ "proposed",
1189
+ "accepted",
1190
+ "superseded"
1191
+ ]
1192
+ },
1193
+ "owner": {
1194
+ "type": "string",
1195
+ "minLength": 1
1196
+ },
1197
+ "created": {
1198
+ "type": "string",
1199
+ "format": "date-time"
1200
+ },
1201
+ "updated": {
1202
+ "type": "string",
1203
+ "format": "date-time"
1204
+ },
1205
+ "tags": {
1206
+ "type": "array",
1207
+ "items": {
1208
+ "type": "string"
1209
+ }
1210
+ },
1211
+ "summary": {
1212
+ "type": "string"
1213
+ },
1214
+ "example": {
1215
+ "type": "boolean"
1216
+ },
1217
+ "related_prds": {
1218
+ "type": "array",
1219
+ "items": {
1220
+ "type": "string"
1221
+ }
1222
+ },
1223
+ "related_tdds": {
1224
+ "type": "array",
1225
+ "items": {
1226
+ "type": "string"
1227
+ }
1228
+ },
1229
+ "agreement_date": {
1230
+ "type": "string"
1231
+ }
1232
+ },
1233
+ "additionalProperties": false
1234
+ },
1235
+ "standard": {
1236
+ "$id": "standard.schema.json",
1237
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1238
+ "type": "object",
1239
+ "properties": {
1240
+ "id": {
1241
+ "type": "string",
1242
+ "minLength": 1
1243
+ },
1244
+ "type": {
1245
+ "const": "standard"
1246
+ },
1247
+ "title": {
1248
+ "type": "string",
1249
+ "minLength": 1
1250
+ },
1251
+ "status": {
1252
+ "type": "string",
1253
+ "enum": [
1254
+ "draft",
1255
+ "review",
1256
+ "approved",
1257
+ "deprecated",
1258
+ "proposed",
1259
+ "accepted",
1260
+ "superseded"
1261
+ ]
1262
+ },
1263
+ "owner": {
1264
+ "type": "string",
1265
+ "minLength": 1
1266
+ },
1267
+ "created": {
1268
+ "type": "string",
1269
+ "format": "date-time"
1270
+ },
1271
+ "updated": {
1272
+ "type": "string",
1273
+ "format": "date-time"
1274
+ },
1275
+ "tags": {
1276
+ "type": "array",
1277
+ "items": {
1278
+ "type": "string"
1279
+ }
1280
+ },
1281
+ "summary": {
1282
+ "type": "string"
1283
+ },
1284
+ "example": {
1285
+ "type": "boolean"
1286
+ },
1287
+ "related_policies": {
1288
+ "type": "array",
1289
+ "items": {
1290
+ "type": "string"
1291
+ }
1292
+ },
1293
+ "related_systems": {
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "string"
1297
+ }
1298
+ }
1299
+ },
1300
+ "required": [
1301
+ "id",
1302
+ "type",
1303
+ "title",
1304
+ "status",
1305
+ "owner",
1306
+ "created",
1307
+ "updated"
1308
+ ],
1309
+ "additionalProperties": false
1310
+ },
1311
+ "system": {
1312
+ "$id": "system.schema.json",
1313
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1314
+ "type": "object",
1315
+ "properties": {
1316
+ "id": {
1317
+ "type": "string",
1318
+ "minLength": 1
1319
+ },
1320
+ "type": {
1321
+ "const": "system"
1322
+ },
1323
+ "title": {
1324
+ "type": "string",
1325
+ "minLength": 1
1326
+ },
1327
+ "status": {
1328
+ "type": "string",
1329
+ "enum": [
1330
+ "draft",
1331
+ "review",
1332
+ "approved",
1333
+ "deprecated",
1334
+ "proposed",
1335
+ "accepted",
1336
+ "superseded"
1337
+ ]
1338
+ },
1339
+ "owner": {
1340
+ "type": "string",
1341
+ "minLength": 1
1342
+ },
1343
+ "created": {
1344
+ "type": "string",
1345
+ "format": "date-time"
1346
+ },
1347
+ "updated": {
1348
+ "type": "string",
1349
+ "format": "date-time"
1350
+ },
1351
+ "tags": {
1352
+ "type": "array",
1353
+ "items": {
1354
+ "type": "string"
1355
+ }
1356
+ },
1357
+ "summary": {
1358
+ "type": "string"
1359
+ },
1360
+ "example": {
1361
+ "type": "boolean"
1362
+ },
1363
+ "owner_team": {
1364
+ "type": "string",
1365
+ "minLength": 1
1366
+ },
1367
+ "repos": {
1368
+ "type": "array",
1369
+ "items": {
1370
+ "type": "string",
1371
+ "minLength": 1
1372
+ }
1373
+ },
1374
+ "runtime": {
1375
+ "type": "string",
1376
+ "minLength": 1
1377
+ },
1378
+ "sla": {
1379
+ "type": "string"
1380
+ },
1381
+ "dependencies": {
1382
+ "type": "array",
1383
+ "items": {
1384
+ "type": "string"
1385
+ }
1386
+ },
1387
+ "runbooks": {
1388
+ "type": "array",
1389
+ "items": {
1390
+ "type": "string"
1391
+ }
1392
+ }
1393
+ },
1394
+ "required": [
1395
+ "id",
1396
+ "type",
1397
+ "title",
1398
+ "status",
1399
+ "owner",
1400
+ "created",
1401
+ "updated",
1402
+ "owner_team",
1403
+ "runtime"
1404
+ ],
1405
+ "additionalProperties": false
1406
+ },
1407
+ "tdd": {
1408
+ "$id": "tdd.schema.json",
1409
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1410
+ "type": "object",
1411
+ "properties": {
1412
+ "id": {
1413
+ "type": "string",
1414
+ "minLength": 1
1415
+ },
1416
+ "type": {
1417
+ "const": "tdd"
1418
+ },
1419
+ "title": {
1420
+ "type": "string",
1421
+ "minLength": 1
1422
+ },
1423
+ "status": {
1424
+ "type": "string",
1425
+ "enum": [
1426
+ "draft",
1427
+ "review",
1428
+ "approved",
1429
+ "deprecated",
1430
+ "proposed",
1431
+ "accepted",
1432
+ "superseded"
1433
+ ]
1434
+ },
1435
+ "owner": {
1436
+ "type": "string",
1437
+ "minLength": 1
1438
+ },
1439
+ "created": {
1440
+ "type": "string",
1441
+ "format": "date-time"
1442
+ },
1443
+ "updated": {
1444
+ "type": "string",
1445
+ "format": "date-time"
1446
+ },
1447
+ "tags": {
1448
+ "type": "array",
1449
+ "items": {
1450
+ "type": "string"
1451
+ }
1452
+ },
1453
+ "summary": {
1454
+ "type": "string"
1455
+ },
1456
+ "example": {
1457
+ "type": "boolean"
1458
+ },
1459
+ "related_adrs": {
1460
+ "type": "array",
1461
+ "items": {
1462
+ "type": "string"
1463
+ }
1464
+ }
1465
+ },
1466
+ "required": [
1467
+ "id",
1468
+ "type",
1469
+ "title",
1470
+ "status",
1471
+ "owner",
1472
+ "created",
1473
+ "updated"
1474
+ ],
1475
+ "additionalProperties": false
1476
+ }
1477
+ }