ggaction 0.0.10 → 0.0.12
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/CHANGELOG.md +97 -0
- package/README.md +5 -3
- package/knowledge/action-card.schema.json +1 -0
- package/knowledge/action-cards.json +1 -10941
- package/knowledge/action-cards.schema.json +1 -0
- package/knowledge/intent-taxonomy.json +1 -183
- package/knowledge/intent-taxonomy.schema.json +1 -0
- package/knowledge/mcp-resources.json +1 -95
- package/knowledge/mcp-resources.schema.json +1 -0
- package/knowledge/task-packet.schema.json +1 -159
- package/knowledge/task-resolver.js +1 -1230
- package/package.json +18 -2
- package/src/actions/boxPlots/edit.js +45 -298
- package/src/actions/boxPlots/options.js +46 -77
- package/src/actions/boxPlots/resolve.js +1 -1
- package/src/actions/charts/bar.js +3 -0
- package/src/actions/charts/heatmap.js +73 -83
- package/src/actions/charts/index.js +1 -1
- package/src/actions/charts/parallel.js +35 -1
- package/src/actions/charts/shared.js +20 -0
- package/src/actions/composition/actions.js +46 -49
- package/src/actions/data/bin2d.js +105 -2
- package/src/actions/data/box.js +17 -17
- package/src/actions/data/density.js +42 -78
- package/src/actions/data/gradientProfile.js +22 -52
- package/src/actions/data/horizon.js +16 -41
- package/src/actions/data/index.js +10 -10
- package/src/actions/data/interval.js +16 -38
- package/src/actions/data/intervalEdit.js +55 -0
- package/src/actions/data/regression.js +7 -17
- package/src/actions/data/shared.js +47 -0
- package/src/actions/data/timeUnit.js +14 -38
- package/src/actions/data/window.js +14 -38
- package/src/actions/distributions/revision.js +154 -34
- package/src/actions/encodings/angle.js +9 -10
- package/src/actions/encodings/appearance.js +17 -51
- package/src/actions/encodings/density/resolve.js +3 -1
- package/src/actions/encodings/density.js +1 -15
- package/src/actions/encodings/horizon/resolve.js +13 -3
- package/src/actions/encodings/horizon.js +8 -7
- package/src/actions/encodings/index.js +9 -9
- package/src/actions/encodings/offset.js +41 -45
- package/src/actions/encodings/parallel.js +9 -10
- package/src/actions/encodings/pathOrder.js +6 -13
- package/src/actions/encodings/position/apply.js +30 -0
- package/src/actions/encodings/position/policies/arc.js +23 -2
- package/src/actions/encodings/position/policies/index.js +4 -4
- package/src/actions/encodings/position/policies/line.js +47 -17
- package/src/actions/encodings/position/resolve.js +36 -7
- package/src/actions/encodings/ranged.js +18 -23
- package/src/actions/encodings/remove.js +15 -25
- package/src/actions/encodings/ruleAppearance.js +9 -24
- package/src/actions/encodings/shared.js +37 -0
- package/src/actions/encodings/strokeDash.js +8 -23
- package/src/actions/encodings/text.js +9 -10
- package/src/actions/errorBands/create.js +105 -39
- package/src/actions/errorBands/edit.js +89 -93
- package/src/actions/errorBands/index.js +1 -2
- package/src/actions/errorBars/create.js +212 -30
- package/src/actions/errorBars/edit.js +91 -48
- package/src/actions/errorBars/index.js +1 -2
- package/src/actions/facets/actions.js +45 -69
- package/src/actions/facets/derive.js +38 -53
- package/src/actions/facets/replay.js +0 -1
- package/src/actions/gradientPlots/components.js +59 -48
- package/src/actions/gradientPlots/edit.js +35 -216
- package/src/actions/gradientPlots/index.js +11 -10
- package/src/actions/gradientPlots/materialize.js +21 -35
- package/src/actions/gradientPlots/options.js +5 -7
- package/src/actions/gradientPlots/paint.js +9 -6
- package/src/actions/gradientPlots/resolve.js +1 -1
- package/src/actions/guides/axes/index.js +3 -3
- package/src/actions/guides/axes/labels.js +68 -26
- package/src/actions/guides/axes/lines.js +22 -2
- package/src/actions/guides/axes/policy.js +28 -8
- package/src/actions/guides/axes/ticks.js +27 -9
- package/src/actions/guides/axes/titles.js +113 -65
- package/src/actions/guides/grids/resolve.js +14 -0
- package/src/actions/guides/guides.js +2 -4
- package/src/actions/guides/index.js +2 -2
- package/src/actions/guides/legends/categorical/actions.js +44 -68
- package/src/actions/guides/legends/categorical/components.js +6 -1
- package/src/actions/guides/legends/categorical/index.js +2 -2
- package/src/actions/guides/legends/categorical/layout.js +148 -175
- package/src/actions/guides/legends/categorical/recipes.js +5 -0
- package/src/actions/guides/legends/categorical/resolve.js +8 -1
- package/src/actions/guides/legends/continuous/common.js +117 -66
- package/src/actions/guides/legends/continuous/gradient.js +38 -37
- package/src/actions/guides/legends/continuous/interval.js +97 -76
- package/src/actions/guides/legends/continuous/opacity.js +28 -38
- package/src/actions/guides/legends/edit.js +14 -1
- package/src/actions/guides/legends/index.js +1 -1
- package/src/actions/guides/legends/lane.js +2 -1
- package/src/actions/guides/legends/remove.js +8 -0
- package/src/actions/guides/legends/size.js +36 -43
- package/src/actions/guides/legends/strokeWidth.js +20 -26
- package/src/actions/guides/polar/axes/labels.js +17 -1
- package/src/actions/guides/polar/axes/shared.js +7 -1
- package/src/actions/guides/polar/axes/titles.js +19 -2
- package/src/actions/guides/polar/grids.js +4 -0
- package/src/actions/guides/polar/resolve.js +6 -0
- package/src/actions/index.js +13 -13
- package/src/actions/intervals/resolve.js +87 -117
- package/src/actions/marks/arc/actions.js +31 -36
- package/src/actions/marks/area/actions.js +23 -31
- package/src/actions/marks/index.js +6 -6
- package/src/actions/marks/line/actions.js +33 -52
- package/src/actions/marks/line/materialize.js +7 -5
- package/src/actions/marks/point/materialize.js +38 -16
- package/src/actions/marks/remove.js +21 -0
- package/src/actions/marks/rule/actions.js +79 -54
- package/src/actions/marks/shared.js +8 -4
- package/src/actions/marks/text/actions.js +14 -6
- package/src/actions/marks/text/layout.js +21 -45
- package/src/actions/marks/tick/actions.js +22 -21
- package/src/actions/primitives/createGraphics.js +4 -0
- package/src/actions/primitives/editGraphics.js +4 -0
- package/src/actions/primitives/index.js +3 -3
- package/src/actions/primitives/semantic.js +1 -1
- package/src/actions/primitives/semanticValidation/index.js +2 -2
- package/src/actions/primitives/semanticValidation/layer.js +1 -1
- package/src/actions/regression/edit.js +3 -43
- package/src/actions/scales/consumers/families.js +24 -4
- package/src/actions/scales/consumers/index.js +1 -1
- package/src/actions/scales/consumers/seriesLayout.js +17 -0
- package/src/actions/scales/definitions.js +100 -103
- package/src/actions/scales/materialize.js +5 -0
- package/src/actions/selection/actions.js +79 -121
- package/src/actions/titles/actions.js +48 -94
- package/src/actions/titles/resolve.js +14 -27
- package/src/actions/violinPlots/create.js +37 -44
- package/src/core/textMetrics.js +74 -37
- package/src/core/validation.js +18 -0
- package/src/core/vocabulary.js +2 -2
- package/src/grammar/aggregate.js +48 -28
- package/src/grammar/arcs.js +170 -32
- package/src/grammar/areaSeries.js +14 -16
- package/src/grammar/bin2d.js +37 -23
- package/src/grammar/boxPlot.js +14 -13
- package/src/grammar/categoricalDensity.js +14 -14
- package/src/grammar/categoryOrder.js +8 -14
- package/src/grammar/curveCommands.js +87 -20
- package/src/grammar/density.js +162 -141
- package/src/grammar/facets/index.js +14 -0
- package/src/grammar/facets/scales.js +7 -4
- package/src/grammar/gradientProfile.js +12 -15
- package/src/grammar/histogram.js +145 -83
- package/src/grammar/horizon.js +60 -23
- package/src/grammar/interval.js +14 -13
- package/src/grammar/lineSeries.js +91 -61
- package/src/grammar/numeric.js +290 -0
- package/src/grammar/paint.js +3 -4
- package/src/grammar/palettes.js +21 -32
- package/src/grammar/pathCommands.js +6 -0
- package/src/grammar/polarPaths.js +5 -5
- package/src/grammar/positionCompatibility.js +1 -1
- package/src/grammar/regression/derive.js +48 -9
- package/src/grammar/regression/models.js +248 -69
- package/src/grammar/regression/parameters.js +8 -0
- package/src/grammar/rules.js +2 -0
- package/src/grammar/scales/color.js +35 -26
- package/src/grammar/scales/continuous.js +71 -24
- package/src/grammar/scales/definition.js +1 -1
- package/src/grammar/scales/discretized.js +42 -12
- package/src/grammar/scales/fields.js +21 -4
- package/src/grammar/scales/ordinal.js +139 -60
- package/src/grammar/scales/temporal.js +40 -11
- package/src/grammar/scales/transformed.js +199 -52
- package/src/grammar/schemas/graphicBounds.js +270 -79
- package/src/grammar/seriesLayout.js +50 -18
- package/src/grammar/ticks.js +123 -53
- package/src/grammar/timeUnit.js +18 -8
- package/src/grammar/transforms.js +4 -1
- package/src/grammar/window.js +70 -57
- package/src/index.js +1 -1
- package/src/layout/canvas.js +4 -8
- package/src/layout/composition.js +39 -40
- package/src/layout/facets.js +55 -30
- package/src/layout/labels.js +91 -15
- package/src/layout/legend.js +22 -20
- package/src/layout/legendLane.js +54 -40
- package/src/layout/title.js +7 -7
- package/src/materialization/bars/aggregate.js +14 -40
- package/src/materialization/bars/grouped.js +7 -18
- package/src/materialization/bars/histogram.js +2 -19
- package/src/materialization/bars/ranged.js +20 -15
- package/src/materialization/bars/resolve.js +21 -0
- package/src/materialization/facetGuides/legacyCategorical.js +9 -2
- package/src/materialization/facetGuides/placement.js +49 -19
- package/src/materialization/facetGuides/preparation.js +35 -6
- package/src/materialization/facets.js +42 -28
- package/src/materialization/guides/resources.js +2 -1
- package/src/materialization/marks/capabilities.js +15 -4
- package/src/materialization/marks/index.js +29 -6
- package/src/materialization/rowEncoding.js +57 -1
- package/src/materialization/scales/policies/bar.js +61 -102
- package/src/materialization/scales/policies/binnedPosition.js +34 -0
- package/src/materialization/scales/policies/offset.js +54 -0
- package/src/materialization/scales/policies/series.js +13 -7
- package/src/materialization/scales/resolve.js +6 -9
- package/src/materialization/selection/items/arc.js +16 -2
- package/src/materialization/selection/items/bar.js +4 -2
- package/src/materialization/selection/items/common.js +21 -1
- package/src/materialization/selection/items/path.js +19 -2
- package/src/materialization/selection/items/point.js +4 -16
- package/src/materialization/selection/items/tick.js +13 -21
- package/src/materialization/selection/point.js +11 -4
- package/src/materialization/selection/styles.js +19 -27
- package/src/materialization/text.js +4 -1
- package/src/mcp/adapter.js +8 -3
- package/src/renderers/canvas/fill.js +2 -2
- package/src/renderers/canvas/index.js +35 -2
- package/src/renderers/canvas/native.js +160 -0
- package/src/renderers/pdf.js +14 -0
- package/src/renderers/svg.js +37 -4
- package/types/index.d.ts +3 -0
- package/types/program.d.ts +523 -131
- package/types/svg.d.ts +1 -0
- package/src/actions/errorBands/components.js +0 -81
- package/src/actions/errorBands/options.js +0 -39
- package/src/actions/errorBands/resolve.js +0 -28
- package/src/actions/errorBars/components.js +0 -62
- package/src/actions/errorBars/options.js +0 -58
- package/src/actions/errorBars/resolve.js +0 -25
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,101 @@ All notable changes to `ggaction` are recorded in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## [0.0.12] - 2026-09-03
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Added direct quantitative theta encodings for Polar arc marks, producing one
|
|
12
|
+
proportional sector per positive row with deterministic order, validation,
|
|
13
|
+
selection, rematerialization, strict types, and executable documentation.
|
|
14
|
+
- Added quantitative independent positions for explicit error bars and
|
|
15
|
+
categorical `xOffset`/`yOffset` grouping for points, rules, and complete
|
|
16
|
+
point-and-whisker charts. Inferred intervals now reuse the source offset
|
|
17
|
+
field, scale, padding, and statistical grouping.
|
|
18
|
+
- Added Context7 project metadata, ownership verification, bounded indexing
|
|
19
|
+
rules, and manual or release-triggered documentation refresh automation.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Sharded the realistic data corpus across seven CI jobs and removed duplicate
|
|
24
|
+
coverage work from the ordinary test job, while retaining the complete
|
|
25
|
+
release qualification suite.
|
|
26
|
+
- Updated the locked `fast-uri` and `qs` dependency lines and retained a clean
|
|
27
|
+
production dependency audit across the supported Node.js package matrix.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- Kept grouped points, whisker rules, and fixed-width caps on the same
|
|
32
|
+
categorical sub-slot after Canvas, scale, offset-scale, and data changes.
|
|
33
|
+
- Preserved an explicitly authored shared facet legend at its child
|
|
34
|
+
`left`, `right`, `top`, or `bottom` edge, including horizontal alignment and
|
|
35
|
+
the correct width-versus-height reservation after composition layout edits.
|
|
36
|
+
|
|
37
|
+
## [0.0.11] - 2026-09-02
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- Added production guidance for accessibility, compatibility, responsive
|
|
42
|
+
layout, performance, data refresh, error recovery, version provenance,
|
|
43
|
+
fonts, and strict TypeScript use.
|
|
44
|
+
- Published versioned action cards, task-packet schemas, the exact
|
|
45
|
+
`ChartProgram` declaration, and a hashed LLM section manifest as deployed
|
|
46
|
+
machine-readable documentation artifacts.
|
|
47
|
+
- Added binned quantitative line aggregates with shared position-scale reuse,
|
|
48
|
+
stable series grouping, path ordering, selection, and rematerialization
|
|
49
|
+
behavior.
|
|
50
|
+
- Added text labels for complete arc sectors, with anchors derived from final
|
|
51
|
+
annular geometry and replay after Canvas, scale, padding, or inner-radius
|
|
52
|
+
changes.
|
|
53
|
+
- Added a provenance-verified 50-source TidyTuesday corpus and deterministic
|
|
54
|
+
smoke, deep, and realistic scenario runners for data, mark, encoding, guide,
|
|
55
|
+
scale, lifecycle, facade, and renderer qualification.
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
|
|
59
|
+
- Expanded compact action cards with exact option type strings and upgraded
|
|
60
|
+
MCP task packets with package provenance, applied options, explicit
|
|
61
|
+
placeholders, and unmatched-requirement preservation.
|
|
62
|
+
- Expanded chart-intent resolution for area, Horizon, pie, donut, rose, radar,
|
|
63
|
+
Polar axes, accessibility, responsive output, common option values, and
|
|
64
|
+
broader unsupported interaction and animation wording.
|
|
65
|
+
- Expanded documentation search and the LLM routing index from prose-only
|
|
66
|
+
excerpts to complete canonical-page and technical-symbol coverage.
|
|
67
|
+
- Inferred quantitative versus nominal bar positions from field-string
|
|
68
|
+
shorthand, inferred omitted rule datum types from scalar values, and allowed
|
|
69
|
+
compatible datum rules to share grouped or stacked measure scales.
|
|
70
|
+
- Hardened transforms, scales, layouts, selections, legends, and Canvas, PNG,
|
|
71
|
+
SVG, and PDF rendering with deterministic finite-value, cardinality,
|
|
72
|
+
geometry, native-backend, and output-size boundaries.
|
|
73
|
+
- Updated the Canvas runtime and browser build dependencies while preserving
|
|
74
|
+
explicit package and browser-bundle headroom across supported platforms.
|
|
75
|
+
|
|
76
|
+
### Fixed
|
|
77
|
+
|
|
78
|
+
- Rewrote full LLM-bundle links and images against deployed canonical routes,
|
|
79
|
+
preserved links authored with HTML/Liquid, and exposed deterministic section
|
|
80
|
+
hashes and source-status metadata.
|
|
81
|
+
- Corrected the one-transform `DatasetTransform` documentation, all eight
|
|
82
|
+
public transform branches, legend placement support, duplicated chart
|
|
83
|
+
figures, generated action anchors, navigation order, and leaked internal
|
|
84
|
+
instruction files.
|
|
85
|
+
- Prevented incompatible area stroke-dash steps from appearing as executable
|
|
86
|
+
MCP output and stopped silently dropping recognized numeric, layout,
|
|
87
|
+
accessibility, and interaction requirements.
|
|
88
|
+
- Rematerialized every complete mark that consumes a shared automatic position
|
|
89
|
+
scale when a new ranged consumer expands its domain, keeping inherited error
|
|
90
|
+
bands aligned with existing lines.
|
|
91
|
+
- Preserved direct quantitative line values at their row grain instead of
|
|
92
|
+
collapsing repeated positions through the aggregate-line path.
|
|
93
|
+
- Aligned temporal bar annotations with their final geometry, spanned temporal
|
|
94
|
+
axis baselines across the plot, and composed multi-part UTC tick formats
|
|
95
|
+
without losing date or time components.
|
|
96
|
+
- Preserved encoded ranged-bar outlines and the default or encoded radius of
|
|
97
|
+
path-shaped points across materialization and rendering.
|
|
98
|
+
- Kept discretized heatmap domains nondegenerate, reserved data-aware facet
|
|
99
|
+
guide space, and made realistic gallery charts readable without weakening
|
|
100
|
+
the diagnostic corpus.
|
|
101
|
+
|
|
7
102
|
## [0.0.10] - 2026-08-11
|
|
8
103
|
|
|
9
104
|
### Added
|
|
@@ -214,6 +309,8 @@ All notable changes to `ggaction` are recorded in this file.
|
|
|
214
309
|
- Cartesian charts are the complete current path. Polar semantic tokens exist only where explicitly documented and do
|
|
215
310
|
not imply complete polar rendering.
|
|
216
311
|
|
|
312
|
+
[0.0.12]: https://github.com/ggaction/ggaction/releases/tag/v0.0.12
|
|
313
|
+
[0.0.11]: https://github.com/ggaction/ggaction/releases/tag/v0.0.11
|
|
217
314
|
[0.0.10]: https://github.com/ggaction/ggaction/releases/tag/v0.0.10
|
|
218
315
|
[0.0.9]: https://github.com/ggaction/ggaction/releases/tag/v0.0.9
|
|
219
316
|
[0.0.8]: https://github.com/ggaction/ggaction/releases/tag/v0.0.8
|
package/README.md
CHANGED
|
@@ -54,7 +54,8 @@ const program = chart()
|
|
|
54
54
|
## MCP server for LLM
|
|
55
55
|
|
|
56
56
|
ggaction includes a local, read-only MCP server that gives coding assistants
|
|
57
|
-
current action names,
|
|
57
|
+
current action names, syntax-valid call templates, explicit placeholders, and
|
|
58
|
+
task-specific authoring steps
|
|
58
59
|
without loading the complete documentation.
|
|
59
60
|
|
|
60
61
|
<p align="left">
|
|
@@ -156,7 +157,7 @@ automatic undo stack; the application chooses which to retain or render.
|
|
|
156
157
|
|
|
157
158
|
Use `createLinePlot`, `createBarPlot`, `createHistogram`, and `createHeatmap` for
|
|
158
159
|
the other basic Cartesian charts. The `ggaction/basic` entry keeps this common
|
|
159
|
-
creation path at or below the current
|
|
160
|
+
creation path at or below the current 125,000-byte gzip regression ceiling while
|
|
160
161
|
each facade still records its mark, encoding, and guide actions as trace
|
|
161
162
|
children. Import from
|
|
162
163
|
`ggaction` when you need editing, selection, composition, alternative
|
|
@@ -218,6 +219,7 @@ browser entry. See the [local MCP guide](https://ggaction.github.io/ggaction/mcp
|
|
|
218
219
|
- [Tutorials and Examples](https://ggaction.github.io/ggaction/tutorials/)
|
|
219
220
|
- [Action Reference](https://ggaction.github.io/ggaction/reference/actions/)
|
|
220
221
|
- [Local MCP for LLM Chart Authoring](https://ggaction.github.io/ggaction/mcp/)
|
|
222
|
+
- [Context7 library](https://context7.com/ggaction/ggaction) — use the library ID `/ggaction/ggaction`
|
|
221
223
|
- [Concepts](https://ggaction.github.io/ggaction/concepts/chart-program/)
|
|
222
224
|
- [Supported Features](https://ggaction.github.io/ggaction/supported-features/)
|
|
223
225
|
|
|
@@ -229,7 +231,7 @@ the extra discussion required before public API or architecture changes.
|
|
|
229
231
|
|
|
230
232
|
## Status and development
|
|
231
233
|
|
|
232
|
-
> **Status:** `0.0.
|
|
234
|
+
> **Status:** `0.0.12` is the current experimental public release. APIs may change before `1.0.0`; changes are recorded in the [changelog](./CHANGELOG.md).
|
|
233
235
|
|
|
234
236
|
```bash
|
|
235
237
|
npm install
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"$schema":"https://json-schema.org/draft/2020-12/schema","$id":"https://ggaction.github.io/ggaction/schemas/action-card.schema.json","title":"ggaction compact action card","type":"object","additionalProperties":false,"required":["schemaVersion","name","layer","domain","summary","signature","intents","lifecycle","resources","options","callPatterns","snippet","errors","route"],"properties":{"schemaVersion":{"const":2},"name":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9]*$"},"layer":{"enum":["user-facing","advanced","primitive"]},"domain":{"type":"string","minLength":1},"summary":{"type":"string","minLength":20,"maxLength":420},"signature":{"type":"string","minLength":10},"intents":{"type":"array","minItems":3,"maxItems":7,"uniqueItems":true,"items":{"type":"string","minLength":2,"maxLength":80}},"lifecycle":{"type":"string","minLength":3},"resources":{"type":"object","additionalProperties":false,"required":["prerequisites","owns","idOptions"],"properties":{"prerequisites":{"type":"array","maxItems":4,"uniqueItems":true,"items":{"type":"string","minLength":2,"maxLength":100}},"owns":{"type":"array","maxItems":3,"uniqueItems":true,"items":{"type":"string","minLength":2,"maxLength":80}},"idOptions":{"type":"array","maxItems":10,"uniqueItems":true,"items":{"type":"string","minLength":2,"maxLength":30}}}},"options":{"type":"array","maxItems":40,"items":{"type":"object","additionalProperties":false,"required":["name","required","type"],"properties":{"name":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9]*$"},"required":{"type":"boolean"},"type":{"type":"string","minLength":1,"maxLength":500}}}},"callPatterns":{"type":"array","minItems":1,"maxItems":2,"uniqueItems":true,"items":{"type":"string","minLength":3,"maxLength":260}},"snippet":{"type":"string","minLength":3,"maxLength":700},"errors":{"type":"array","maxItems":2,"items":{"type":"object","additionalProperties":false,"required":["error","fix"],"properties":{"error":{"type":"string","minLength":5,"maxLength":220},"fix":{"type":"string","minLength":5,"maxLength":220}}}},"route":{"type":"string","pattern":"^/reference/"}}}
|