@bendyline/gilde 0.1.24 → 0.1.26
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.
- package/authoring/gstack/evals/cso.json +2 -0
- package/authoring/gstack/overlays/cso.json +1 -0
- package/authoring/gstack/wave.json +2 -2
- package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.1/craftbook.json +358 -0
- package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.1/test.json +376 -0
- package/data/craftbook-templates/de/design-system-consultation/versions/2.0.1/craftbook.json +385 -0
- package/data/craftbook-templates/de/design-system-consultation/versions/2.0.1/test.json +201 -0
- package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.1/craftbook.json +353 -0
- package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.1/test.json +191 -0
- package/data/craftbook-templates/ex/executive-level-review/versions/2.0.1/craftbook.json +347 -0
- package/data/craftbook-templates/ex/executive-level-review/versions/2.0.1/test.json +135 -0
- package/data/craftbook-templates/id/idea-office-hours/versions/2.0.1/craftbook.json +333 -0
- package/data/craftbook-templates/id/idea-office-hours/versions/2.0.1/test.json +141 -0
- package/data/craftbook-templates/index.json +1 -1
- package/data/craftbook-templates/pu/pull-request-review/manifest.json +1 -1
- package/data/craftbook-templates/pu/pull-request-review/versions/1.4.0/craftbook.json +179 -0
- package/data/craftbook-templates/pu/pull-request-review/versions/1.4.0/test.json +123 -0
- package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.1/craftbook.json +348 -0
- package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.1/test.json +153 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.1/craftbook.json +390 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.1/test.json +154 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.2/craftbook.json +450 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.2/test.json +154 -0
- package/data/craftbook-templates/sp/spec-authoring/versions/2.0.1/craftbook.json +391 -0
- package/data/craftbook-templates/sp/spec-authoring/versions/2.0.1/test.json +162 -0
- package/data/craftbook-templates/te/technical-documentation/versions/2.0.1/craftbook.json +343 -0
- package/data/craftbook-templates/te/technical-documentation/versions/2.0.1/test.json +174 -0
- package/package.json +1 -1
- package/schemas/craftbook-doc.schema.json +170 -0
- package/schemas/craftbook-template-version.schema.json +170 -0
- package/schemas/craftbook-test.schema.json +143 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"title": "Technical Documentation — rate limiter Diataxis set",
|
|
4
|
+
"objective": "Exercise the Technical Documentation craftbook on a small real code surface and require a coherent, cross-linked Diataxis documentation set grounded in source behavior.",
|
|
5
|
+
"tags": [
|
|
6
|
+
"workflow",
|
|
7
|
+
"documentation",
|
|
8
|
+
"diataxis",
|
|
9
|
+
"typescript"
|
|
10
|
+
],
|
|
11
|
+
"prompt": "Use the Technical Documentation craftbook to document the dependency-free rate limiter in this workspace. Inspect the source and test rather than guessing. Produce the craftbook inventory and plan plus a coherent set under `docs/`: `documentation-index.md`, `tutorial-rate-limit.md`, `how-to-configure-rate-limit.md`, `reference-rate-limit.md`, and `explanation-fixed-window.md`. The index must clearly organize tutorials, how-to, reference, and explanation, link to every page, cite the implementation/test where claims come from, and state how the documented examples were verified.",
|
|
12
|
+
"setup": {
|
|
13
|
+
"projectName": "Rate limiter documentation",
|
|
14
|
+
"about": "A hermetic TypeScript library documentation exercise. There are no external APIs or package dependencies.",
|
|
15
|
+
"missionObjectives": "Create accurate, navigable documentation that helps a first-time adopter use `createFixedWindowLimiter` and understand its tradeoffs without reading all source code.",
|
|
16
|
+
"files": [
|
|
17
|
+
{
|
|
18
|
+
"path": "README.md",
|
|
19
|
+
"content": "# tiny-limit\n\nA dependency-free fixed-window request limiter. Public behavior is defined by `src/rate-limit.ts` and its test. Documentation is intentionally incomplete.\n"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"path": "src/rate-limit.ts",
|
|
23
|
+
"content": "export interface RateLimitOptions {\n windowMs: number;\n max: number;\n}\n\nexport interface RateLimitDecision {\n allowed: boolean;\n remaining: number;\n resetAt: number;\n}\n\nexport function createFixedWindowLimiter(options: RateLimitOptions) {\n if (!Number.isInteger(options.max) || options.max < 1) throw new RangeError('max must be a positive integer');\n if (!Number.isFinite(options.windowMs) || options.windowMs <= 0) throw new RangeError('windowMs must be positive');\n const buckets = new Map<string, { count: number; resetAt: number }>();\n\n return function check(key: string, now = Date.now()): RateLimitDecision {\n const current = buckets.get(key);\n const bucket = !current || now >= current.resetAt\n ? { count: 0, resetAt: now + options.windowMs }\n : current;\n bucket.count += 1;\n buckets.set(key, bucket);\n return {\n allowed: bucket.count <= options.max,\n remaining: Math.max(0, options.max - bucket.count),\n resetAt: bucket.resetAt,\n };\n };\n}\n"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"path": "test/rate-limit.test.ts",
|
|
27
|
+
"content": "import { strict as assert } from 'node:assert';\nimport { createFixedWindowLimiter } from '../src/rate-limit.js';\n\nconst check = createFixedWindowLimiter({ windowMs: 1000, max: 2 });\nassert.deepEqual(check('ada', 100), { allowed: true, remaining: 1, resetAt: 1100 });\nassert.deepEqual(check('ada', 200), { allowed: true, remaining: 0, resetAt: 1100 });\nassert.deepEqual(check('ada', 300), { allowed: false, remaining: 0, resetAt: 1100 });\nassert.deepEqual(check('ada', 1100), { allowed: true, remaining: 1, resetAt: 2100 });\n"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"mocks": [],
|
|
32
|
+
"success": {
|
|
33
|
+
"summary": "The craftbook produces a complete, grounded five-page Diataxis set with a navigable index and terminal task evidence.",
|
|
34
|
+
"deliverables": [
|
|
35
|
+
{
|
|
36
|
+
"path": "docs/documentation-index.md",
|
|
37
|
+
"kind": "markdown-doc",
|
|
38
|
+
"minBytes": 850,
|
|
39
|
+
"checks": [
|
|
40
|
+
{
|
|
41
|
+
"kind": "contains",
|
|
42
|
+
"file": "docs/documentation-index.md",
|
|
43
|
+
"pattern": "^#{1,3}\\s+Tutorials?\\b[\\s\\S]*^#{1,3}\\s+How-to guides?\\b[\\s\\S]*^#{1,3}\\s+Reference\\b[\\s\\S]*^#{1,3}\\s+Explanation\\b[\\s\\S]*^#{1,3}\\s+Verification\\b",
|
|
44
|
+
"flags": "im",
|
|
45
|
+
"label": "Diataxis map and verification"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"kind": "contains",
|
|
49
|
+
"file": "docs/documentation-index.md",
|
|
50
|
+
"pattern": "tutorial-rate-limit\\.md[\\s\\S]*how-to-configure-rate-limit\\.md[\\s\\S]*reference-rate-limit\\.md[\\s\\S]*explanation-fixed-window\\.md",
|
|
51
|
+
"flags": "i",
|
|
52
|
+
"label": "all requested pages linked"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"kind": "citationsResolve",
|
|
56
|
+
"file": "docs/documentation-index.md",
|
|
57
|
+
"minCitations": 4
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"path": "docs/tutorial-rate-limit.md",
|
|
63
|
+
"kind": "markdown-doc",
|
|
64
|
+
"minBytes": 650,
|
|
65
|
+
"checks": [
|
|
66
|
+
{
|
|
67
|
+
"kind": "contains",
|
|
68
|
+
"file": "docs/tutorial-rate-limit.md",
|
|
69
|
+
"pattern": "createFixedWindowLimiter[\\s\\S]*windowMs[\\s\\S]*max[\\s\\S]*(allowed|remaining|resetAt)",
|
|
70
|
+
"label": "runnable API walkthrough"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"path": "docs/how-to-configure-rate-limit.md",
|
|
76
|
+
"kind": "markdown-doc",
|
|
77
|
+
"minBytes": 550,
|
|
78
|
+
"checks": [
|
|
79
|
+
{
|
|
80
|
+
"kind": "contains",
|
|
81
|
+
"file": "docs/how-to-configure-rate-limit.md",
|
|
82
|
+
"pattern": "windowMs[\\s\\S]*max[\\s\\S]*(positive|greater than|at least)[\\s\\S]*(integer|finite)",
|
|
83
|
+
"flags": "i",
|
|
84
|
+
"label": "configuration constraints"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"path": "docs/reference-rate-limit.md",
|
|
90
|
+
"kind": "markdown-doc",
|
|
91
|
+
"minBytes": 650,
|
|
92
|
+
"checks": [
|
|
93
|
+
{
|
|
94
|
+
"kind": "contains",
|
|
95
|
+
"file": "docs/reference-rate-limit.md",
|
|
96
|
+
"pattern": "RateLimitOptions[\\s\\S]*RateLimitDecision[\\s\\S]*allowed[\\s\\S]*remaining[\\s\\S]*resetAt",
|
|
97
|
+
"label": "public type reference"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"path": "docs/explanation-fixed-window.md",
|
|
103
|
+
"kind": "markdown-doc",
|
|
104
|
+
"minBytes": 600,
|
|
105
|
+
"checks": [
|
|
106
|
+
{
|
|
107
|
+
"kind": "contains",
|
|
108
|
+
"file": "docs/explanation-fixed-window.md",
|
|
109
|
+
"pattern": "fixed[- ]window[\\s\\S]*(boundary|burst|trade[- ]?off)[\\s\\S]*(memory|Map|process)",
|
|
110
|
+
"flags": "i",
|
|
111
|
+
"label": "mechanism and tradeoffs"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"checks": [
|
|
117
|
+
{
|
|
118
|
+
"kind": "fileCount",
|
|
119
|
+
"ext": [
|
|
120
|
+
".md"
|
|
121
|
+
],
|
|
122
|
+
"min": 5,
|
|
123
|
+
"dir": "docs"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"taskNotes": {
|
|
127
|
+
"minBytes": 180,
|
|
128
|
+
"checks": [
|
|
129
|
+
{
|
|
130
|
+
"kind": "contains",
|
|
131
|
+
"file": "task-notes.md",
|
|
132
|
+
"pattern": "\\bDONE\\b[\\s\\S]*docs/documentation-index\\.md[\\s\\S]*(5|five)\\s+(pages|documents)",
|
|
133
|
+
"flags": "i",
|
|
134
|
+
"label": "terminal note records the documentation set"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"requireCraftbookTask": true
|
|
138
|
+
},
|
|
139
|
+
"taskGraph": {
|
|
140
|
+
"requireCraftbookTask": true,
|
|
141
|
+
"requireTerminalStep": true
|
|
142
|
+
},
|
|
143
|
+
"unchangedFixtures": [
|
|
144
|
+
"README.md",
|
|
145
|
+
"src/rate-limit.ts",
|
|
146
|
+
"test/rate-limit.test.ts"
|
|
147
|
+
]
|
|
148
|
+
},
|
|
149
|
+
"rubric": {
|
|
150
|
+
"artifact": {
|
|
151
|
+
"path": "docs/documentation-index.md",
|
|
152
|
+
"kind": "markdown"
|
|
153
|
+
},
|
|
154
|
+
"axes": [
|
|
155
|
+
{
|
|
156
|
+
"name": "Source fidelity",
|
|
157
|
+
"description": "Claims, examples, inputs, outputs, and edge cases agree with the supplied implementation and test."
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "Diataxis separation",
|
|
161
|
+
"description": "Tutorial, how-to, reference, and explanation pages each serve their distinct reader need without becoming duplicate summaries."
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "Navigation and verification",
|
|
165
|
+
"description": "The set is cross-linked, easy to scan, and transparent about how examples and factual claims were checked."
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
"qualityFocus": [
|
|
170
|
+
"Every public option and result field matches the source",
|
|
171
|
+
"Each Diataxis page has a distinct job",
|
|
172
|
+
"The index links the complete set and explains verification"
|
|
173
|
+
]
|
|
174
|
+
}
|
package/package.json
CHANGED
|
@@ -1033,6 +1033,25 @@
|
|
|
1033
1033
|
}
|
|
1034
1034
|
]
|
|
1035
1035
|
},
|
|
1036
|
+
"consumes": {
|
|
1037
|
+
"minItems": 1,
|
|
1038
|
+
"type": "array",
|
|
1039
|
+
"items": {
|
|
1040
|
+
"type": "object",
|
|
1041
|
+
"properties": {
|
|
1042
|
+
"file": {
|
|
1043
|
+
"type": "string",
|
|
1044
|
+
"minLength": 1
|
|
1045
|
+
},
|
|
1046
|
+
"artifact": {
|
|
1047
|
+
"type": "boolean"
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
"required": [
|
|
1051
|
+
"file"
|
|
1052
|
+
]
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1036
1055
|
"advanceWhen": {
|
|
1037
1056
|
"type": "object",
|
|
1038
1057
|
"properties": {
|
|
@@ -1374,6 +1393,9 @@
|
|
|
1374
1393
|
"label": {
|
|
1375
1394
|
"type": "string",
|
|
1376
1395
|
"minLength": 1
|
|
1396
|
+
},
|
|
1397
|
+
"artifact": {
|
|
1398
|
+
"type": "boolean"
|
|
1377
1399
|
}
|
|
1378
1400
|
},
|
|
1379
1401
|
"required": [
|
|
@@ -1681,6 +1703,36 @@
|
|
|
1681
1703
|
"tools"
|
|
1682
1704
|
]
|
|
1683
1705
|
},
|
|
1706
|
+
{
|
|
1707
|
+
"type": "object",
|
|
1708
|
+
"properties": {
|
|
1709
|
+
"kind": {
|
|
1710
|
+
"type": "string",
|
|
1711
|
+
"const": "corpusCoverage"
|
|
1712
|
+
},
|
|
1713
|
+
"file": {
|
|
1714
|
+
"type": "string",
|
|
1715
|
+
"minLength": 1
|
|
1716
|
+
},
|
|
1717
|
+
"corpusDir": {
|
|
1718
|
+
"type": "string",
|
|
1719
|
+
"minLength": 1
|
|
1720
|
+
},
|
|
1721
|
+
"reviewedField": {
|
|
1722
|
+
"type": "string",
|
|
1723
|
+
"minLength": 1
|
|
1724
|
+
},
|
|
1725
|
+
"recordField": {
|
|
1726
|
+
"type": "string",
|
|
1727
|
+
"minLength": 1
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"required": [
|
|
1731
|
+
"kind",
|
|
1732
|
+
"file",
|
|
1733
|
+
"corpusDir"
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1684
1736
|
{
|
|
1685
1737
|
"type": "object",
|
|
1686
1738
|
"properties": {
|
|
@@ -2242,6 +2294,9 @@
|
|
|
2242
2294
|
"label": {
|
|
2243
2295
|
"type": "string",
|
|
2244
2296
|
"minLength": 1
|
|
2297
|
+
},
|
|
2298
|
+
"artifact": {
|
|
2299
|
+
"type": "boolean"
|
|
2245
2300
|
}
|
|
2246
2301
|
},
|
|
2247
2302
|
"required": [
|
|
@@ -2549,6 +2604,36 @@
|
|
|
2549
2604
|
"tools"
|
|
2550
2605
|
]
|
|
2551
2606
|
},
|
|
2607
|
+
{
|
|
2608
|
+
"type": "object",
|
|
2609
|
+
"properties": {
|
|
2610
|
+
"kind": {
|
|
2611
|
+
"type": "string",
|
|
2612
|
+
"const": "corpusCoverage"
|
|
2613
|
+
},
|
|
2614
|
+
"file": {
|
|
2615
|
+
"type": "string",
|
|
2616
|
+
"minLength": 1
|
|
2617
|
+
},
|
|
2618
|
+
"corpusDir": {
|
|
2619
|
+
"type": "string",
|
|
2620
|
+
"minLength": 1
|
|
2621
|
+
},
|
|
2622
|
+
"reviewedField": {
|
|
2623
|
+
"type": "string",
|
|
2624
|
+
"minLength": 1
|
|
2625
|
+
},
|
|
2626
|
+
"recordField": {
|
|
2627
|
+
"type": "string",
|
|
2628
|
+
"minLength": 1
|
|
2629
|
+
}
|
|
2630
|
+
},
|
|
2631
|
+
"required": [
|
|
2632
|
+
"kind",
|
|
2633
|
+
"file",
|
|
2634
|
+
"corpusDir"
|
|
2635
|
+
]
|
|
2636
|
+
},
|
|
2552
2637
|
{
|
|
2553
2638
|
"type": "object",
|
|
2554
2639
|
"properties": {
|
|
@@ -3674,6 +3759,25 @@
|
|
|
3674
3759
|
}
|
|
3675
3760
|
]
|
|
3676
3761
|
},
|
|
3762
|
+
"consumes": {
|
|
3763
|
+
"minItems": 1,
|
|
3764
|
+
"type": "array",
|
|
3765
|
+
"items": {
|
|
3766
|
+
"type": "object",
|
|
3767
|
+
"properties": {
|
|
3768
|
+
"file": {
|
|
3769
|
+
"type": "string",
|
|
3770
|
+
"minLength": 1
|
|
3771
|
+
},
|
|
3772
|
+
"artifact": {
|
|
3773
|
+
"type": "boolean"
|
|
3774
|
+
}
|
|
3775
|
+
},
|
|
3776
|
+
"required": [
|
|
3777
|
+
"file"
|
|
3778
|
+
]
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3677
3781
|
"advanceWhen": {
|
|
3678
3782
|
"type": "object",
|
|
3679
3783
|
"properties": {
|
|
@@ -4015,6 +4119,9 @@
|
|
|
4015
4119
|
"label": {
|
|
4016
4120
|
"type": "string",
|
|
4017
4121
|
"minLength": 1
|
|
4122
|
+
},
|
|
4123
|
+
"artifact": {
|
|
4124
|
+
"type": "boolean"
|
|
4018
4125
|
}
|
|
4019
4126
|
},
|
|
4020
4127
|
"required": [
|
|
@@ -4322,6 +4429,36 @@
|
|
|
4322
4429
|
"tools"
|
|
4323
4430
|
]
|
|
4324
4431
|
},
|
|
4432
|
+
{
|
|
4433
|
+
"type": "object",
|
|
4434
|
+
"properties": {
|
|
4435
|
+
"kind": {
|
|
4436
|
+
"type": "string",
|
|
4437
|
+
"const": "corpusCoverage"
|
|
4438
|
+
},
|
|
4439
|
+
"file": {
|
|
4440
|
+
"type": "string",
|
|
4441
|
+
"minLength": 1
|
|
4442
|
+
},
|
|
4443
|
+
"corpusDir": {
|
|
4444
|
+
"type": "string",
|
|
4445
|
+
"minLength": 1
|
|
4446
|
+
},
|
|
4447
|
+
"reviewedField": {
|
|
4448
|
+
"type": "string",
|
|
4449
|
+
"minLength": 1
|
|
4450
|
+
},
|
|
4451
|
+
"recordField": {
|
|
4452
|
+
"type": "string",
|
|
4453
|
+
"minLength": 1
|
|
4454
|
+
}
|
|
4455
|
+
},
|
|
4456
|
+
"required": [
|
|
4457
|
+
"kind",
|
|
4458
|
+
"file",
|
|
4459
|
+
"corpusDir"
|
|
4460
|
+
]
|
|
4461
|
+
},
|
|
4325
4462
|
{
|
|
4326
4463
|
"type": "object",
|
|
4327
4464
|
"properties": {
|
|
@@ -4883,6 +5020,9 @@
|
|
|
4883
5020
|
"label": {
|
|
4884
5021
|
"type": "string",
|
|
4885
5022
|
"minLength": 1
|
|
5023
|
+
},
|
|
5024
|
+
"artifact": {
|
|
5025
|
+
"type": "boolean"
|
|
4886
5026
|
}
|
|
4887
5027
|
},
|
|
4888
5028
|
"required": [
|
|
@@ -5190,6 +5330,36 @@
|
|
|
5190
5330
|
"tools"
|
|
5191
5331
|
]
|
|
5192
5332
|
},
|
|
5333
|
+
{
|
|
5334
|
+
"type": "object",
|
|
5335
|
+
"properties": {
|
|
5336
|
+
"kind": {
|
|
5337
|
+
"type": "string",
|
|
5338
|
+
"const": "corpusCoverage"
|
|
5339
|
+
},
|
|
5340
|
+
"file": {
|
|
5341
|
+
"type": "string",
|
|
5342
|
+
"minLength": 1
|
|
5343
|
+
},
|
|
5344
|
+
"corpusDir": {
|
|
5345
|
+
"type": "string",
|
|
5346
|
+
"minLength": 1
|
|
5347
|
+
},
|
|
5348
|
+
"reviewedField": {
|
|
5349
|
+
"type": "string",
|
|
5350
|
+
"minLength": 1
|
|
5351
|
+
},
|
|
5352
|
+
"recordField": {
|
|
5353
|
+
"type": "string",
|
|
5354
|
+
"minLength": 1
|
|
5355
|
+
}
|
|
5356
|
+
},
|
|
5357
|
+
"required": [
|
|
5358
|
+
"kind",
|
|
5359
|
+
"file",
|
|
5360
|
+
"corpusDir"
|
|
5361
|
+
]
|
|
5362
|
+
},
|
|
5193
5363
|
{
|
|
5194
5364
|
"type": "object",
|
|
5195
5365
|
"properties": {
|
|
@@ -686,6 +686,25 @@
|
|
|
686
686
|
}
|
|
687
687
|
]
|
|
688
688
|
},
|
|
689
|
+
"consumes": {
|
|
690
|
+
"minItems": 1,
|
|
691
|
+
"type": "array",
|
|
692
|
+
"items": {
|
|
693
|
+
"type": "object",
|
|
694
|
+
"properties": {
|
|
695
|
+
"file": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"minLength": 1
|
|
698
|
+
},
|
|
699
|
+
"artifact": {
|
|
700
|
+
"type": "boolean"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"required": [
|
|
704
|
+
"file"
|
|
705
|
+
]
|
|
706
|
+
}
|
|
707
|
+
},
|
|
689
708
|
"advanceWhen": {
|
|
690
709
|
"type": "object",
|
|
691
710
|
"properties": {
|
|
@@ -1027,6 +1046,9 @@
|
|
|
1027
1046
|
"label": {
|
|
1028
1047
|
"type": "string",
|
|
1029
1048
|
"minLength": 1
|
|
1049
|
+
},
|
|
1050
|
+
"artifact": {
|
|
1051
|
+
"type": "boolean"
|
|
1030
1052
|
}
|
|
1031
1053
|
},
|
|
1032
1054
|
"required": [
|
|
@@ -1334,6 +1356,36 @@
|
|
|
1334
1356
|
"tools"
|
|
1335
1357
|
]
|
|
1336
1358
|
},
|
|
1359
|
+
{
|
|
1360
|
+
"type": "object",
|
|
1361
|
+
"properties": {
|
|
1362
|
+
"kind": {
|
|
1363
|
+
"type": "string",
|
|
1364
|
+
"const": "corpusCoverage"
|
|
1365
|
+
},
|
|
1366
|
+
"file": {
|
|
1367
|
+
"type": "string",
|
|
1368
|
+
"minLength": 1
|
|
1369
|
+
},
|
|
1370
|
+
"corpusDir": {
|
|
1371
|
+
"type": "string",
|
|
1372
|
+
"minLength": 1
|
|
1373
|
+
},
|
|
1374
|
+
"reviewedField": {
|
|
1375
|
+
"type": "string",
|
|
1376
|
+
"minLength": 1
|
|
1377
|
+
},
|
|
1378
|
+
"recordField": {
|
|
1379
|
+
"type": "string",
|
|
1380
|
+
"minLength": 1
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"required": [
|
|
1384
|
+
"kind",
|
|
1385
|
+
"file",
|
|
1386
|
+
"corpusDir"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1337
1389
|
{
|
|
1338
1390
|
"type": "object",
|
|
1339
1391
|
"properties": {
|
|
@@ -1895,6 +1947,9 @@
|
|
|
1895
1947
|
"label": {
|
|
1896
1948
|
"type": "string",
|
|
1897
1949
|
"minLength": 1
|
|
1950
|
+
},
|
|
1951
|
+
"artifact": {
|
|
1952
|
+
"type": "boolean"
|
|
1898
1953
|
}
|
|
1899
1954
|
},
|
|
1900
1955
|
"required": [
|
|
@@ -2202,6 +2257,36 @@
|
|
|
2202
2257
|
"tools"
|
|
2203
2258
|
]
|
|
2204
2259
|
},
|
|
2260
|
+
{
|
|
2261
|
+
"type": "object",
|
|
2262
|
+
"properties": {
|
|
2263
|
+
"kind": {
|
|
2264
|
+
"type": "string",
|
|
2265
|
+
"const": "corpusCoverage"
|
|
2266
|
+
},
|
|
2267
|
+
"file": {
|
|
2268
|
+
"type": "string",
|
|
2269
|
+
"minLength": 1
|
|
2270
|
+
},
|
|
2271
|
+
"corpusDir": {
|
|
2272
|
+
"type": "string",
|
|
2273
|
+
"minLength": 1
|
|
2274
|
+
},
|
|
2275
|
+
"reviewedField": {
|
|
2276
|
+
"type": "string",
|
|
2277
|
+
"minLength": 1
|
|
2278
|
+
},
|
|
2279
|
+
"recordField": {
|
|
2280
|
+
"type": "string",
|
|
2281
|
+
"minLength": 1
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"required": [
|
|
2285
|
+
"kind",
|
|
2286
|
+
"file",
|
|
2287
|
+
"corpusDir"
|
|
2288
|
+
]
|
|
2289
|
+
},
|
|
2205
2290
|
{
|
|
2206
2291
|
"type": "object",
|
|
2207
2292
|
"properties": {
|
|
@@ -3321,6 +3406,25 @@
|
|
|
3321
3406
|
}
|
|
3322
3407
|
]
|
|
3323
3408
|
},
|
|
3409
|
+
"consumes": {
|
|
3410
|
+
"minItems": 1,
|
|
3411
|
+
"type": "array",
|
|
3412
|
+
"items": {
|
|
3413
|
+
"type": "object",
|
|
3414
|
+
"properties": {
|
|
3415
|
+
"file": {
|
|
3416
|
+
"type": "string",
|
|
3417
|
+
"minLength": 1
|
|
3418
|
+
},
|
|
3419
|
+
"artifact": {
|
|
3420
|
+
"type": "boolean"
|
|
3421
|
+
}
|
|
3422
|
+
},
|
|
3423
|
+
"required": [
|
|
3424
|
+
"file"
|
|
3425
|
+
]
|
|
3426
|
+
}
|
|
3427
|
+
},
|
|
3324
3428
|
"advanceWhen": {
|
|
3325
3429
|
"type": "object",
|
|
3326
3430
|
"properties": {
|
|
@@ -3662,6 +3766,9 @@
|
|
|
3662
3766
|
"label": {
|
|
3663
3767
|
"type": "string",
|
|
3664
3768
|
"minLength": 1
|
|
3769
|
+
},
|
|
3770
|
+
"artifact": {
|
|
3771
|
+
"type": "boolean"
|
|
3665
3772
|
}
|
|
3666
3773
|
},
|
|
3667
3774
|
"required": [
|
|
@@ -3969,6 +4076,36 @@
|
|
|
3969
4076
|
"tools"
|
|
3970
4077
|
]
|
|
3971
4078
|
},
|
|
4079
|
+
{
|
|
4080
|
+
"type": "object",
|
|
4081
|
+
"properties": {
|
|
4082
|
+
"kind": {
|
|
4083
|
+
"type": "string",
|
|
4084
|
+
"const": "corpusCoverage"
|
|
4085
|
+
},
|
|
4086
|
+
"file": {
|
|
4087
|
+
"type": "string",
|
|
4088
|
+
"minLength": 1
|
|
4089
|
+
},
|
|
4090
|
+
"corpusDir": {
|
|
4091
|
+
"type": "string",
|
|
4092
|
+
"minLength": 1
|
|
4093
|
+
},
|
|
4094
|
+
"reviewedField": {
|
|
4095
|
+
"type": "string",
|
|
4096
|
+
"minLength": 1
|
|
4097
|
+
},
|
|
4098
|
+
"recordField": {
|
|
4099
|
+
"type": "string",
|
|
4100
|
+
"minLength": 1
|
|
4101
|
+
}
|
|
4102
|
+
},
|
|
4103
|
+
"required": [
|
|
4104
|
+
"kind",
|
|
4105
|
+
"file",
|
|
4106
|
+
"corpusDir"
|
|
4107
|
+
]
|
|
4108
|
+
},
|
|
3972
4109
|
{
|
|
3973
4110
|
"type": "object",
|
|
3974
4111
|
"properties": {
|
|
@@ -4530,6 +4667,9 @@
|
|
|
4530
4667
|
"label": {
|
|
4531
4668
|
"type": "string",
|
|
4532
4669
|
"minLength": 1
|
|
4670
|
+
},
|
|
4671
|
+
"artifact": {
|
|
4672
|
+
"type": "boolean"
|
|
4533
4673
|
}
|
|
4534
4674
|
},
|
|
4535
4675
|
"required": [
|
|
@@ -4837,6 +4977,36 @@
|
|
|
4837
4977
|
"tools"
|
|
4838
4978
|
]
|
|
4839
4979
|
},
|
|
4980
|
+
{
|
|
4981
|
+
"type": "object",
|
|
4982
|
+
"properties": {
|
|
4983
|
+
"kind": {
|
|
4984
|
+
"type": "string",
|
|
4985
|
+
"const": "corpusCoverage"
|
|
4986
|
+
},
|
|
4987
|
+
"file": {
|
|
4988
|
+
"type": "string",
|
|
4989
|
+
"minLength": 1
|
|
4990
|
+
},
|
|
4991
|
+
"corpusDir": {
|
|
4992
|
+
"type": "string",
|
|
4993
|
+
"minLength": 1
|
|
4994
|
+
},
|
|
4995
|
+
"reviewedField": {
|
|
4996
|
+
"type": "string",
|
|
4997
|
+
"minLength": 1
|
|
4998
|
+
},
|
|
4999
|
+
"recordField": {
|
|
5000
|
+
"type": "string",
|
|
5001
|
+
"minLength": 1
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
"required": [
|
|
5005
|
+
"kind",
|
|
5006
|
+
"file",
|
|
5007
|
+
"corpusDir"
|
|
5008
|
+
]
|
|
5009
|
+
},
|
|
4840
5010
|
{
|
|
4841
5011
|
"type": "object",
|
|
4842
5012
|
"properties": {
|