artifact-contracts 0.33.11 → 0.33.13

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.
@@ -361,3 +361,958 @@ x-agent:
361
361
  ```
362
362
 
363
363
  ---
364
+
365
+ ---
366
+
367
+ ## Schemas
368
+
369
+ ### AgentFinding
370
+
371
+ Type: `object`
372
+
373
+ | Property | Type | Required | Description |
374
+ |---|---|---|---|
375
+ | `id` | `string` | Yes | |
376
+ | `severity` | `"critical" \| "error" \| "warning" \| "info"` | Yes | |
377
+ | `category` | `string` | Yes | |
378
+ | `title` | `string` | Yes | |
379
+ | `description` | `string` | Yes | |
380
+ | `location` | `string` | No | |
381
+ | `target` | `string` | No | |
382
+ | `recommendation` | `string` | No | |
383
+ | `evidence` | `object[]` | No | |
384
+ | `evidence[].kind` | `"schema" \| "code" \| "config" \| "runtime" \| "doc"` | Yes | |
385
+ | `evidence[].target` | `string` | No | |
386
+ | `evidence[].location` | `string` | No | |
387
+ | `evidence[].excerpt` | `string` | No | |
388
+ | `evidence[].reasoning` | `string` | No | |
389
+
390
+ <details>
391
+ <summary>JSON Schema</summary>
392
+
393
+ ```json
394
+ {
395
+ "type": "object",
396
+ "properties": {
397
+ "id": {
398
+ "type": "string"
399
+ },
400
+ "severity": {
401
+ "type": "string",
402
+ "enum": [
403
+ "critical",
404
+ "error",
405
+ "warning",
406
+ "info"
407
+ ]
408
+ },
409
+ "category": {
410
+ "type": "string"
411
+ },
412
+ "title": {
413
+ "type": "string"
414
+ },
415
+ "description": {
416
+ "type": "string"
417
+ },
418
+ "location": {
419
+ "type": "string"
420
+ },
421
+ "target": {
422
+ "type": "string"
423
+ },
424
+ "recommendation": {
425
+ "type": "string"
426
+ },
427
+ "evidence": {
428
+ "type": "array",
429
+ "items": {
430
+ "type": "object",
431
+ "properties": {
432
+ "kind": {
433
+ "type": "string",
434
+ "enum": [
435
+ "schema",
436
+ "code",
437
+ "config",
438
+ "runtime",
439
+ "doc"
440
+ ]
441
+ },
442
+ "target": {
443
+ "type": "string"
444
+ },
445
+ "location": {
446
+ "type": "string"
447
+ },
448
+ "excerpt": {
449
+ "type": "string"
450
+ },
451
+ "reasoning": {
452
+ "type": "string"
453
+ }
454
+ },
455
+ "required": [
456
+ "kind"
457
+ ]
458
+ }
459
+ }
460
+ },
461
+ "required": [
462
+ "id",
463
+ "severity",
464
+ "category",
465
+ "title",
466
+ "description"
467
+ ]
468
+ }
469
+ ```
470
+
471
+ </details>
472
+
473
+ ### AgentAuditResult
474
+
475
+ Type: `object`
476
+
477
+ | Property | Type | Required | Description |
478
+ |---|---|---|---|
479
+ | `summary` | `string` | Yes | |
480
+ | `risk_level` | `"none" \| "low" \| "medium" \| "high" \| "critical"` | Yes | |
481
+ | `findings` | `object[]` | Yes | |
482
+ | `findings[].id` | `string` | Yes | |
483
+ | `findings[].severity` | `"critical" \| "error" \| "warning" \| "info"` | Yes | |
484
+ | `findings[].category` | `string` | Yes | |
485
+ | `findings[].title` | `string` | Yes | |
486
+ | `findings[].description` | `string` | Yes | |
487
+ | `findings[].location` | `string` | No | |
488
+ | `findings[].target` | `string` | No | |
489
+ | `findings[].recommendation` | `string` | No | |
490
+ | `findings[].evidence` | `object[]` | No | |
491
+ | `findings[].evidence[].kind` | `"schema" \| "code" \| "config" \| "runtime" \| "doc"` | Yes | |
492
+ | `findings[].evidence[].target` | `string` | No | |
493
+ | `findings[].evidence[].location` | `string` | No | |
494
+ | `findings[].evidence[].excerpt` | `string` | No | |
495
+ | `findings[].evidence[].reasoning` | `string` | No | |
496
+ | `recommended_actions` | `object[]` | Yes | |
497
+ | `recommended_actions[].action` | `string` | Yes | |
498
+ | `recommended_actions[].priority` | `"high" \| "medium" \| "low"` | Yes | |
499
+ | `recommended_actions[].description` | `string` | No | |
500
+ | `metadata` | `object` | No | |
501
+ | `metadata.total_artifacts` | `integer` | No | |
502
+ | `metadata.analyzed_artifacts` | `integer` | No | |
503
+ | `metadata.analysis_scope` | `string` | No | |
504
+
505
+ <details>
506
+ <summary>JSON Schema</summary>
507
+
508
+ ```json
509
+ {
510
+ "type": "object",
511
+ "properties": {
512
+ "summary": {
513
+ "type": "string"
514
+ },
515
+ "risk_level": {
516
+ "type": "string",
517
+ "enum": [
518
+ "none",
519
+ "low",
520
+ "medium",
521
+ "high",
522
+ "critical"
523
+ ]
524
+ },
525
+ "findings": {
526
+ "type": "array",
527
+ "items": {
528
+ "type": "object",
529
+ "properties": {
530
+ "id": {
531
+ "type": "string"
532
+ },
533
+ "severity": {
534
+ "type": "string",
535
+ "enum": [
536
+ "critical",
537
+ "error",
538
+ "warning",
539
+ "info"
540
+ ]
541
+ },
542
+ "category": {
543
+ "type": "string"
544
+ },
545
+ "title": {
546
+ "type": "string"
547
+ },
548
+ "description": {
549
+ "type": "string"
550
+ },
551
+ "location": {
552
+ "type": "string"
553
+ },
554
+ "target": {
555
+ "type": "string"
556
+ },
557
+ "recommendation": {
558
+ "type": "string"
559
+ },
560
+ "evidence": {
561
+ "type": "array",
562
+ "items": {
563
+ "type": "object",
564
+ "properties": {
565
+ "kind": {
566
+ "type": "string",
567
+ "enum": [
568
+ "schema",
569
+ "code",
570
+ "config",
571
+ "runtime",
572
+ "doc"
573
+ ]
574
+ },
575
+ "target": {
576
+ "type": "string"
577
+ },
578
+ "location": {
579
+ "type": "string"
580
+ },
581
+ "excerpt": {
582
+ "type": "string"
583
+ },
584
+ "reasoning": {
585
+ "type": "string"
586
+ }
587
+ },
588
+ "required": [
589
+ "kind"
590
+ ]
591
+ }
592
+ }
593
+ },
594
+ "required": [
595
+ "id",
596
+ "severity",
597
+ "category",
598
+ "title",
599
+ "description"
600
+ ]
601
+ }
602
+ },
603
+ "recommended_actions": {
604
+ "type": "array",
605
+ "items": {
606
+ "type": "object",
607
+ "properties": {
608
+ "action": {
609
+ "type": "string"
610
+ },
611
+ "priority": {
612
+ "type": "string",
613
+ "enum": [
614
+ "high",
615
+ "medium",
616
+ "low"
617
+ ]
618
+ },
619
+ "description": {
620
+ "type": "string"
621
+ }
622
+ },
623
+ "required": [
624
+ "action",
625
+ "priority"
626
+ ]
627
+ }
628
+ },
629
+ "metadata": {
630
+ "type": "object",
631
+ "properties": {
632
+ "total_artifacts": {
633
+ "type": "integer"
634
+ },
635
+ "analyzed_artifacts": {
636
+ "type": "integer"
637
+ },
638
+ "analysis_scope": {
639
+ "type": "string"
640
+ }
641
+ }
642
+ }
643
+ },
644
+ "required": [
645
+ "summary",
646
+ "risk_level",
647
+ "findings",
648
+ "recommended_actions"
649
+ ]
650
+ }
651
+ ```
652
+
653
+ </details>
654
+
655
+ ### AgentEvidence
656
+
657
+ Type: `object`
658
+
659
+ | Property | Type | Required | Description |
660
+ |---|---|---|---|
661
+ | `kind` | `"schema" \| "code" \| "config" \| "runtime" \| "doc"` | Yes | |
662
+ | `target` | `string` | No | |
663
+ | `location` | `string` | No | |
664
+ | `excerpt` | `string` | No | |
665
+ | `reasoning` | `string` | No | |
666
+
667
+ <details>
668
+ <summary>JSON Schema</summary>
669
+
670
+ ```json
671
+ {
672
+ "type": "object",
673
+ "properties": {
674
+ "kind": {
675
+ "type": "string",
676
+ "enum": [
677
+ "schema",
678
+ "code",
679
+ "config",
680
+ "runtime",
681
+ "doc"
682
+ ]
683
+ },
684
+ "target": {
685
+ "type": "string"
686
+ },
687
+ "location": {
688
+ "type": "string"
689
+ },
690
+ "excerpt": {
691
+ "type": "string"
692
+ },
693
+ "reasoning": {
694
+ "type": "string"
695
+ }
696
+ },
697
+ "required": [
698
+ "kind"
699
+ ]
700
+ }
701
+ ```
702
+
703
+ </details>
704
+
705
+ ### AgentRecommendedAction
706
+
707
+ Type: `object`
708
+
709
+ | Property | Type | Required | Description |
710
+ |---|---|---|---|
711
+ | `action` | `string` | Yes | |
712
+ | `priority` | `"high" \| "medium" \| "low"` | Yes | |
713
+ | `description` | `string` | No | |
714
+
715
+ <details>
716
+ <summary>JSON Schema</summary>
717
+
718
+ ```json
719
+ {
720
+ "type": "object",
721
+ "properties": {
722
+ "action": {
723
+ "type": "string"
724
+ },
725
+ "priority": {
726
+ "type": "string",
727
+ "enum": [
728
+ "high",
729
+ "medium",
730
+ "low"
731
+ ]
732
+ },
733
+ "description": {
734
+ "type": "string"
735
+ }
736
+ },
737
+ "required": [
738
+ "action",
739
+ "priority"
740
+ ]
741
+ }
742
+ ```
743
+
744
+ </details>
745
+
746
+ ### ResolvedDefinitions
747
+
748
+ Output of the resolve command
749
+
750
+ Type: `object`
751
+
752
+ | Property | Type | Required | Description |
753
+ |---|---|---|---|
754
+ | `artifact_contracts` | `string` | Yes | |
755
+ | `system` | `object` | Yes | |
756
+ | `system.id` | `string` | Yes | |
757
+ | `system.name` | `string` | No | |
758
+ | `artifacts` | `Record<string, any>` | Yes | Map of artifact ID to resolved artifact definition |
759
+
760
+ <details>
761
+ <summary>JSON Schema</summary>
762
+
763
+ ```json
764
+ {
765
+ "type": "object",
766
+ "description": "Output of the resolve command",
767
+ "properties": {
768
+ "artifact_contracts": {
769
+ "type": "string"
770
+ },
771
+ "system": {
772
+ "type": "object",
773
+ "properties": {
774
+ "id": {
775
+ "type": "string"
776
+ },
777
+ "name": {
778
+ "type": "string"
779
+ }
780
+ },
781
+ "required": [
782
+ "id"
783
+ ]
784
+ },
785
+ "artifacts": {
786
+ "type": "object",
787
+ "description": "Map of artifact ID to resolved artifact definition",
788
+ "additionalProperties": {
789
+ "type": "object",
790
+ "description": "A single resolved artifact definition",
791
+ "properties": {
792
+ "type": {
793
+ "type": "string"
794
+ },
795
+ "authority": {
796
+ "type": "string",
797
+ "enum": [
798
+ "canonical",
799
+ "derived",
800
+ "generated",
801
+ "control"
802
+ ]
803
+ },
804
+ "manual_edit": {
805
+ "type": "string",
806
+ "enum": [
807
+ "allowed",
808
+ "discouraged",
809
+ "forbidden"
810
+ ]
811
+ },
812
+ "change_control": {
813
+ "type": "string",
814
+ "enum": [
815
+ "none",
816
+ "approval-required",
817
+ "regeneration-required"
818
+ ]
819
+ },
820
+ "visibility": {
821
+ "type": "string",
822
+ "enum": [
823
+ "public",
824
+ "internal",
825
+ "private"
826
+ ]
827
+ },
828
+ "description": {
829
+ "type": "string"
830
+ },
831
+ "path_patterns": {
832
+ "type": "array",
833
+ "items": {
834
+ "type": "string"
835
+ }
836
+ },
837
+ "exclude_patterns": {
838
+ "type": "array",
839
+ "items": {
840
+ "type": "string"
841
+ }
842
+ },
843
+ "states": {
844
+ "type": "array",
845
+ "items": {
846
+ "type": "string"
847
+ }
848
+ }
849
+ },
850
+ "required": [
851
+ "type",
852
+ "authority",
853
+ "manual_edit",
854
+ "change_control",
855
+ "visibility",
856
+ "path_patterns"
857
+ ]
858
+ }
859
+ }
860
+ },
861
+ "required": [
862
+ "artifact_contracts",
863
+ "system",
864
+ "artifacts"
865
+ ]
866
+ }
867
+ ```
868
+
869
+ </details>
870
+
871
+ ### ArtifactExplanation
872
+
873
+ Output of the explain command (json/yaml format)
874
+
875
+ Type: `object`
876
+
877
+ | Property | Type | Required | Description |
878
+ |---|---|---|---|
879
+ | `id` | `string` | Yes | |
880
+ | `type` | `string` | Yes | |
881
+ | `authority` | `string` | Yes | |
882
+ | `manual_edit` | `string` | Yes | |
883
+ | `change_control` | `string` | Yes | |
884
+ | `visibility` | `string` | No | |
885
+ | `description` | `string` | No | |
886
+ | `path_patterns` | `string[]` | No | |
887
+ | `exclude_patterns` | `string[]` | No | |
888
+
889
+ <details>
890
+ <summary>JSON Schema</summary>
891
+
892
+ ```json
893
+ {
894
+ "type": "object",
895
+ "description": "Output of the explain command (json/yaml format)",
896
+ "properties": {
897
+ "id": {
898
+ "type": "string"
899
+ },
900
+ "type": {
901
+ "type": "string"
902
+ },
903
+ "authority": {
904
+ "type": "string"
905
+ },
906
+ "manual_edit": {
907
+ "type": "string"
908
+ },
909
+ "change_control": {
910
+ "type": "string"
911
+ },
912
+ "visibility": {
913
+ "type": "string"
914
+ },
915
+ "description": {
916
+ "type": "string"
917
+ },
918
+ "path_patterns": {
919
+ "type": "array",
920
+ "items": {
921
+ "type": "string"
922
+ }
923
+ },
924
+ "exclude_patterns": {
925
+ "type": "array",
926
+ "items": {
927
+ "type": "string"
928
+ }
929
+ }
930
+ },
931
+ "required": [
932
+ "id",
933
+ "type",
934
+ "authority",
935
+ "manual_edit",
936
+ "change_control"
937
+ ]
938
+ }
939
+ ```
940
+
941
+ </details>
942
+
943
+ ### ArtifactDefinition
944
+
945
+ A single resolved artifact definition
946
+
947
+ Type: `object`
948
+
949
+ | Property | Type | Required | Description |
950
+ |---|---|---|---|
951
+ | `type` | `string` | Yes | |
952
+ | `authority` | `"canonical" \| "derived" \| "generated" \| "control"` | Yes | |
953
+ | `manual_edit` | `"allowed" \| "discouraged" \| "forbidden"` | Yes | |
954
+ | `change_control` | `"none" \| "approval-required" \| "regeneration-required"` | Yes | |
955
+ | `visibility` | `"public" \| "internal" \| "private"` | Yes | |
956
+ | `description` | `string` | No | |
957
+ | `path_patterns` | `string[]` | Yes | |
958
+ | `exclude_patterns` | `string[]` | No | |
959
+ | `states` | `string[]` | No | |
960
+
961
+ <details>
962
+ <summary>JSON Schema</summary>
963
+
964
+ ```json
965
+ {
966
+ "type": "object",
967
+ "description": "A single resolved artifact definition",
968
+ "properties": {
969
+ "type": {
970
+ "type": "string"
971
+ },
972
+ "authority": {
973
+ "type": "string",
974
+ "enum": [
975
+ "canonical",
976
+ "derived",
977
+ "generated",
978
+ "control"
979
+ ]
980
+ },
981
+ "manual_edit": {
982
+ "type": "string",
983
+ "enum": [
984
+ "allowed",
985
+ "discouraged",
986
+ "forbidden"
987
+ ]
988
+ },
989
+ "change_control": {
990
+ "type": "string",
991
+ "enum": [
992
+ "none",
993
+ "approval-required",
994
+ "regeneration-required"
995
+ ]
996
+ },
997
+ "visibility": {
998
+ "type": "string",
999
+ "enum": [
1000
+ "public",
1001
+ "internal",
1002
+ "private"
1003
+ ]
1004
+ },
1005
+ "description": {
1006
+ "type": "string"
1007
+ },
1008
+ "path_patterns": {
1009
+ "type": "array",
1010
+ "items": {
1011
+ "type": "string"
1012
+ }
1013
+ },
1014
+ "exclude_patterns": {
1015
+ "type": "array",
1016
+ "items": {
1017
+ "type": "string"
1018
+ }
1019
+ },
1020
+ "states": {
1021
+ "type": "array",
1022
+ "items": {
1023
+ "type": "string"
1024
+ }
1025
+ }
1026
+ },
1027
+ "required": [
1028
+ "type",
1029
+ "authority",
1030
+ "manual_edit",
1031
+ "change_control",
1032
+ "visibility",
1033
+ "path_patterns"
1034
+ ]
1035
+ }
1036
+ ```
1037
+
1038
+ </details>
1039
+
1040
+ ### ArtifactList
1041
+
1042
+ Output of the list command (json/yaml format)
1043
+
1044
+ Type: `object`
1045
+
1046
+ | Property | Type | Required | Description |
1047
+ |---|---|---|---|
1048
+ | `artifacts` | `Record<string, any>` | No | Map of artifact ID to resolved artifact definition |
1049
+
1050
+ <details>
1051
+ <summary>JSON Schema</summary>
1052
+
1053
+ ```json
1054
+ {
1055
+ "type": "object",
1056
+ "description": "Output of the list command (json/yaml format)",
1057
+ "properties": {
1058
+ "artifacts": {
1059
+ "type": "object",
1060
+ "description": "Map of artifact ID to resolved artifact definition",
1061
+ "additionalProperties": {
1062
+ "type": "object",
1063
+ "description": "A single resolved artifact definition",
1064
+ "properties": {
1065
+ "type": {
1066
+ "type": "string"
1067
+ },
1068
+ "authority": {
1069
+ "type": "string",
1070
+ "enum": [
1071
+ "canonical",
1072
+ "derived",
1073
+ "generated",
1074
+ "control"
1075
+ ]
1076
+ },
1077
+ "manual_edit": {
1078
+ "type": "string",
1079
+ "enum": [
1080
+ "allowed",
1081
+ "discouraged",
1082
+ "forbidden"
1083
+ ]
1084
+ },
1085
+ "change_control": {
1086
+ "type": "string",
1087
+ "enum": [
1088
+ "none",
1089
+ "approval-required",
1090
+ "regeneration-required"
1091
+ ]
1092
+ },
1093
+ "visibility": {
1094
+ "type": "string",
1095
+ "enum": [
1096
+ "public",
1097
+ "internal",
1098
+ "private"
1099
+ ]
1100
+ },
1101
+ "description": {
1102
+ "type": "string"
1103
+ },
1104
+ "path_patterns": {
1105
+ "type": "array",
1106
+ "items": {
1107
+ "type": "string"
1108
+ }
1109
+ },
1110
+ "exclude_patterns": {
1111
+ "type": "array",
1112
+ "items": {
1113
+ "type": "string"
1114
+ }
1115
+ },
1116
+ "states": {
1117
+ "type": "array",
1118
+ "items": {
1119
+ "type": "string"
1120
+ }
1121
+ }
1122
+ },
1123
+ "required": [
1124
+ "type",
1125
+ "authority",
1126
+ "manual_edit",
1127
+ "change_control",
1128
+ "visibility",
1129
+ "path_patterns"
1130
+ ]
1131
+ }
1132
+ }
1133
+ }
1134
+ }
1135
+ ```
1136
+
1137
+ </details>
1138
+
1139
+ ### DiscoverResult
1140
+
1141
+ Output of the discover command
1142
+
1143
+ Type: `object`
1144
+
1145
+ | Property | Type | Required | Description |
1146
+ |---|---|---|---|
1147
+ | `mode` | `"init" \| "update"` | Yes | |
1148
+ | `artifact_contracts_yaml` | `string` | Yes | Generated YAML content |
1149
+ | `decisions` | `object[]` | No | |
1150
+ | `decisions[].artifact_id` | `string` | Yes | |
1151
+ | `decisions[].reasoning` | `string` | Yes | |
1152
+ | `trace_decisions` | `object[]` | No | |
1153
+ | `trace_decisions[].link_id` | `string` | Yes | |
1154
+ | `trace_decisions[].reasoning` | `string` | Yes | |
1155
+ | `uncategorized_files` | `string[]` | No | |
1156
+ | `suggestions` | `string[]` | No | |
1157
+
1158
+ <details>
1159
+ <summary>JSON Schema</summary>
1160
+
1161
+ ```json
1162
+ {
1163
+ "type": "object",
1164
+ "description": "Output of the discover command",
1165
+ "properties": {
1166
+ "mode": {
1167
+ "type": "string",
1168
+ "enum": [
1169
+ "init",
1170
+ "update"
1171
+ ]
1172
+ },
1173
+ "artifact_contracts_yaml": {
1174
+ "type": "string",
1175
+ "description": "Generated YAML content"
1176
+ },
1177
+ "decisions": {
1178
+ "type": "array",
1179
+ "items": {
1180
+ "type": "object",
1181
+ "properties": {
1182
+ "artifact_id": {
1183
+ "type": "string"
1184
+ },
1185
+ "reasoning": {
1186
+ "type": "string"
1187
+ }
1188
+ },
1189
+ "required": [
1190
+ "artifact_id",
1191
+ "reasoning"
1192
+ ]
1193
+ }
1194
+ },
1195
+ "trace_decisions": {
1196
+ "type": "array",
1197
+ "items": {
1198
+ "type": "object",
1199
+ "properties": {
1200
+ "link_id": {
1201
+ "type": "string"
1202
+ },
1203
+ "reasoning": {
1204
+ "type": "string"
1205
+ }
1206
+ },
1207
+ "required": [
1208
+ "link_id",
1209
+ "reasoning"
1210
+ ]
1211
+ }
1212
+ },
1213
+ "uncategorized_files": {
1214
+ "type": "array",
1215
+ "items": {
1216
+ "type": "string"
1217
+ }
1218
+ },
1219
+ "suggestions": {
1220
+ "type": "array",
1221
+ "items": {
1222
+ "type": "string"
1223
+ }
1224
+ }
1225
+ },
1226
+ "required": [
1227
+ "mode",
1228
+ "artifact_contracts_yaml"
1229
+ ]
1230
+ }
1231
+ ```
1232
+
1233
+ </details>
1234
+
1235
+ ### ValidationResult
1236
+
1237
+ Output of the validate command (json format, on error)
1238
+
1239
+ Type: `object`
1240
+
1241
+ | Property | Type | Required | Description |
1242
+ |---|---|---|---|
1243
+ | `valid` | `boolean` | Yes | |
1244
+ | `diagnostics` | `object[]` | Yes | |
1245
+ | `diagnostics[].path` | `string` | No | |
1246
+ | `diagnostics[].message` | `string` | Yes | |
1247
+ | `diagnostics[].severity` | `"error" \| "warning"` | Yes | |
1248
+ | `overlaps` | `object[]` | Yes | |
1249
+ | `overlaps[].path` | `string` | Yes | |
1250
+ | `overlaps[].matching_artifacts` | `string[]` | Yes | |
1251
+
1252
+ <details>
1253
+ <summary>JSON Schema</summary>
1254
+
1255
+ ```json
1256
+ {
1257
+ "type": "object",
1258
+ "description": "Output of the validate command (json format, on error)",
1259
+ "properties": {
1260
+ "valid": {
1261
+ "type": "boolean"
1262
+ },
1263
+ "diagnostics": {
1264
+ "type": "array",
1265
+ "items": {
1266
+ "type": "object",
1267
+ "properties": {
1268
+ "path": {
1269
+ "type": "string"
1270
+ },
1271
+ "message": {
1272
+ "type": "string"
1273
+ },
1274
+ "severity": {
1275
+ "type": "string",
1276
+ "enum": [
1277
+ "error",
1278
+ "warning"
1279
+ ]
1280
+ }
1281
+ },
1282
+ "required": [
1283
+ "message",
1284
+ "severity"
1285
+ ]
1286
+ }
1287
+ },
1288
+ "overlaps": {
1289
+ "type": "array",
1290
+ "items": {
1291
+ "type": "object",
1292
+ "properties": {
1293
+ "path": {
1294
+ "type": "string"
1295
+ },
1296
+ "matching_artifacts": {
1297
+ "type": "array",
1298
+ "items": {
1299
+ "type": "string"
1300
+ }
1301
+ }
1302
+ },
1303
+ "required": [
1304
+ "path",
1305
+ "matching_artifacts"
1306
+ ]
1307
+ }
1308
+ }
1309
+ },
1310
+ "required": [
1311
+ "valid",
1312
+ "diagnostics",
1313
+ "overlaps"
1314
+ ]
1315
+ }
1316
+ ```
1317
+
1318
+ </details>