@cyberismo/assets 0.0.6

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.
Files changed (44) hide show
  1. package/LICENSE +702 -0
  2. package/README.md +1 -0
  3. package/dist/index.d.ts +21 -0
  4. package/dist/index.js +612 -0
  5. package/dist/schemas.d.ts +1132 -0
  6. package/dist/static/defaultReport/.schema +7 -0
  7. package/dist/static/defaultReport/index.adoc.hbs +3 -0
  8. package/dist/static/defaultReport/parameterSchema.json +18 -0
  9. package/dist/static/defaultReport/query.lp.hbs +2 -0
  10. package/package.json +30 -0
  11. package/src/calculations/common/base.lp +71 -0
  12. package/src/calculations/common/queryLanguage.lp +418 -0
  13. package/src/calculations/queries/card.lp +129 -0
  14. package/src/calculations/queries/onCreation.lp +44 -0
  15. package/src/calculations/queries/onTransition.lp +26 -0
  16. package/src/calculations/queries/tree.lp +6 -0
  17. package/src/calculations/test/model.lp +9 -0
  18. package/src/declarations.d.ts +9 -0
  19. package/src/graphvizReport/index.adoc.hbs +34 -0
  20. package/src/graphvizReport/query.lp.hbs +141 -0
  21. package/src/index.ts +52 -0
  22. package/src/schema/cardBaseSchema.json +76 -0
  23. package/src/schema/cardTreeDirectorySchema.json +663 -0
  24. package/src/schema/cardsConfigSchema.json +49 -0
  25. package/src/schema/csvSchema.json +30 -0
  26. package/src/schema/dotSchema.json +25 -0
  27. package/src/schema/macros/createCardsMacroSchema.json +39 -0
  28. package/src/schema/macros/graphMacroBaseSchema.json +17 -0
  29. package/src/schema/macros/reportMacroBaseSchema.json +13 -0
  30. package/src/schema/macros/scoreCardMacroSchema.json +24 -0
  31. package/src/schema/resources/cardTypeSchema.json +65 -0
  32. package/src/schema/resources/fieldTypeSchema.json +47 -0
  33. package/src/schema/resources/graphModelSchema.json +28 -0
  34. package/src/schema/resources/graphViewSchema.json +28 -0
  35. package/src/schema/resources/linkTypeSchema.json +56 -0
  36. package/src/schema/resources/reportSchema.json +28 -0
  37. package/src/schema/resources/templateSchema.json +28 -0
  38. package/src/schema/resources/workflowSchema.json +75 -0
  39. package/src/schema/schema.json +166 -0
  40. package/src/schemas.ts +54 -0
  41. package/src/static/defaultReport/.schema +7 -0
  42. package/src/static/defaultReport/index.adoc.hbs +3 -0
  43. package/src/static/defaultReport/parameterSchema.json +18 -0
  44. package/src/static/defaultReport/query.lp.hbs +2 -0
@@ -0,0 +1,1132 @@
1
+ /**
2
+ Cyberismo
3
+ Copyright © Cyberismo Ltd and contributors 2025
4
+ This program is free software: you can redistribute it and/or modify it under
5
+ the terms of the GNU Affero General Public License version 3 as published by
6
+ the Free Software Foundation.
7
+ This program is distributed in the hope that it will be useful, but WITHOUT
8
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
9
+ FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
10
+ details. You should have received a copy of the GNU Affero General Public
11
+ License along with this program. If not, see <https://www.gnu.org/licenses/>.
12
+ */
13
+ export declare const schemas: ({
14
+ title: string;
15
+ $id: string;
16
+ description: string;
17
+ type: string;
18
+ additionalProperties: boolean;
19
+ properties: {
20
+ cardType: {
21
+ type: string;
22
+ minLength: number;
23
+ description: string;
24
+ pattern: string;
25
+ };
26
+ title: {
27
+ type: string;
28
+ minLength: number;
29
+ description: string;
30
+ };
31
+ workflowState: {
32
+ type: string;
33
+ description: string;
34
+ };
35
+ rank: {
36
+ type: string;
37
+ description: string;
38
+ };
39
+ lastTransitioned: {
40
+ type: string;
41
+ format: string;
42
+ description: string;
43
+ };
44
+ lastUpdated: {
45
+ type: string;
46
+ format: string;
47
+ description: string;
48
+ };
49
+ labels: {
50
+ type: string;
51
+ description: string;
52
+ items: {
53
+ type: string;
54
+ minLength: number;
55
+ };
56
+ };
57
+ links: {
58
+ type: string;
59
+ description: string;
60
+ items: {
61
+ type: string;
62
+ properties: {
63
+ cardKey: {
64
+ type: string;
65
+ minLength: number;
66
+ maxLength: number;
67
+ pattern: string;
68
+ };
69
+ linkType: {
70
+ description: string;
71
+ type: string;
72
+ };
73
+ linkDescription: {
74
+ type: string;
75
+ description: string;
76
+ };
77
+ };
78
+ required: string[];
79
+ additionalProperties: boolean;
80
+ };
81
+ };
82
+ templateCardKey: {
83
+ type: string;
84
+ description: string;
85
+ };
86
+ };
87
+ required: string[];
88
+ } | {
89
+ type: string;
90
+ $id: string;
91
+ properties: {
92
+ buttonLabel: {
93
+ type: string;
94
+ description: string;
95
+ };
96
+ template: {
97
+ type: string;
98
+ description: string;
99
+ };
100
+ cardKey: {
101
+ type: string;
102
+ description: string;
103
+ };
104
+ link: {
105
+ type: string;
106
+ properties: {
107
+ linkType: {
108
+ type: string;
109
+ description: string;
110
+ };
111
+ direction: {
112
+ type: string;
113
+ description: string;
114
+ };
115
+ cardKey: {
116
+ type: string;
117
+ description: string;
118
+ };
119
+ };
120
+ additionalProperties: boolean;
121
+ required: string[];
122
+ };
123
+ };
124
+ additionalProperties: boolean;
125
+ required: string[];
126
+ } | {
127
+ title: string;
128
+ $id: string;
129
+ description: string;
130
+ type: string;
131
+ items: {
132
+ type: string;
133
+ additionalProperties: boolean;
134
+ properties: {
135
+ title: {
136
+ type: string;
137
+ minLength: number;
138
+ description: string;
139
+ };
140
+ template: {
141
+ type: string;
142
+ minLength: number;
143
+ description: string;
144
+ };
145
+ description: {
146
+ type: string;
147
+ description: string;
148
+ };
149
+ labels: {
150
+ type: string;
151
+ };
152
+ };
153
+ required: string[];
154
+ };
155
+ } | {
156
+ title: string;
157
+ $id: string;
158
+ description: string;
159
+ type: string;
160
+ items: {
161
+ type: string;
162
+ additionalProperties: boolean;
163
+ properties: {
164
+ version: {
165
+ description: string;
166
+ type: string;
167
+ };
168
+ file: {
169
+ description: string;
170
+ type: string;
171
+ };
172
+ id: {
173
+ description: string;
174
+ type: string;
175
+ };
176
+ };
177
+ required: string[];
178
+ };
179
+ } | {
180
+ title: string;
181
+ $id: string;
182
+ description: string;
183
+ type: string;
184
+ properties: {
185
+ model: {
186
+ description: string;
187
+ type: string;
188
+ };
189
+ view: {
190
+ description: string;
191
+ type: string;
192
+ };
193
+ };
194
+ required: string[];
195
+ } | {
196
+ title: string;
197
+ $id: string;
198
+ description: string;
199
+ type: string;
200
+ properties: {
201
+ name: {
202
+ description: string;
203
+ type: string;
204
+ };
205
+ };
206
+ required: string[];
207
+ } | {
208
+ $schema: string;
209
+ $id: string;
210
+ title: string;
211
+ definitions: {
212
+ schemaArray: {
213
+ type: string;
214
+ minItems: number;
215
+ items: {
216
+ $ref: string;
217
+ };
218
+ };
219
+ nonNegativeInteger: {
220
+ type: string;
221
+ minimum: number;
222
+ };
223
+ nonNegativeIntegerDefault0: {
224
+ allOf: ({
225
+ $ref: string;
226
+ default?: undefined;
227
+ } | {
228
+ default: number;
229
+ $ref?: undefined;
230
+ })[];
231
+ };
232
+ simpleTypes: {
233
+ enum: string[];
234
+ };
235
+ stringArray: {
236
+ type: string;
237
+ items: {
238
+ type: string;
239
+ };
240
+ uniqueItems: boolean;
241
+ default: never[];
242
+ };
243
+ };
244
+ type: string[];
245
+ properties: {
246
+ $id: {
247
+ type: string;
248
+ format: string;
249
+ };
250
+ $schema: {
251
+ type: string;
252
+ format: string;
253
+ };
254
+ $ref: {
255
+ type: string;
256
+ format: string;
257
+ };
258
+ $comment: {
259
+ type: string;
260
+ };
261
+ title: {
262
+ type: string;
263
+ };
264
+ description: {
265
+ type: string;
266
+ };
267
+ default: boolean;
268
+ readOnly: {
269
+ type: string;
270
+ default: boolean;
271
+ };
272
+ writeOnly: {
273
+ type: string;
274
+ default: boolean;
275
+ };
276
+ examples: {
277
+ type: string;
278
+ items: boolean;
279
+ };
280
+ multipleOf: {
281
+ type: string;
282
+ exclusiveMinimum: number;
283
+ };
284
+ maximum: {
285
+ type: string;
286
+ };
287
+ exclusiveMaximum: {
288
+ type: string;
289
+ };
290
+ minimum: {
291
+ type: string;
292
+ };
293
+ exclusiveMinimum: {
294
+ type: string;
295
+ };
296
+ maxLength: {
297
+ $ref: string;
298
+ };
299
+ minLength: {
300
+ $ref: string;
301
+ };
302
+ pattern: {
303
+ type: string;
304
+ format: string;
305
+ };
306
+ additionalItems: {
307
+ $ref: string;
308
+ };
309
+ items: {
310
+ anyOf: {
311
+ $ref: string;
312
+ }[];
313
+ default: boolean;
314
+ };
315
+ maxItems: {
316
+ $ref: string;
317
+ };
318
+ minItems: {
319
+ $ref: string;
320
+ };
321
+ uniqueItems: {
322
+ type: string;
323
+ default: boolean;
324
+ };
325
+ contains: {
326
+ $ref: string;
327
+ };
328
+ maxProperties: {
329
+ $ref: string;
330
+ };
331
+ minProperties: {
332
+ $ref: string;
333
+ };
334
+ required: {
335
+ $ref: string;
336
+ };
337
+ additionalProperties: {
338
+ $ref: string;
339
+ };
340
+ definitions: {
341
+ type: string;
342
+ additionalProperties: {
343
+ $ref: string;
344
+ };
345
+ default: {};
346
+ };
347
+ properties: {
348
+ type: string;
349
+ additionalProperties: {
350
+ $ref: string;
351
+ };
352
+ default: {};
353
+ };
354
+ patternProperties: {
355
+ type: string;
356
+ additionalProperties: {
357
+ $ref: string;
358
+ };
359
+ propertyNames: {
360
+ format: string;
361
+ };
362
+ default: {};
363
+ };
364
+ dependencies: {
365
+ type: string;
366
+ additionalProperties: {
367
+ anyOf: {
368
+ $ref: string;
369
+ }[];
370
+ };
371
+ };
372
+ propertyNames: {
373
+ $ref: string;
374
+ };
375
+ const: boolean;
376
+ enum: {
377
+ type: string;
378
+ items: boolean;
379
+ minItems: number;
380
+ uniqueItems: boolean;
381
+ };
382
+ type: {
383
+ anyOf: ({
384
+ $ref: string;
385
+ type?: undefined;
386
+ items?: undefined;
387
+ minItems?: undefined;
388
+ uniqueItems?: undefined;
389
+ } | {
390
+ type: string;
391
+ items: {
392
+ $ref: string;
393
+ };
394
+ minItems: number;
395
+ uniqueItems: boolean;
396
+ $ref?: undefined;
397
+ })[];
398
+ };
399
+ format: {
400
+ type: string;
401
+ };
402
+ contentMediaType: {
403
+ type: string;
404
+ };
405
+ contentEncoding: {
406
+ type: string;
407
+ };
408
+ if: {
409
+ $ref: string;
410
+ };
411
+ then: {
412
+ $ref: string;
413
+ };
414
+ else: {
415
+ $ref: string;
416
+ };
417
+ allOf: {
418
+ $ref: string;
419
+ };
420
+ anyOf: {
421
+ $ref: string;
422
+ };
423
+ oneOf: {
424
+ $ref: string;
425
+ };
426
+ not: {
427
+ $ref: string;
428
+ };
429
+ };
430
+ default: boolean;
431
+ } | {
432
+ type: string;
433
+ $id: string;
434
+ properties: {
435
+ title: {
436
+ type: string;
437
+ description: string;
438
+ };
439
+ value: {
440
+ type: string;
441
+ description: string;
442
+ };
443
+ unit: {
444
+ type: string;
445
+ description: string;
446
+ };
447
+ legend: {
448
+ type: string;
449
+ description: string;
450
+ };
451
+ };
452
+ additionalProperties: boolean;
453
+ required: string[];
454
+ })[];
455
+ export declare const parentSchema: {
456
+ title: string;
457
+ $id: string;
458
+ description: string;
459
+ type: string;
460
+ properties: {
461
+ directories: {
462
+ type: string;
463
+ properties: {
464
+ ".cards": {
465
+ description: string;
466
+ type: string;
467
+ properties: {
468
+ files: {
469
+ type: string;
470
+ additionalProperties: boolean;
471
+ };
472
+ directories: {
473
+ type: string;
474
+ additionalProperties: boolean;
475
+ properties: {
476
+ modules: {
477
+ $ref: string;
478
+ };
479
+ local: {
480
+ type: string;
481
+ properties: {
482
+ files: {
483
+ type: string;
484
+ additionalProperties: boolean;
485
+ properties: {
486
+ ".schema": {};
487
+ "cardsConfig.json": {};
488
+ };
489
+ required: string[];
490
+ };
491
+ directories: {
492
+ type: string;
493
+ additionalProperties: boolean;
494
+ properties: {
495
+ calculations: {
496
+ $ref: string;
497
+ };
498
+ cardTypes: {
499
+ $ref: string;
500
+ };
501
+ fieldTypes: {
502
+ $ref: string;
503
+ };
504
+ graphViews: {
505
+ $ref: string;
506
+ };
507
+ graphModels: {
508
+ $ref: string;
509
+ };
510
+ linkTypes: {
511
+ $ref: string;
512
+ };
513
+ reports: {
514
+ $ref: string;
515
+ };
516
+ templates: {
517
+ $ref: string;
518
+ };
519
+ workflows: {
520
+ $ref: string;
521
+ };
522
+ };
523
+ };
524
+ };
525
+ };
526
+ };
527
+ required: string[];
528
+ };
529
+ };
530
+ };
531
+ cardRoot: {
532
+ description: string;
533
+ type: string;
534
+ properties: {
535
+ files: {
536
+ type: string;
537
+ additionalProperties: boolean;
538
+ properties: {
539
+ ".gitkeep": {};
540
+ ".schema": {};
541
+ };
542
+ };
543
+ directories: {
544
+ type: string;
545
+ additionalProperties: boolean;
546
+ patternProperties: {
547
+ "^[a-z]+_[0-9a-z]+$": {
548
+ $ref: string;
549
+ };
550
+ };
551
+ };
552
+ };
553
+ };
554
+ ".calc": {
555
+ description: string;
556
+ type: string;
557
+ properties: {
558
+ directories: {
559
+ type: string;
560
+ properties: {
561
+ resources: {
562
+ description: string;
563
+ type: string;
564
+ properties: {
565
+ files: {
566
+ type: string;
567
+ additionalProperties: boolean;
568
+ patternProperties: {
569
+ "^.+\\.lp$": {
570
+ type: string;
571
+ };
572
+ };
573
+ };
574
+ };
575
+ };
576
+ cards: {
577
+ description: string;
578
+ type: string;
579
+ properties: {
580
+ files: {
581
+ type: string;
582
+ additionalProperties: boolean;
583
+ patternProperties: {
584
+ "^.+\\.lp$": {
585
+ type: string;
586
+ };
587
+ };
588
+ };
589
+ };
590
+ };
591
+ };
592
+ additionalProperties: boolean;
593
+ };
594
+ files: {
595
+ type: string;
596
+ properties: {
597
+ "base.lp": {
598
+ description: string;
599
+ type: string;
600
+ };
601
+ "calculations.lp": {
602
+ description: string;
603
+ type: string;
604
+ };
605
+ "cardTree.lp": {
606
+ description: string;
607
+ type: string;
608
+ };
609
+ "resourceImports.lp": {
610
+ description: string;
611
+ type: string;
612
+ };
613
+ "main.lp": {
614
+ description: string;
615
+ type: string;
616
+ };
617
+ "modules.lp": {
618
+ description: string;
619
+ type: string;
620
+ };
621
+ "queryLanguage.lp": {
622
+ description: string;
623
+ type: string;
624
+ };
625
+ };
626
+ additionalProperties: boolean;
627
+ };
628
+ };
629
+ };
630
+ };
631
+ required: string[];
632
+ };
633
+ };
634
+ $defs: {
635
+ cardModuleSchema: {
636
+ description: string;
637
+ type: string;
638
+ properties: {
639
+ directories: {
640
+ type: string;
641
+ patternProperties: {
642
+ "^[A-Za-z ._-]+$": {
643
+ type: string;
644
+ properties: {
645
+ directories: {
646
+ type: string;
647
+ properties: {
648
+ calculations: {
649
+ $ref: string;
650
+ };
651
+ cardTypes: {
652
+ $ref: string;
653
+ };
654
+ fieldTypes: {
655
+ $ref: string;
656
+ };
657
+ graphViews: {
658
+ $ref: string;
659
+ };
660
+ graphModels: {
661
+ $ref: string;
662
+ };
663
+ linkTypes: {
664
+ $ref: string;
665
+ };
666
+ reports: {
667
+ $ref: string;
668
+ };
669
+ templates: {
670
+ $ref: string;
671
+ };
672
+ workflows: {
673
+ $ref: string;
674
+ };
675
+ };
676
+ };
677
+ files: {
678
+ type: string;
679
+ additionalProperties: boolean;
680
+ properties: {
681
+ ".schema": {};
682
+ "cardsConfig.json": {
683
+ type: string;
684
+ };
685
+ };
686
+ required: string[];
687
+ };
688
+ };
689
+ };
690
+ };
691
+ };
692
+ };
693
+ };
694
+ cardDirectorySchema: {
695
+ description: string;
696
+ type: string;
697
+ properties: {
698
+ name: {
699
+ description: string;
700
+ type: string;
701
+ minLength: number;
702
+ maxLength: number;
703
+ pattern: string;
704
+ };
705
+ files: {
706
+ type: string;
707
+ additionalProperties: boolean;
708
+ properties: {
709
+ ".schema": {};
710
+ "index.json": {
711
+ description: string;
712
+ type: string;
713
+ $comment: string;
714
+ contentSchema: string;
715
+ };
716
+ "index.adoc": {
717
+ description: string;
718
+ type: string;
719
+ };
720
+ "index.lp": {
721
+ description: string;
722
+ type: string;
723
+ };
724
+ };
725
+ required: string[];
726
+ };
727
+ directories: {
728
+ type: string;
729
+ additionalProperties: boolean;
730
+ properties: {
731
+ a: {
732
+ description: string;
733
+ type: string;
734
+ properties: {
735
+ directories: {
736
+ type: string;
737
+ additionalProperties: boolean;
738
+ };
739
+ };
740
+ };
741
+ c: {
742
+ description: string;
743
+ type: string;
744
+ properties: {
745
+ directories: {
746
+ $ref: string;
747
+ };
748
+ };
749
+ };
750
+ };
751
+ };
752
+ };
753
+ };
754
+ calculationResourceSchema: {
755
+ type: string;
756
+ properties: {
757
+ directories: {
758
+ type: string;
759
+ additionalProperties: boolean;
760
+ };
761
+ files: {
762
+ type: string;
763
+ $comment: string;
764
+ additionalProperties: boolean;
765
+ patternProperties: {
766
+ "^.+\\.lp$": {
767
+ type: string;
768
+ };
769
+ };
770
+ properties: {
771
+ ".gitkeep": {};
772
+ };
773
+ };
774
+ };
775
+ };
776
+ cardTypeResourceSchema: {
777
+ type: string;
778
+ allOf: ({
779
+ properties: {
780
+ directories: {
781
+ type: string;
782
+ additionalProperties: boolean;
783
+ };
784
+ files?: undefined;
785
+ };
786
+ } | {
787
+ properties: {
788
+ files: {
789
+ type: string;
790
+ $comment: string;
791
+ contentSchema: string;
792
+ properties?: undefined;
793
+ required?: undefined;
794
+ };
795
+ directories?: undefined;
796
+ };
797
+ } | {
798
+ properties: {
799
+ files: {
800
+ type: string;
801
+ properties: {
802
+ ".schema": {};
803
+ ".gitkeep": {};
804
+ };
805
+ required: string[];
806
+ $comment?: undefined;
807
+ contentSchema?: undefined;
808
+ };
809
+ directories?: undefined;
810
+ };
811
+ })[];
812
+ };
813
+ fieldTypeResourceSchema: {
814
+ type: string;
815
+ allOf: ({
816
+ properties: {
817
+ directories: {
818
+ type: string;
819
+ additionalProperties: boolean;
820
+ };
821
+ files?: undefined;
822
+ };
823
+ } | {
824
+ properties: {
825
+ files: {
826
+ type: string;
827
+ $comment: string;
828
+ contentSchema: string;
829
+ properties?: undefined;
830
+ required?: undefined;
831
+ };
832
+ directories?: undefined;
833
+ };
834
+ } | {
835
+ properties: {
836
+ files: {
837
+ type: string;
838
+ properties: {
839
+ ".schema": {};
840
+ ".gitkeep": {};
841
+ };
842
+ required: string[];
843
+ $comment?: undefined;
844
+ contentSchema?: undefined;
845
+ };
846
+ directories?: undefined;
847
+ };
848
+ })[];
849
+ };
850
+ graphViewResourceSchema: {
851
+ type: string;
852
+ properties: {
853
+ additionalProperties: boolean;
854
+ directories: {
855
+ type: string;
856
+ additionalProperties: boolean;
857
+ patternProperties: {
858
+ ".+": {
859
+ type: string;
860
+ properties: {
861
+ files: {
862
+ type: string;
863
+ properties: {
864
+ "view.lp.hbs": {
865
+ type: string;
866
+ };
867
+ "parameterSchema.json": {
868
+ type: string;
869
+ };
870
+ };
871
+ required: string[];
872
+ };
873
+ };
874
+ };
875
+ };
876
+ };
877
+ };
878
+ };
879
+ graphModelResourceSchema: {
880
+ type: string;
881
+ properties: {
882
+ additionalProperties: boolean;
883
+ directories: {
884
+ type: string;
885
+ additionalProperties: boolean;
886
+ patternProperties: {
887
+ ".+": {
888
+ type: string;
889
+ properties: {
890
+ files: {
891
+ type: string;
892
+ properties: {
893
+ "model.lp": {
894
+ type: string;
895
+ };
896
+ };
897
+ required: string[];
898
+ };
899
+ };
900
+ };
901
+ };
902
+ };
903
+ };
904
+ };
905
+ linkTypeResourceSchema: {
906
+ type: string;
907
+ allOf: ({
908
+ properties: {
909
+ directories: {
910
+ type: string;
911
+ additionalProperties: boolean;
912
+ };
913
+ files?: undefined;
914
+ };
915
+ } | {
916
+ properties: {
917
+ files: {
918
+ type: string;
919
+ $comment: string;
920
+ contentSchema: string;
921
+ properties?: undefined;
922
+ required?: undefined;
923
+ };
924
+ directories?: undefined;
925
+ };
926
+ } | {
927
+ properties: {
928
+ files: {
929
+ type: string;
930
+ properties: {
931
+ ".schema": {};
932
+ ".gitkeep": {};
933
+ };
934
+ required: string[];
935
+ $comment?: undefined;
936
+ contentSchema?: undefined;
937
+ };
938
+ directories?: undefined;
939
+ };
940
+ })[];
941
+ };
942
+ reportResourceSchema: {
943
+ type: string;
944
+ properties: {
945
+ additionalProperties: boolean;
946
+ files: {
947
+ $comment: string;
948
+ type: string;
949
+ additionalProperties: boolean;
950
+ patternProperties: {
951
+ "^[A-Za-z0-9-_]+.json$": {
952
+ type: string;
953
+ };
954
+ "^.schema$": {
955
+ type: string;
956
+ };
957
+ "^.gitkeep$": {
958
+ type: string;
959
+ };
960
+ };
961
+ };
962
+ directories: {
963
+ type: string;
964
+ additionalProperties: boolean;
965
+ patternProperties: {
966
+ ".+": {
967
+ type: string;
968
+ properties: {
969
+ files: {
970
+ type: string;
971
+ additionalProperties: boolean;
972
+ properties: {
973
+ "index.adoc.hbs": {
974
+ type: string;
975
+ };
976
+ "query.lp.hbs": {
977
+ type: string;
978
+ };
979
+ "parameterSchema.json": {
980
+ type: string;
981
+ };
982
+ ".schema": {
983
+ type: string;
984
+ };
985
+ };
986
+ required: string[];
987
+ };
988
+ };
989
+ };
990
+ };
991
+ };
992
+ };
993
+ };
994
+ workflowResourceSchema: {
995
+ type: string;
996
+ allOf: ({
997
+ properties: {
998
+ directories: {
999
+ type: string;
1000
+ additionalProperties: boolean;
1001
+ };
1002
+ files?: undefined;
1003
+ };
1004
+ } | {
1005
+ properties: {
1006
+ files: {
1007
+ type: string;
1008
+ $comment: string;
1009
+ contentSchema: string;
1010
+ properties?: undefined;
1011
+ required?: undefined;
1012
+ };
1013
+ directories?: undefined;
1014
+ };
1015
+ } | {
1016
+ properties: {
1017
+ files: {
1018
+ type: string;
1019
+ properties: {
1020
+ ".schema": {};
1021
+ ".gitkeep": {};
1022
+ };
1023
+ required: string[];
1024
+ $comment?: undefined;
1025
+ contentSchema?: undefined;
1026
+ };
1027
+ directories?: undefined;
1028
+ };
1029
+ })[];
1030
+ };
1031
+ templatesResourceSchema: {
1032
+ type: string;
1033
+ allOf: ({
1034
+ properties: {
1035
+ directories: {
1036
+ type: string;
1037
+ additionalProperties: boolean;
1038
+ patternProperties: {
1039
+ ".+": {
1040
+ type: string;
1041
+ allOf: ({
1042
+ properties: {
1043
+ directories: {
1044
+ type: string;
1045
+ additionalProperties: boolean;
1046
+ properties: {
1047
+ c: {
1048
+ description: string;
1049
+ type: string;
1050
+ properties: {
1051
+ directories: {
1052
+ type: string;
1053
+ additionalProperties: boolean;
1054
+ patternProperties: {
1055
+ "^[a-z]+_[0-9a-z]+$": {
1056
+ $ref: string;
1057
+ };
1058
+ };
1059
+ };
1060
+ files: {
1061
+ type: string;
1062
+ additionalProperties: boolean;
1063
+ properties: {
1064
+ ".schema": {};
1065
+ };
1066
+ };
1067
+ };
1068
+ };
1069
+ };
1070
+ };
1071
+ files?: undefined;
1072
+ };
1073
+ } | {
1074
+ properties: {
1075
+ files: {
1076
+ type: string;
1077
+ additionalProperties: boolean;
1078
+ properties: {
1079
+ ".gitkeep": {};
1080
+ };
1081
+ };
1082
+ directories?: undefined;
1083
+ };
1084
+ })[];
1085
+ };
1086
+ };
1087
+ };
1088
+ files?: undefined;
1089
+ };
1090
+ } | {
1091
+ properties: {
1092
+ files: {
1093
+ $comment: string;
1094
+ type: string;
1095
+ additionalProperties: boolean;
1096
+ patternProperties: {
1097
+ "^[A-Za-z0-9-_]+.json$": {
1098
+ type: string;
1099
+ $comment: string;
1100
+ contentSchema: string;
1101
+ };
1102
+ "^.schema$": {
1103
+ type: string;
1104
+ };
1105
+ "^.gitkeep$": {
1106
+ type: string;
1107
+ };
1108
+ };
1109
+ properties?: undefined;
1110
+ required?: undefined;
1111
+ };
1112
+ directories?: undefined;
1113
+ };
1114
+ } | {
1115
+ properties: {
1116
+ files: {
1117
+ type: string;
1118
+ properties: {
1119
+ ".schema": {};
1120
+ ".gitkeep": {};
1121
+ };
1122
+ required: string[];
1123
+ $comment?: undefined;
1124
+ additionalProperties?: undefined;
1125
+ patternProperties?: undefined;
1126
+ };
1127
+ directories?: undefined;
1128
+ };
1129
+ })[];
1130
+ };
1131
+ };
1132
+ };