-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilemap.json
More file actions
3455 lines (3455 loc) · 408 KB
/
filemap.json
File metadata and controls
3455 lines (3455 loc) · 408 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_comment": "Auto-generated by scripts/generate-filemap.mjs — do not hand-edit.",
"generated": "2026-04-23T14:08:34.708Z",
"coverage": "3268/3443 files (95%)",
"files": {
"CLAUDE.md": "CLAUDE.md",
"COMPAT.md": "Formspec Compatibility Matrix",
"CONTRIBUTING.md": "Contributing to Formspec",
"FIELD_SPACING_PARITY.md": "Field chrome parity: `formspec-react` vs `formspec-webcomponent`",
"LICENSING.md": "Formspec Licensing",
"README.md": "Formspec",
"STACK.md": "The Stack — Formspec + WOS + Trellis",
"STUDIO-REVIEW-TODO.md": "Studio review — task list",
"TODO.md": "Formspec — Consolidated TODO",
"benchmarks/README.md": "Formspec Requirement-to-Form Benchmark (v0)",
"benchmarks/run_benchmark.py": "Formspec benchmark runner",
"benchmarks/run_mcp_loop.py": "MCP-driven convergence loop — drives an LLM through the Formspec MCP until",
"benchmarks/tasks/clinical-intake/meta.json": null,
"benchmarks/tasks/clinical-intake/reference/intake.component.json": "Clinical Intake Layout",
"benchmarks/tasks/clinical-intake/reference/intake.definition.json": "Clinical Intake Survey — Patient intake form with triage screener, nested repeats, pre-population instances, and comp...",
"benchmarks/tasks/clinical-intake/reference/intake.theme.json": "Clinical Intake Theme",
"benchmarks/tasks/clinical-intake/reference/screener.json": "Clinical Intake Survey — Screener",
"benchmarks/tasks/clinical-intake/requirement.md": "Patient Intake",
"benchmarks/tasks/grant-application/meta.json": null,
"benchmarks/tasks/grant-application/reference/changelog.json": null,
"benchmarks/tasks/grant-application/reference/component.json": "Grant Application Layout",
"benchmarks/tasks/grant-application/reference/contact-fragment.json": "Grant Application Contact Fragment — Reusable contact information fields for grant application sections",
"benchmarks/tasks/grant-application/reference/definition.json": "Federal Grant Application — Standard federal grant application demonstrating the full Formspec feature set",
"benchmarks/tasks/grant-application/reference/mapping-csv.json": null,
"benchmarks/tasks/grant-application/reference/mapping-xml.json": null,
"benchmarks/tasks/grant-application/reference/mapping.json": null,
"benchmarks/tasks/grant-application/reference/screener.json": "Federal Grant Application — Screener",
"benchmarks/tasks/grant-application/reference/theme-pdf.json": "Grant Application Theme (PDF) — Print-first static rendering theme for PDF generation",
"benchmarks/tasks/grant-application/reference/theme.json": "Grant Application Theme",
"benchmarks/tasks/grant-application/requirement.md": "Federal Grant Application",
"benchmarks/tasks/grant-report/meta.json": null,
"benchmarks/tasks/grant-report/reference/tribal-base.definition.json": "CSBG Tribal Annual Report — Base Module — Shared items for CSBG Tribal Annual Report short and long variants. Include...",
"benchmarks/tasks/grant-report/reference/tribal-grant.mapping.json": null,
"benchmarks/tasks/grant-report/reference/tribal-long.definition.json": "CSBG Tribal Annual Report — Long Form — Extended annual report for tribal organizations receiving CSBG funding. Inclu...",
"benchmarks/tasks/grant-report/reference/tribal-short.component.json": null,
"benchmarks/tasks/grant-report/reference/tribal-short.definition.json": "CSBG Tribal Annual Report — Short Form — Annual report for tribal organizations receiving CSBG funding. Covers basic ...",
"benchmarks/tasks/grant-report/reference/tribal.changelog.json": null,
"benchmarks/tasks/grant-report/reference/tribal.theme.json": "USWDS-aligned theme for CSBG grant forms. Uses US Web Design System tokens and Public Sans typeface",
"benchmarks/tasks/grant-report/requirement.md": "Tribal CSBG Annual Report (Base / Short / Long)",
"benchmarks/tasks/invoice/meta.json": null,
"benchmarks/tasks/invoice/reference/invoice.component.json": "Invoice Layout",
"benchmarks/tasks/invoice/reference/invoice.definition.json": "Invoice — Line-item invoice with repeat groups and calculated totals (subtotal, tax, discount, grand total)",
"benchmarks/tasks/invoice/reference/invoice.mapping.json": null,
"benchmarks/tasks/invoice/reference/invoice.theme.json": "Invoice Theme",
"benchmarks/tasks/invoice/requirement.md": "Supplier Invoice",
"context.md": "Formspec — Project Context",
"crates/fel-core/README.md": "fel-core",
"crates/fel-core/docs/rustdoc-md/API.md": "fel-core — generated API (Markdown)",
"crates/fel-core/src/ast.rs": "FEL abstract syntax tree node definitions and operators",
"crates/fel-core/src/context_json.rs": "Build [`FormspecEnvironment`] from JSON-shaped evaluation context",
"crates/fel-core/src/convert.rs": "Canonical conversion between serde_json::Value and FelValue",
"crates/fel-core/src/dependencies.rs": "Static dependency extraction — field refs, context refs, and MIP dependencies",
"crates/fel-core/src/environment.rs": "FEL evaluation environment with field resolution, repeats, MIP state, and instances",
"crates/fel-core/src/error.rs": "FEL error types and diagnostic messages",
"crates/fel-core/src/evaluator.rs": "FEL tree-walking evaluator with base-10 decimal arithmetic and null propagation",
"crates/fel-core/src/extensions.rs": "FEL extension function registry with null propagation and conflict detection",
"crates/fel-core/src/interpolation.rs": "Helpers for `{{expression}}` message interpolation (locale spec §3.3.1)",
"crates/fel-core/src/iso_duration.rs": "ISO 8601 duration parsing for FEL `duration()`",
"crates/fel-core/src/lexer.rs": "FEL hand-rolled lexer — tokenization with spans and decimal numbers",
"crates/fel-core/src/lib.rs": "FEL parser, evaluator, and dependency analysis with base-10 decimal arithmetic",
"crates/fel-core/src/parser.rs": "FEL hand-rolled recursive descent parser with operator precedence",
"crates/fel-core/src/prepare_host.rs": "FEL source normalization before host evaluation (parity with TS `normalizeExpressionForWasmEvaluation`)",
"crates/fel-core/src/printer.rs": "FEL AST to string serializer for expression rewriting and debugging",
"crates/fel-core/src/trace.rs": "Structured evaluation traces for FEL",
"crates/fel-core/src/types.rs": "FEL runtime value types with base-10 decimal arithmetic",
"crates/fel-core/src/wire_style.rs": "Host JSON key convention shared across FEL dependency wire and Formspec FFI surfaces",
"crates/formspec-changeset/src/extract.rs": "Key extraction from recorded changeset entries",
"crates/formspec-changeset/src/graph.rs": "Dependency graph construction and connected-component grouping",
"crates/formspec-changeset/src/lib.rs": "Changeset dependency analysis — key extraction and connected-component grouping",
"crates/formspec-core/README.md": "formspec-core",
"crates/formspec-core/docs/rustdoc-md/API.md": "formspec-core — generated API (Markdown)",
"crates/formspec-core/src/assembler.rs": "Resolves $ref inclusions and assembles self-contained definitions with FEL rewriting",
"crates/formspec-core/src/assembly_fel_rewrite.rs": "FEL path rewriting for definition assembly (fragment `$ref` / `keyPrefix` semantics)",
"crates/formspec-core/src/changelog.rs": "Changelog — diffs two definition versions into a structured changelog",
"crates/formspec-core/src/component_tree.rs": "Pre-order traversal for component/theme JSON nodes (`component` + `children`)",
"crates/formspec-core/src/definition_items.rs": "Depth-first traversal of definition `items` / `children` JSON arrays",
"crates/formspec-core/src/extension_analysis.rs": "Validates extension usage in item trees against a registry catalog",
"crates/formspec-core/src/fel_analysis.rs": "FEL static analysis and expression rewriting for field references and variables",
"crates/formspec-core/src/fel_rewrite_exact.rs": "Exact-text FEL rewriting that preserves non-reference source text",
"crates/formspec-core/src/json_artifacts.rs": "`serde_json::Value` projections for WASM and Python FFI (use with `json_to_python` on the Py side)",
"crates/formspec-core/src/json_util.rs": "Small JSON helpers shared across bindings",
"crates/formspec-core/src/lib.rs": "Formspec core processing — FEL, paths, schemas, assembly, mappings, extensions",
"crates/formspec-core/src/option_sets.rs": "Inline `optionSet` field references from `optionSets` (parity with TS `resolveOptionSetsOnDefinition`)",
"crates/formspec-core/src/path_utils.rs": "Dotted path normalization and tree item navigation by path",
"crates/formspec-core/src/registry_client/mod.rs": "Registry client — parses registry documents, resolves extensions, validates lifecycle",
"crates/formspec-core/src/registry_client/name.rs": "Extension name pattern validation (`x-` prefix and segments)",
"crates/formspec-core/src/registry_client/parse.rs": "JSON parsing helpers for registry documents",
"crates/formspec-core/src/registry_client/registry.rs": "`Registry` inherent API and `RegistryLookup` bridge",
"crates/formspec-core/src/registry_client/types.rs": "Registry document types and parse errors",
"crates/formspec-core/src/registry_client/version.rs": "Loose semver-style version parsing and constraint matching for registry entries",
"crates/formspec-core/src/registry_client/wire_json.rs": "JSON projections for registry client (host bindings)",
"crates/formspec-core/src/response_migration.rs": "Apply definition `migrations` to flat response data (parity with TS `migrateResponseData`)",
"crates/formspec-core/src/runtime_mapping/document.rs": "Full mapping document execution (`autoMap`, `defaults`)",
"crates/formspec-core/src/runtime_mapping/engine.rs": "Execute the ordered mapping rule pipeline",
"crates/formspec-core/src/runtime_mapping/env.rs": "Build [`fel_core::FormspecEnvironment`] for mapping transforms and conditions",
"crates/formspec-core/src/runtime_mapping/mod.rs": "Bidirectional mapping engine for transforming data between formats",
"crates/formspec-core/src/runtime_mapping/parse.rs": "Deserialize mapping documents and rules from `serde_json::Value`",
"crates/formspec-core/src/runtime_mapping/path.rs": "Dot-path splitting and JSON get/set helpers",
"crates/formspec-core/src/runtime_mapping/transforms.rs": "Value-map, coercion, flatten string, and FEL evaluation helpers",
"crates/formspec-core/src/runtime_mapping/types.rs": "Type definitions for mapping rules, diagnostics, and documents",
"crates/formspec-core/src/runtime_mapping/wire_json.rs": "JSON projections for mapping execution (host bindings)",
"crates/formspec-core/src/schema_validator.rs": "Schema validation with document type detection and validation dispatch",
"crates/formspec-core/src/value_coerce.rs": "Inbound field coercion (parity with TS `coerceFieldValue` in `formspec-engine` helpers)",
"crates/formspec-core/src/wire_keys.rs": "Centralized JSON field names for host bindings (`JsonWireStyle`)",
"crates/formspec-eval/README.md": "formspec-eval",
"crates/formspec-eval/docs/rustdoc-md/API.md": "formspec-eval — generated API (Markdown)",
"crates/formspec-eval/src/convert.rs": "Value resolution helpers for dotted paths and nested objects",
"crates/formspec-eval/src/eval_json.rs": "JSON helpers for definition evaluation and WASM eval context parsing",
"crates/formspec-eval/src/fel_json.rs": "Money-aware and date-aware JSON normalization for FEL field/variable loading (shared across pipeline stages)",
"crates/formspec-eval/src/lib.rs": "Formspec Definition Evaluator — 4-phase batch processor",
"crates/formspec-eval/src/nrb.rs": "Phase 4: NRB (Non-Relevant Behavior) application",
"crates/formspec-eval/src/pipeline.rs": "Top-level evaluate_* orchestration (rebuild → recalculate → revalidate → NRB)",
"crates/formspec-eval/src/rebuild/initial_values.rs": "Seed `initialValue` into flat data when a field path is missing (9e)",
"crates/formspec-eval/src/rebuild/item_tree.rs": "Build `ItemInfo` tree from definition `items` and merge `binds` (object or array style)",
"crates/formspec-eval/src/rebuild/mod.rs": "Phase 1: Rebuild — build the item tree from a definition JSON",
"crates/formspec-eval/src/rebuild/repeat_data.rs": "Flat data augmentation for nested repeat groups and repeat-instance counting",
"crates/formspec-eval/src/rebuild/repeat_expand.rs": "Expand repeatable groups into concrete indexed items from response data",
"crates/formspec-eval/src/rebuild/wildcard.rs": "Wildcard bind paths (`[*]`) — match concrete items and instantiate FEL expressions",
"crates/formspec-eval/src/recalculate/bind_pass.rs": "Per-item bind evaluation: relevance, readonly, required, defaults, whitespace, repeat aliases",
"crates/formspec-eval/src/recalculate/calculate_pass.rs": "Fixpoint calculate passes until sibling and cross-field calculates stabilize",
"crates/formspec-eval/src/recalculate/json_fel.rs": "Calculated-field JSON coercion (precision, money wrapping). See [`crate::fel_json`] for JSON→FEL normalization",
"crates/formspec-eval/src/recalculate/mod.rs": "Phase 2: Recalculate — evaluate computed values and bind expressions",
"crates/formspec-eval/src/recalculate/repeats.rs": "Repeat groups: env row arrays, bare-name instance aliases, nested JSON path building",
"crates/formspec-eval/src/recalculate/variables.rs": "Definition variables: dependency topo sort, scope keys, and scoped evaluation order",
"crates/formspec-eval/src/registry_constraints.rs": "Build [`ExtensionConstraint`](crate::ExtensionConstraint) vectors from registry JSON documents",
"crates/formspec-eval/src/revalidate/env.rs": "FEL environment construction for validation: fields, variables, instances, repeat arrays, row aliases",
"crates/formspec-eval/src/revalidate/expr.rs": "FEL expression evaluation for validation (shape and bind constraint truthiness)",
"crates/formspec-eval/src/revalidate/items.rs": "Bind-level validation: required, type, constraint, cardinality, extension constraints",
"crates/formspec-eval/src/revalidate/mod.rs": "Phase 3: Revalidate — validate all constraints and shapes",
"crates/formspec-eval/src/revalidate/shapes.rs": "Shape rules: single targets, wildcard expansion, composition (and/or/not/xone), context",
"crates/formspec-eval/src/runtime_seed.rs": "Runtime seeding: prePopulate instances and previous non-relevant state",
"crates/formspec-eval/src/screener_eval.rs": "Standalone Screener Document evaluation — full pipeline per screener-spec.md §10",
"crates/formspec-eval/src/types/definition.rs": "Definition-level variable declarations",
"crates/formspec-eval/src/types/determination.rs": "Determination Record types — structured output of screener evaluation",
"crates/formspec-eval/src/types/evaluation.rs": "Evaluation trigger, context, and output types",
"crates/formspec-eval/src/types/extensions.rs": "Extension constraint payloads from registry entries",
"crates/formspec-eval/src/types/item_tree.rs": "Item tree nodes built from the definition",
"crates/formspec-eval/src/types/mod.rs": "Core types for the Formspec evaluator",
"crates/formspec-eval/src/types/modes.rs": "NRB and whitespace normalization modes",
"crates/formspec-eval/src/types/paths.rs": "Path normalization, tree lookup, and qualified repeat reference helpers",
"crates/formspec-eval/src/value_predicate.rs": "Shared predicates for “is this value empty?” across bind validation (required vs constraint rules differ)",
"crates/formspec-lint/README.md": "formspec-lint",
"crates/formspec-lint/docs/rustdoc-md/API.md": "formspec-lint — generated API (Markdown)",
"crates/formspec-lint/schemas/changelog.schema.json": "Formspec Changelog Document — Enumerates differences between two versions of a Formspec Definition. Each change is an...",
"crates/formspec-lint/schemas/component.schema.json": "Formspec Component Document — A Formspec Component Document per the Component Specification v1.0. Defines a Tier 3 pa...",
"crates/formspec-lint/schemas/conformance-suite.schema.json": "Formspec Shared Conformance Suite Case — Canonical shared-case contract for cross-runtime conformance checks executed...",
"crates/formspec-lint/schemas/core-commands.schema.json": "Core Command Catalog — Structured catalog of all commands available in formspec-core. Each entry defines the command ...",
"crates/formspec-lint/schemas/definition.schema.json": "Formspec Definition — A Formspec Definition document per the Formspec v1.0 specification. A Definition is a versioned...",
"crates/formspec-lint/schemas/determination.schema.json": "Formspec Determination Record — A Formspec Determination Record — the structured output artifact produced by evaluati...",
"crates/formspec-lint/schemas/fel-functions.schema.json": "FEL Function Catalog — Structured catalog of all built-in functions in the Formspec Expression Language (FEL) v1.0. E...",
"crates/formspec-lint/schemas/intake-handoff.schema.json": "Formspec Intake Handoff — A Formspec Intake Handoff records the boundary object emitted when a validated intake sessi...",
"crates/formspec-lint/schemas/locale.schema.json": "Formspec Locale Document — A Formspec Locale Document — a sidecar JSON artifact that provides internationalized strin...",
"crates/formspec-lint/schemas/mapping.schema.json": "Formspec Mapping Document — A Formspec Mapping DSL v1.0 document describing bidirectional data transformation between...",
"crates/formspec-lint/schemas/ontology.schema.json": "Formspec Ontology Document — A Formspec Ontology Document per the Ontology specification. A standalone sidecar that a...",
"crates/formspec-lint/schemas/references.schema.json": "Formspec References Document — A Formspec References Document per the References specification. A standalone layer th...",
"crates/formspec-lint/schemas/registry.schema.json": "Formspec Registry Document — A static JSON document format for publishing, discovering, and validating Formspec exten...",
"crates/formspec-lint/schemas/response.schema.json": "Formspec Response — A Formspec Response document — a completed or in-progress Instance pinned to a specific Definitio...",
"crates/formspec-lint/schemas/screener.schema.json": "Formspec Screener Document — A standalone Formspec Screener document for respondent classification and routing. A Scr...",
"crates/formspec-lint/schemas/theme.schema.json": "Formspec Theme Document — A Formspec Theme document — a sidecar JSON file that controls the visual presentation of a ...",
"crates/formspec-lint/schemas/token-registry.json": "Formspec platform token catalog — tokens consumed by the default CSS skin",
"crates/formspec-lint/schemas/token-registry.schema.json": "Formspec Token Registry — A structured catalog of design tokens with metadata for tooling, validation, and studio con...",
"crates/formspec-lint/schemas/validation-report.schema.json": "Formspec Validation Report — A standalone Validation Report aggregating all validation results for a Response at a po...",
"crates/formspec-lint/schemas/validation-result.schema.json": "Formspec Validation Result — A single structured validation finding produced by constraint evaluation during the Reva...",
"crates/formspec-lint/src/component_matrix.rs": "Component/dataType compatibility matrix for the 12 built-in input components",
"crates/formspec-lint/src/dependencies.rs": "Pass 5: Dependency analysis — builds a dependency graph from compiled expressions and detects cycles via DFS",
"crates/formspec-lint/src/expressions.rs": "Pass 4: Expression compilation — parses all FEL expression slots in a definition,",
"crates/formspec-lint/src/extensions.rs": "Pass 3b: Extension validation (E600/E601/E602)",
"crates/formspec-lint/src/lib.rs": "Formspec Linter — 8-pass static analysis and validation pipeline",
"crates/formspec-lint/src/lint_json.rs": "`serde_json::Value` projection for lint results (WASM / Python FFI)",
"crates/formspec-lint/src/metadata.rs": "Authoring-loop metadata for lint diagnostics — maps each rule code to the",
"crates/formspec-lint/src/pass_component.rs": "Pass 7: Component document semantic checks (E800-E807, W800-W804)",
"crates/formspec-lint/src/pass_theme.rs": "Pass 6: Theme document semantic checks (W700-W711, E710)",
"crates/formspec-lint/src/references.rs": "Pass 3: Reference validation — checks bind paths and shape targets resolve against the item tree",
"crates/formspec-lint/src/schema_validation.rs": "Pass 1b: JSON Schema validation — validates documents against embedded schemas (E101)",
"crates/formspec-lint/src/tree.rs": "Pass 2: Tree indexing — flattens the item tree into a lookup index",
"crates/formspec-lint/src/types.rs": "Shared types for the formspec lint pipeline (diagnostics, modes, results)",
"crates/formspec-py/README.md": "formspec-py (`formspec_rust`)",
"crates/formspec-py/src/changelog.rs": "Changelog generation binding",
"crates/formspec-py/src/convert.rs": "Python ↔ FEL / JSON conversion helpers for the PyO3 `formspec_rust` module",
"crates/formspec-py/src/document.rs": "Document type detection, linting, definition evaluation, and screener bindings",
"crates/formspec-py/src/fel.rs": "FEL evaluation, parse, and dependency PyO3 bindings",
"crates/formspec-py/src/lib.rs": "PyO3 bindings for Formspec — FEL, linting, definition evaluation, registry, changelog, and mapping to Python",
"crates/formspec-py/src/mapping.rs": "Mapping document parsing and `execute_mapping_doc` PyO3 binding",
"crates/formspec-py/src/registry.rs": "Registry document parsing and entry lookup bindings",
"crates/formspec-wasm/README.md": "formspec-wasm",
"crates/formspec-wasm/src/bin/bloat_runtime.rs": "Native size anchor for `cargo bloat` (host target)",
"crates/formspec-wasm/src/bin/bloat_tools.rs": "Native size anchor for `cargo bloat` including **`formspec-lint`** (tools WASM graph)",
"crates/formspec-wasm/src/changelog.rs": "Changelog generation (`wasm_bindgen`)",
"crates/formspec-wasm/src/changeset.rs": "WASM bindings for changeset dependency analysis",
"crates/formspec-wasm/src/definition.rs": "Definition helpers for `wasm_bindgen` — option sets + migrations always; `$ref` assembly behind `definition-assembly`",
"crates/formspec-wasm/src/document.rs": "Document type detection, schema validation planning, and linting",
"crates/formspec-wasm/src/evaluate.rs": "Definition batch evaluation and screener (`wasm_bindgen`)",
"crates/formspec-wasm/src/fel.rs": "FEL evaluation, analysis, and path utilities (`wasm_bindgen`). `fel-authoring` adds parse/tokenize/print/rewrites/cat...",
"crates/formspec-wasm/src/json_host.rs": "Shared JSON parse/stringify helpers for wasm_bindgen surfaces",
"crates/formspec-wasm/src/lib.rs": "WASM bindings for Formspec — exposes FEL, evaluation, assembly, mapping, and (with `lint`) linting to TS",
"crates/formspec-wasm/src/mapping.rs": "Runtime mapping rule arrays and mapping documents (`wasm_bindgen`)",
"crates/formspec-wasm/src/registry.rs": "Registry client and extension usage validation (`wasm_bindgen`)",
"crates/formspec-wasm/src/split_abi.rs": "Lockstep ABI marker shared by runtime and tools WASM artifacts",
"crates/formspec-wasm/src/value_coerce.rs": "WASM binding for inbound field coercion (`coerceFieldValue`)",
"crates/formspec-wasm/src/wasm_tests.rs": "Native unit tests for wasm binding helpers (string JSON API); no wasm runtime required",
"crates/formspec-wasm/wasm-pkg/README.md": "formspec-wasm",
"crates/formspec-wasm/wasm-pkg/package.json": "WASM bindings for Formspec — exposes fel-core and formspec-core to TypeScript",
"docs/api/formspec-chat/classes/ChatSession.html": "ChatSession | @formspec-org/chat",
"docs/api/formspec-chat/classes/GeminiAdapter.html": "GeminiAdapter | @formspec-org/chat",
"docs/api/formspec-chat/classes/IssueQueue.html": "IssueQueue | @formspec-org/chat",
"docs/api/formspec-chat/classes/MockAdapter.html": "MockAdapter | @formspec-org/chat",
"docs/api/formspec-chat/classes/OpenAIAdapter.html": "OpenAIAdapter | @formspec-org/chat",
"docs/api/formspec-chat/classes/SessionStore.html": "SessionStore | @formspec-org/chat",
"docs/api/formspec-chat/classes/SourceTraceManager.html": "SourceTraceManager | @formspec-org/chat",
"docs/api/formspec-chat/classes/TemplateLibrary.html": "TemplateLibrary | @formspec-org/chat",
"docs/api/formspec-chat/functions/deriveScaffoldSchema.html": "deriveScaffoldSchema | @formspec-org/chat",
"docs/api/formspec-chat/functions/diff.html": "diff | @formspec-org/chat",
"docs/api/formspec-chat/functions/extractRegistryHints.html": "extractRegistryHints | @formspec-org/chat",
"docs/api/formspec-chat/functions/scaffoldOutputToDefinition.html": "scaffoldOutputToDefinition | @formspec-org/chat",
"docs/api/formspec-chat/functions/validateProviderConfig.html": "validateProviderConfig | @formspec-org/chat",
"docs/api/formspec-chat/hierarchy.html": "@formspec-org/chat",
"docs/api/formspec-chat/index.html": "@formspec-org/chat",
"docs/api/formspec-chat/interfaces/AIAdapter.html": "AIAdapter | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/Attachment.html": "Attachment | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ChatMessage.html": "ChatMessage | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ChatProjectSnapshot.html": "ChatProjectSnapshot | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ChatSessionOptions.html": "ChatSessionOptions | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ChatSessionState.html": "ChatSessionState | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ConversationResponse.html": "ConversationResponse | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/DebugEntry.html": "DebugEntry | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/DefinitionDiff.html": "DefinitionDiff | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/Issue.html": "Issue | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ProviderConfig.html": "ProviderConfig | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ProviderValidationError.html": "ProviderValidationError | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/RefinementResult.html": "RefinementResult | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/RegistryDocument.html": "RegistryDocument | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/RegistryHintEntry.html": "RegistryHintEntry | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ScaffoldResult.html": "ScaffoldResult | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/SessionSummary.html": "SessionSummary | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/SourceTrace.html": "SourceTrace | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/StorageBackend.html": "StorageBackend | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/Template.html": "Template | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ToolCallRecord.html": "ToolCallRecord | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ToolCallResult.html": "ToolCallResult | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ToolContext.html": "ToolContext | @formspec-org/chat",
"docs/api/formspec-chat/interfaces/ToolDeclaration.html": "ToolDeclaration | @formspec-org/chat",
"docs/api/formspec-chat/modules.html": "@formspec-org/chat",
"docs/api/formspec-chat/types/IssueCategory.html": "IssueCategory | @formspec-org/chat",
"docs/api/formspec-chat/types/IssueSeverity.html": "IssueSeverity | @formspec-org/chat",
"docs/api/formspec-chat/types/IssueStatus.html": "IssueStatus | @formspec-org/chat",
"docs/api/formspec-chat/types/ProviderType.html": "ProviderType | @formspec-org/chat",
"docs/api/formspec-chat/types/ScaffoldProgressCallback.html": "ScaffoldProgressCallback | @formspec-org/chat",
"docs/api/formspec-chat/types/ScaffoldRequest.html": "ScaffoldRequest | @formspec-org/chat",
"docs/api/formspec-chat/types/SourceType.html": "SourceType | @formspec-org/chat",
"docs/api/formspec-core/classes/RawProject.html": "RawProject | @formspec-org/core",
"docs/api/formspec-core/functions/createChangesetMiddleware.html": "createChangesetMiddleware | @formspec-org/core",
"docs/api/formspec-core/functions/createRawProject.html": "createRawProject | @formspec-org/core",
"docs/api/formspec-core/functions/describeShapeConstraint.html": "describeShapeConstraint | @formspec-org/core",
"docs/api/formspec-core/functions/normalizeDefinition.html": "normalizeDefinition | @formspec-org/core",
"docs/api/formspec-core/functions/resolveItemLocation.html": "resolveItemLocation | @formspec-org/core",
"docs/api/formspec-core/functions/resolvePageStructure.html": "resolvePageStructure | @formspec-org/core",
"docs/api/formspec-core/functions/resolveThemeCascade.html": "resolveThemeCascade | @formspec-org/core",
"docs/api/formspec-core/hierarchy.html": "@formspec-org/core",
"docs/api/formspec-core/index.html": "@formspec-org/core",
"docs/api/formspec-core/interfaces/Change.html": "Change | @formspec-org/core",
"docs/api/formspec-core/interfaces/ChangeEvent.html": "ChangeEvent | @formspec-org/core",
"docs/api/formspec-core/interfaces/ChangesetRecorderControl.html": "ChangesetRecorderControl | @formspec-org/core",
"docs/api/formspec-core/interfaces/Command.html": "Command | @formspec-org/core",
"docs/api/formspec-core/interfaces/CommandResult.html": "CommandResult | @formspec-org/core",
"docs/api/formspec-core/interfaces/ComponentDocument.html": "ComponentDocument | @formspec-org/core",
"docs/api/formspec-core/interfaces/ComponentState.html": "ComponentState | @formspec-org/core",
"docs/api/formspec-core/interfaces/DataTypeInfo.html": "DataTypeInfo | @formspec-org/core",
"docs/api/formspec-core/interfaces/DefinitionCascadeInput.html": "DefinitionCascadeInput | @formspec-org/core",
"docs/api/formspec-core/interfaces/DependencyGraph.html": "DependencyGraph | @formspec-org/core",
"docs/api/formspec-core/interfaces/Diagnostic.html": "Diagnostic | @formspec-org/core",
"docs/api/formspec-core/interfaces/Diagnostics.html": "Diagnostics | @formspec-org/core",
"docs/api/formspec-core/interfaces/ExpressionLocation.html": "ExpressionLocation | @formspec-org/core",
"docs/api/formspec-core/interfaces/ExtensionFilter.html": "ExtensionFilter | @formspec-org/core",
"docs/api/formspec-core/interfaces/ExtensionsState.html": "ExtensionsState | @formspec-org/core",
"docs/api/formspec-core/interfaces/FELFunctionEntry.html": "FELFunctionEntry | @formspec-org/core",
"docs/api/formspec-core/interfaces/FELMappingContext.html": "FELMappingContext | @formspec-org/core",
"docs/api/formspec-core/interfaces/FELParseContext.html": "FELParseContext | @formspec-org/core",
"docs/api/formspec-core/interfaces/FELParseResult.html": "FELParseResult | @formspec-org/core",
"docs/api/formspec-core/interfaces/FELReferenceSet.html": "FELReferenceSet | @formspec-org/core",
"docs/api/formspec-core/interfaces/FieldDependents.html": "FieldDependents | @formspec-org/core",
"docs/api/formspec-core/interfaces/FormOption.html": "FormOption | @formspec-org/core",
"docs/api/formspec-core/interfaces/FormVariable.html": "FormVariable | @formspec-org/core",
"docs/api/formspec-core/interfaces/FormspecChangelog.html": "FormspecChangelog | @formspec-org/core",
"docs/api/formspec-core/interfaces/IProjectCore.html": "IProjectCore | @formspec-org/core",
"docs/api/formspec-core/interfaces/ItemFilter.html": "ItemFilter | @formspec-org/core",
"docs/api/formspec-core/interfaces/ItemSearchResult.html": "ItemSearchResult | @formspec-org/core",
"docs/api/formspec-core/interfaces/LoadedRegistry.html": "LoadedRegistry | @formspec-org/core",
"docs/api/formspec-core/interfaces/LocaleState.html": "LocaleState | @formspec-org/core",
"docs/api/formspec-core/interfaces/LogEntry.html": "LogEntry | @formspec-org/core",
"docs/api/formspec-core/interfaces/MappingDocument.html": "MappingDocument | @formspec-org/core",
"docs/api/formspec-core/interfaces/MappingPreviewParams.html": "MappingPreviewParams | @formspec-org/core",
"docs/api/formspec-core/interfaces/MappingPreviewResult.html": "MappingPreviewResult | @formspec-org/core",
"docs/api/formspec-core/interfaces/MappingState.html": "MappingState | @formspec-org/core",
"docs/api/formspec-core/interfaces/PageDiagnostic.html": "PageDiagnostic | @formspec-org/core",
"docs/api/formspec-core/interfaces/ProjectBundle.html": "ProjectBundle | @formspec-org/core",
"docs/api/formspec-core/interfaces/ProjectOptions.html": "ProjectOptions | @formspec-org/core",
"docs/api/formspec-core/interfaces/ProjectState.html": "ProjectState | @formspec-org/core",
"docs/api/formspec-core/interfaces/ProjectStatistics.html": "ProjectStatistics | @formspec-org/core",
"docs/api/formspec-core/interfaces/RegistrySummary.html": "RegistrySummary | @formspec-org/core",
"docs/api/formspec-core/interfaces/ResolvedPage.html": "ResolvedPage | @formspec-org/core",
"docs/api/formspec-core/interfaces/ResolvedPageStructure.html": "ResolvedPageStructure | @formspec-org/core",
"docs/api/formspec-core/interfaces/ResolvedProperty.html": "ResolvedProperty | @formspec-org/core",
"docs/api/formspec-core/interfaces/ResolvedRegion.html": "ResolvedRegion | @formspec-org/core",
"docs/api/formspec-core/interfaces/ResponseSchemaRow.html": "ResponseSchemaRow | @formspec-org/core",
"docs/api/formspec-core/interfaces/ThemeDocument.html": "ThemeDocument | @formspec-org/core",
"docs/api/formspec-core/interfaces/ThemeState.html": "ThemeState | @formspec-org/core",
"docs/api/formspec-core/interfaces/VersionRelease.html": "VersionRelease | @formspec-org/core",
"docs/api/formspec-core/interfaces/VersioningState.html": "VersioningState | @formspec-org/core",
"docs/api/formspec-core/modules.html": "@formspec-org/core",
"docs/api/formspec-core/types/AnyCommand.html": "AnyCommand | @formspec-org/core",
"docs/api/formspec-core/types/ChangeListener.html": "ChangeListener | @formspec-org/core",
"docs/api/formspec-core/types/CommandHandler.html": "CommandHandler | @formspec-org/core",
"docs/api/formspec-core/types/FormBind.html": "FormBind | @formspec-org/core",
"docs/api/formspec-core/types/FormDefinition.html": "FormDefinition | @formspec-org/core",
"docs/api/formspec-core/types/FormInstance.html": "FormInstance | @formspec-org/core",
"docs/api/formspec-core/types/FormItem.html": "FormItem | @formspec-org/core",
"docs/api/formspec-core/types/FormShape.html": "FormShape | @formspec-org/core",
"docs/api/formspec-core/types/Middleware.html": "Middleware | @formspec-org/core",
"docs/api/formspec-core/types/PageStructureInput.html": "PageStructureInput | @formspec-org/core",
"docs/api/formspec-core/types/ThemeCascadeInput.html": "ThemeCascadeInput | @formspec-org/core",
"docs/api/formspec-engine/classes/FormEngine.html": "FormEngine | @formspec-org/engine",
"docs/api/formspec-engine/classes/LocaleStore.html": "LocaleStore | @formspec-org/engine",
"docs/api/formspec-engine/classes/RuntimeMappingEngine.html": "RuntimeMappingEngine | @formspec-org/engine",
"docs/api/formspec-engine/functions/analyzeFEL.html": "analyzeFEL | @formspec-org/engine",
"docs/api/formspec-engine/functions/assembleDefinition.html": "assembleDefinition | @formspec-org/engine",
"docs/api/formspec-engine/functions/assembleDefinitionSync.html": "assembleDefinitionSync | @formspec-org/engine",
"docs/api/formspec-engine/functions/buildValidationReportEnvelope.html": "buildValidationReportEnvelope | @formspec-org/engine",
"docs/api/formspec-engine/functions/createFieldViewModel.html": "createFieldViewModel | @formspec-org/engine",
"docs/api/formspec-engine/functions/createFormEngine.html": "createFormEngine | @formspec-org/engine",
"docs/api/formspec-engine/functions/createFormViewModel.html": "createFormViewModel | @formspec-org/engine",
"docs/api/formspec-engine/functions/createMappingEngine.html": "createMappingEngine | @formspec-org/engine",
"docs/api/formspec-engine/functions/createSchemaValidator.html": "createSchemaValidator | @formspec-org/engine",
"docs/api/formspec-engine/functions/evalFEL.html": "evalFEL | @formspec-org/engine",
"docs/api/formspec-engine/functions/getBuiltinFELFunctionCatalog.html": "getBuiltinFELFunctionCatalog | @formspec-org/engine",
"docs/api/formspec-engine/functions/getFELDependencies.html": "getFELDependencies | @formspec-org/engine",
"docs/api/formspec-engine/functions/initFormspecEngine.html": "initFormspecEngine | @formspec-org/engine",
"docs/api/formspec-engine/functions/initFormspecEngineTools.html": "initFormspecEngineTools | @formspec-org/engine",
"docs/api/formspec-engine/functions/interpolateMessage.html": "interpolateMessage | @formspec-org/engine",
"docs/api/formspec-engine/functions/isBinaryType.html": "isBinaryType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isBooleanType.html": "isBooleanType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isChoiceType.html": "isChoiceType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isDateType.html": "isDateType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isFormspecEngineInitialized.html": "isFormspecEngineInitialized | @formspec-org/engine",
"docs/api/formspec-engine/functions/isFormspecEngineToolsInitialized.html": "isFormspecEngineToolsInitialized | @formspec-org/engine",
"docs/api/formspec-engine/functions/isMoneyType.html": "isMoneyType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isNumericType.html": "isNumericType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isTextType.html": "isTextType | @formspec-org/engine",
"docs/api/formspec-engine/functions/isUriType.html": "isUriType | @formspec-org/engine",
"docs/api/formspec-engine/functions/itemLocationAtPath.html": "itemLocationAtPath | @formspec-org/engine",
"docs/api/formspec-engine/functions/lintDocumentWithRegistries.html": "lintDocumentWithRegistries | @formspec-org/engine",
"docs/api/formspec-engine/functions/normalizePathSegment.html": "normalizePathSegment | @formspec-org/engine",
"docs/api/formspec-engine/functions/optionMatchesComboboxQuery.html": "optionMatchesComboboxQuery | @formspec-org/engine",
"docs/api/formspec-engine/functions/rewriteFEL.html": "rewriteFEL | @formspec-org/engine",
"docs/api/formspec-engine/functions/rewriteFELReferences.html": "rewriteFELReferences | @formspec-org/engine",
"docs/api/formspec-engine/functions/splitNormalizedPath.html": "splitNormalizedPath | @formspec-org/engine",
"docs/api/formspec-engine/functions/toValidationResults.html": "toValidationResults | @formspec-org/engine",
"docs/api/formspec-engine/functions/validateExtensionUsage.html": "validateExtensionUsage | @formspec-org/engine",
"docs/api/formspec-engine/functions/wasmEvaluateScreenerDocument.html": "wasmEvaluateScreenerDocument | @formspec-org/engine",
"docs/api/formspec-engine/hierarchy.html": "@formspec-org/engine",
"docs/api/formspec-engine/index.html": "@formspec-org/engine",
"docs/api/formspec-engine/interfaces/AssemblyProvenance.html": "AssemblyProvenance | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/AssemblyResult.html": "AssemblyResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ComboboxOptionSearchShape.html": "ComboboxOptionSearchShape | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ComponentDocument.html": "ComponentDocument | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ComponentObject.html": "ComponentObject | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/EngineReactiveRuntime.html": "EngineReactiveRuntime | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/EngineReplayApplyResult.html": "EngineReplayApplyResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/EngineReplayResult.html": "EngineReplayResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/EngineSignal.html": "EngineSignal | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/EvalValidation.html": "EvalValidation | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ExtensionUsageIssue.html": "ExtensionUsageIssue | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FELAnalysis.html": "FELAnalysis | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FELAnalysisError.html": "FELAnalysisError | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FELBuiltinFunctionCatalogEntry.html": "FELBuiltinFunctionCatalogEntry | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FELRewriteOptions.html": "FELRewriteOptions | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FieldViewModel.html": "FieldViewModel | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FieldViewModelDeps.html": "FieldViewModelDeps | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormEngineDiagnosticsSnapshot.html": "FormEngineDiagnosticsSnapshot | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormEngineRuntimeContext.html": "FormEngineRuntimeContext | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormProgress.html": "FormProgress | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormViewModel.html": "FormViewModel | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormViewModelDeps.html": "FormViewModelDeps | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/FormspecEnginePackage.html": "FormspecEnginePackage | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/IFormEngine.html": "IFormEngine | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/IRuntimeMappingEngine.html": "IRuntimeMappingEngine | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/InterpolateResult.html": "InterpolateResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/InterpolationWarning.html": "InterpolationWarning | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ItemLocation.html": "ItemLocation | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/LocaleDocument.html": "LocaleDocument | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/LookupResult.html": "LookupResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/MappingDiagnostic.html": "MappingDiagnostic | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/PinnedResponseReference.html": "PinnedResponseReference | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ReadonlyEngineSignal.html": "ReadonlyEngineSignal | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/RegistryEntry.html": "RegistryEntry | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/RemoteOptionsState.html": "RemoteOptionsState | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ResolvedOption.html": "ResolvedOption | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/ResolvedValidationResult.html": "ResolvedValidationResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/RewriteMap.html": "RewriteMap | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/RuntimeMappingResult.html": "RuntimeMappingResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/SchemaValidationError.html": "SchemaValidationError | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/SchemaValidationResult.html": "SchemaValidationResult | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/SchemaValidator.html": "SchemaValidator | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/SchemaValidatorSchemas.html": "SchemaValidatorSchemas | @formspec-org/engine",
"docs/api/formspec-engine/interfaces/TreeItemLike.html": "TreeItemLike | @formspec-org/engine",
"docs/api/formspec-engine/modules.html": "@formspec-org/engine",
"docs/api/formspec-engine/types/DefinitionResolver.html": "DefinitionResolver | @formspec-org/engine",
"docs/api/formspec-engine/types/DocumentType.html": "DocumentType | @formspec-org/engine",
"docs/api/formspec-engine/types/EngineNowInput.html": "EngineNowInput | @formspec-org/engine",
"docs/api/formspec-engine/types/EngineReplayEvent.html": "EngineReplayEvent | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecBind.html": "FormspecBind | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecDefinition.html": "FormspecDefinition | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecInstance.html": "FormspecInstance | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecItem.html": "FormspecItem | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecOption.html": "FormspecOption | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecShape.html": "FormspecShape | @formspec-org/engine",
"docs/api/formspec-engine/types/FormspecVariable.html": "FormspecVariable | @formspec-org/engine",
"docs/api/formspec-engine/types/MappingDirection.html": "MappingDirection | @formspec-org/engine",
"docs/api/formspec-engine/types/ValidationReport.html": "ValidationReport | @formspec-org/engine",
"docs/api/formspec-engine/types/ValidationResult.html": "ValidationResult | @formspec-org/engine",
"docs/api/formspec-engine/variables/evaluateDefinition.html": "evaluateDefinition | @formspec-org/engine",
"docs/api/formspec-engine/variables/findRegistryEntry.html": "findRegistryEntry | @formspec-org/engine",
"docs/api/formspec-engine/variables/generateChangelog.html": "generateChangelog | @formspec-org/engine",
"docs/api/formspec-engine/variables/isValidFELIdentifier.html": "isValidFELIdentifier | @formspec-org/engine",
"docs/api/formspec-engine/variables/itemAtPath.html": "itemAtPath | @formspec-org/engine",
"docs/api/formspec-engine/variables/lintDocument.html": "lintDocument | @formspec-org/engine",
"docs/api/formspec-engine/variables/normalizeIndexedPath.html": "normalizeIndexedPath | @formspec-org/engine",
"docs/api/formspec-engine/variables/parseRegistry.html": "parseRegistry | @formspec-org/engine",
"docs/api/formspec-engine/variables/preactReactiveRuntime.html": "preactReactiveRuntime | @formspec-org/engine",
"docs/api/formspec-engine/variables/printFEL.html": "printFEL | @formspec-org/engine",
"docs/api/formspec-engine/variables/rewriteMessageTemplate.html": "rewriteMessageTemplate | @formspec-org/engine",
"docs/api/formspec-engine/variables/sanitizeFELIdentifier.html": "sanitizeFELIdentifier | @formspec-org/engine",
"docs/api/formspec-engine/variables/tokenizeFEL.html": "tokenizeFEL | @formspec-org/engine",
"docs/api/formspec-engine/variables/validateLifecycleTransition.html": "validateLifecycleTransition | @formspec-org/engine",
"docs/api/formspec-engine/variables/wellKnownRegistryUrl.html": "wellKnownRegistryUrl | @formspec-org/engine",
"docs/api/formspec-mcp/hierarchy.html": "@formspec-org/mcp",
"docs/api/formspec-mcp/index.html": "@formspec-org/mcp",
"docs/api/formspec-mcp/modules.html": "@formspec-org/mcp",
"docs/api/formspec-webcomponent/classes/ComponentRegistry.html": "ComponentRegistry | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/classes/FormspecRender.html": "FormspecRender | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/applyResponseDataToEngine.html": "applyResponseDataToEngine | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/buildInitialScreenerAnswers.html": "buildInitialScreenerAnswers | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/createSignatureCanvas.html": "createSignatureCanvas | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/emitThemeTokens.html": "emitThemeTokens | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/extractScreenerSeedFromData.html": "extractScreenerSeedFromData | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/formatBytes.html": "formatBytes | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/formatMoney.html": "formatMoney | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/getDefaultComponent.html": "getDefaultComponent | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/initFormspecEngine.html": "initFormspecEngine | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/interpolateParams.html": "interpolateParams | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/normalizeScreenerSeedForItem.html": "normalizeScreenerSeedForItem | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/omitScreenerKeysFromData.html": "omitScreenerKeysFromData | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultAlert.html": "renderDefaultAlert | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultBadge.html": "renderDefaultBadge | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultCard.html": "renderDefaultCard | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultConditionalGroup.html": "renderDefaultConditionalGroup | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultDataTable.html": "renderDefaultDataTable | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultHeading.html": "renderDefaultHeading | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutAccordion.html": "renderDefaultLayoutAccordion | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutCollapsible.html": "renderDefaultLayoutCollapsible | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutColumns.html": "renderDefaultLayoutColumns | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutDivider.html": "renderDefaultLayoutDivider | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutGrid.html": "renderDefaultLayoutGrid | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutModal.html": "renderDefaultLayoutModal | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutPage.html": "renderDefaultLayoutPage | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutPanel.html": "renderDefaultLayoutPanel | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutPopover.html": "renderDefaultLayoutPopover | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultLayoutStack.html": "renderDefaultLayoutStack | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultProgressBar.html": "renderDefaultProgressBar | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultSpacer.html": "renderDefaultSpacer | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultSummary.html": "renderDefaultSummary | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultText.html": "renderDefaultText | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderDefaultValidationSummary.html": "renderDefaultValidationSummary | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/renderMarkdown.html": "renderMarkdown | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/resolvePresentation.html": "resolvePresentation | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/resolveResponsiveProps.html": "resolveResponsiveProps | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/resolveToken.html": "resolveToken | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/resolveWidget.html": "resolveWidget | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/functions/screenerAnswersSatisfyRequired.html": "screenerAnswersSatisfyRequired | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/hierarchy.html": "@formspec-org/webcomponent",
"docs/api/formspec-webcomponent/index.html": "@formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/AccessibilityBlock.html": "AccessibilityBlock | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/AccordionLayoutBehavior.html": "AccordionLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/AdapterContext.html": "AdapterContext | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/BehaviorContext.html": "BehaviorContext | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/CheckboxGroupBehavior.html": "CheckboxGroupBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/CollapsibleLayoutBehavior.html": "CollapsibleLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ColumnsLayoutBehavior.html": "ColumnsLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ComponentPlugin.html": "ComponentPlugin | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DataTableBehavior.html": "DataTableBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DataTableRefs.html": "DataTableRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DatePickerBehavior.html": "DatePickerBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DisplayComponentBehavior.html": "DisplayComponentBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DisplayHostSlice.html": "DisplayHostSlice | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/DividerLayoutBehavior.html": "DividerLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/FieldBehavior.html": "FieldBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/FieldRefs.html": "FieldRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/FileUploadBehavior.html": "FileUploadBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/GridLayoutBehavior.html": "GridLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ItemDescriptor.html": "ItemDescriptor | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/LayoutHints.html": "LayoutHints | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/LayoutHostSlice.html": "LayoutHostSlice | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ModalLayoutBehavior.html": "ModalLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/MoneyInputBehavior.html": "MoneyInputBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/NumberInputBehavior.html": "NumberInputBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/Page.html": "Page | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/PageLayoutBehavior.html": "PageLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/PanelLayoutBehavior.html": "PanelLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/PopoverLayoutBehavior.html": "PopoverLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/PresentationBlock.html": "PresentationBlock | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/RadioGroupBehavior.html": "RadioGroupBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/RatingBehavior.html": "RatingBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/Region.html": "Region | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/RenderAdapter.html": "RenderAdapter | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/RenderContext.html": "RenderContext | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ResolvedPresentationBlock.html": "ResolvedPresentationBlock | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ScreenerRoute.html": "ScreenerRoute | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ScreenerStateSnapshot.html": "ScreenerStateSnapshot | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SelectBehavior.html": "SelectBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SelectorMatch.html": "SelectorMatch | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SignatureBehavior.html": "SignatureBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SignatureCanvasConfig.html": "SignatureCanvasConfig | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SignatureCanvasResult.html": "SignatureCanvasResult | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SliderBehavior.html": "SliderBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/StackLayoutBehavior.html": "StackLayoutBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/StyleHints.html": "StyleHints | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/SubmitDetail.html": "SubmitDetail | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/TabsBehavior.html": "TabsBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/TabsRefs.html": "TabsRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/TextInputBehavior.html": "TextInputBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ThemeDocument.html": "ThemeDocument | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ThemeSelector.html": "ThemeSelector | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/Tier1Hints.html": "Tier1Hints | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ToggleBehavior.html": "ToggleBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/ValidationTargetMetadata.html": "ValidationTargetMetadata | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/WizardBehavior.html": "WizardBehavior | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/WizardProgressItemRefs.html": "WizardProgressItemRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/WizardRefs.html": "WizardRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/interfaces/WizardSidenavItemRefs.html": "WizardSidenavItemRefs | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/media/0046-headless-component-adapters.md": "ADR 0046: Headless Component Architecture with Render Adapters",
"docs/api/formspec-webcomponent/media/types.ts": "Shared type definitions: RenderContext, ComponentPlugin, and screener types.",
"docs/api/formspec-webcomponent/modules.html": "@formspec-org/webcomponent",
"docs/api/formspec-webcomponent/types/AdapterRenderFn.html": "AdapterRenderFn | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/types/FormspecDataType.html": "FormspecDataType | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/types/ScreenerRouteType.html": "ScreenerRouteType | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/variables/defaultTheme.html": "defaultTheme | @formspec-org/webcomponent",
"docs/api/formspec-webcomponent/variables/globalRegistry.html": "globalRegistry | @formspec-org/webcomponent",
"docs/api/formspec/formspec.html": "formspec API documentation",
"docs/api/formspec/formspec/adapters.html": "formspec.adapters API documentation",
"docs/api/formspec/formspec/adapters/base.html": "formspec.adapters.base API documentation",
"docs/api/formspec/formspec/adapters/csv_adapter.html": "formspec.adapters.csv_adapter API documentation",
"docs/api/formspec/formspec/adapters/json_adapter.html": "formspec.adapters.json_adapter API documentation",
"docs/api/formspec/formspec/adapters/xml_adapter.html": "formspec.adapters.xml_adapter API documentation",
"docs/api/formspec/formspec/changelog.html": "formspec.changelog API documentation",
"docs/api/formspec/formspec/evaluator.html": "formspec.evaluator API documentation",
"docs/api/formspec/formspec/factories.html": "formspec.factories API documentation",
"docs/api/formspec/formspec/fel.html": "formspec.fel API documentation",
"docs/api/formspec/formspec/fel/ast_nodes.html": "formspec.fel.ast_nodes API documentation",
"docs/api/formspec/formspec/fel/dependencies.html": "formspec.fel.dependencies API documentation",
"docs/api/formspec/formspec/fel/environment.html": "formspec.fel.environment API documentation",
"docs/api/formspec/formspec/fel/errors.html": "formspec.fel.errors API documentation",
"docs/api/formspec/formspec/fel/evaluator.html": "formspec.fel.evaluator API documentation",
"docs/api/formspec/formspec/fel/extensions.html": "formspec.fel.extensions API documentation",
"docs/api/formspec/formspec/fel/functions.html": "formspec.fel.functions API documentation",
"docs/api/formspec/formspec/fel/parser.html": "formspec.fel.parser API documentation",
"docs/api/formspec/formspec/fel/runtime.html": "formspec.fel.runtime API documentation",
"docs/api/formspec/formspec/fel/types.html": "formspec.fel.types API documentation",
"docs/api/formspec/formspec/mapping.html": "formspec.mapping API documentation",
"docs/api/formspec/formspec/protocols.html": "formspec.protocols API documentation",
"docs/api/formspec/formspec/registry.html": "formspec.registry API documentation",
"docs/api/formspec/formspec/validate.html": "formspec.validate API documentation",
"docs/api/formspec/formspec/validator.html": "formspec.validator API documentation",
"docs/api/rust/fel_core/all.html": "List of all items in this crate",
"docs/api/rust/fel_core/ast/enum.BinaryOp.html": "BinaryOp in fel_core::ast - Rust",
"docs/api/rust/fel_core/ast/enum.Expr.html": "Expr in fel_core::ast - Rust",
"docs/api/rust/fel_core/ast/enum.PathSegment.html": "PathSegment in fel_core::ast - Rust",
"docs/api/rust/fel_core/ast/enum.UnaryOp.html": "UnaryOp in fel_core::ast - Rust",
"docs/api/rust/fel_core/ast/index.html": "fel_core::ast - Rust",
"docs/api/rust/fel_core/context_json/fn.formspec_environment_from_json_map.html": "formspec_environment_from_json_map in fel_core::context_json - Rust",
"docs/api/rust/fel_core/context_json/index.html": "fel_core::context_json - Rust",
"docs/api/rust/fel_core/convert/fn.fel_to_json.html": "fel_to_json in fel_core::convert - Rust",
"docs/api/rust/fel_core/convert/fn.field_map_from_json_str.html": "field_map_from_json_str in fel_core::convert - Rust",
"docs/api/rust/fel_core/convert/fn.json_object_to_field_map.html": "json_object_to_field_map in fel_core::convert - Rust",
"docs/api/rust/fel_core/convert/fn.json_to_fel.html": "json_to_fel in fel_core::convert - Rust",
"docs/api/rust/fel_core/convert/index.html": "fel_core::convert - Rust",
"docs/api/rust/fel_core/dependencies/fn.dependencies_to_json_value.html": "dependencies_to_json_value in fel_core::dependencies - Rust",
"docs/api/rust/fel_core/dependencies/fn.dependencies_to_json_value_styled.html": "dependencies_to_json_value_styled in fel_core::dependencies - Rust",
"docs/api/rust/fel_core/dependencies/fn.extract_dependencies.html": "extract_dependencies in fel_core::dependencies - Rust",
"docs/api/rust/fel_core/dependencies/index.html": "fel_core::dependencies - Rust",
"docs/api/rust/fel_core/dependencies/struct.Dependencies.html": "Dependencies in fel_core::dependencies - Rust",
"docs/api/rust/fel_core/environment/index.html": "fel_core::environment - Rust",
"docs/api/rust/fel_core/environment/struct.FormspecEnvironment.html": "FormspecEnvironment in fel_core::environment - Rust",
"docs/api/rust/fel_core/environment/struct.MipState.html": "MipState in fel_core::environment - Rust",
"docs/api/rust/fel_core/environment/struct.RepeatContext.html": "RepeatContext in fel_core::environment - Rust",
"docs/api/rust/fel_core/error/enum.FelError.html": "FelError in fel_core::error - Rust",
"docs/api/rust/fel_core/error/enum.Severity.html": "Severity in fel_core::error - Rust",
"docs/api/rust/fel_core/error/fn.has_error_diagnostics.html": "has_error_diagnostics in fel_core::error - Rust",
"docs/api/rust/fel_core/error/fn.reject_undefined_functions.html": "reject_undefined_functions in fel_core::error - Rust",
"docs/api/rust/fel_core/error/fn.undefined_function_names_from_diagnostics.html": "undefined_function_names_from_diagnostics in fel_core::error - Rust",
"docs/api/rust/fel_core/error/index.html": "fel_core::error - Rust",
"docs/api/rust/fel_core/error/struct.Diagnostic.html": "Diagnostic in fel_core::error - Rust",
"docs/api/rust/fel_core/evaluator/fn.evaluate.html": "evaluate in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/fn.evaluate_with_trace.html": "evaluate_with_trace in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/index.html": "fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/struct.EvalResult.html": "EvalResult in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/struct.Evaluator.html": "Evaluator in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/struct.MapEnvironment.html": "MapEnvironment in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/evaluator/trait.Environment.html": "Environment in fel_core::evaluator - Rust",
"docs/api/rust/fel_core/extensions/enum.ExtensionError.html": "ExtensionError in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/fn.builtin_function_catalog.html": "builtin_function_catalog in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/fn.builtin_function_catalog_json_value.html": "builtin_function_catalog_json_value in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/index.html": "fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/struct.BuiltinFunctionCatalogEntry.html": "BuiltinFunctionCatalogEntry in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/struct.ExtensionFunc.html": "ExtensionFunc in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/struct.ExtensionRegistry.html": "ExtensionRegistry in fel_core::extensions - Rust",
"docs/api/rust/fel_core/extensions/type.ExtensionFn.html": "ExtensionFn in fel_core::extensions - Rust",
"docs/api/rust/fel_core/fn.eval_with_fields.html": "eval_with_fields in fel_core - Rust",
"docs/api/rust/fel_core/fn.fel_diagnostics_to_json_value.html": "fel_diagnostics_to_json_value in fel_core - Rust",
"docs/api/rust/fel_core/fn.tokenize.html": "tokenize in fel_core - Rust",
"docs/api/rust/fel_core/fn.tokenize_to_json_value.html": "tokenize_to_json_value in fel_core - Rust",
"docs/api/rust/fel_core/index.html": "fel_core - Rust",
"docs/api/rust/fel_core/interpolation/fn.expr_is_interpolation_static_literal.html": "expr_is_interpolation_static_literal in fel_core::interpolation - Rust",
"docs/api/rust/fel_core/interpolation/index.html": "fel_core::interpolation - Rust",
"docs/api/rust/fel_core/iso_duration/enum.IsoDurationParse.html": "IsoDurationParse in fel_core::iso_duration - Rust",
"docs/api/rust/fel_core/iso_duration/fn.parse_iso8601_duration.html": "parse_iso8601_duration in fel_core::iso_duration - Rust",
"docs/api/rust/fel_core/iso_duration/fn.parse_iso8601_duration_ms.html": "parse_iso8601_duration_ms in fel_core::iso_duration - Rust",
"docs/api/rust/fel_core/iso_duration/index.html": "fel_core::iso_duration - Rust",
"docs/api/rust/fel_core/lexer/enum.Token.html": "Token in fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/fn.is_valid_fel_identifier.html": "is_valid_fel_identifier in fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/fn.sanitize_fel_identifier.html": "sanitize_fel_identifier in fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/index.html": "fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/struct.Lexer.html": "Lexer in fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/struct.Span.html": "Span in fel_core::lexer - Rust",
"docs/api/rust/fel_core/lexer/struct.SpannedToken.html": "SpannedToken in fel_core::lexer - Rust",
"docs/api/rust/fel_core/parser/fn.parse.html": "parse in fel_core::parser - Rust",
"docs/api/rust/fel_core/parser/index.html": "fel_core::parser - Rust",
"docs/api/rust/fel_core/parser/struct.Parser.html": "Parser in fel_core::parser - Rust",
"docs/api/rust/fel_core/prepare_host/fn.prepare_fel_expression_for_host.html": "prepare_fel_expression_for_host in fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/prepare_host/fn.prepare_fel_expression_owned.html": "prepare_fel_expression_owned in fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/prepare_host/fn.prepare_fel_host_options_from_json_map.html": "prepare_fel_host_options_from_json_map in fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/prepare_host/index.html": "fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/prepare_host/struct.PrepareFelHostInput.html": "PrepareFelHostInput in fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/prepare_host/struct.PrepareFelHostOptionsOwned.html": "PrepareFelHostOptionsOwned in fel_core::prepare_host - Rust",
"docs/api/rust/fel_core/printer/fn.print_expr.html": "print_expr in fel_core::printer - Rust",
"docs/api/rust/fel_core/printer/index.html": "fel_core::printer - Rust",
"docs/api/rust/fel_core/struct.Decimal.html": "Decimal in fel_core - Rust",
"docs/api/rust/fel_core/struct.PositionedToken.html": "PositionedToken in fel_core - Rust",
"docs/api/rust/fel_core/trace/enum.TraceStep.html": "TraceStep in fel_core::trace - Rust",
"docs/api/rust/fel_core/trace/index.html": "fel_core::trace - Rust",
"docs/api/rust/fel_core/trace/struct.Trace.html": "Trace in fel_core::trace - Rust",
"docs/api/rust/fel_core/types/enum.FelDate.html": "FelDate in fel_core::types - Rust",
"docs/api/rust/fel_core/types/enum.FelValue.html": "FelValue in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.civil_from_days_pub.html": "civil_from_days_pub in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.date_add_days.html": "date_add_days in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.days_in_month.html": "days_in_month in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.format_number.html": "format_number in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.parse_date_literal.html": "parse_date_literal in fel_core::types - Rust",
"docs/api/rust/fel_core/types/fn.parse_datetime_literal.html": "parse_datetime_literal in fel_core::types - Rust",
"docs/api/rust/fel_core/types/index.html": "fel_core::types - Rust",
"docs/api/rust/fel_core/types/struct.FelMoney.html": "FelMoney in fel_core::types - Rust",
"docs/api/rust/fel_core/wire_style/enum.JsonWireStyle.html": "JsonWireStyle in fel_core::wire_style - Rust",
"docs/api/rust/fel_core/wire_style/index.html": "fel_core::wire_style - Rust",
"docs/api/rust/formspec_changeset/all.html": "List of all items in this crate",
"docs/api/rust/formspec_changeset/extract/fn.extract_keys.html": "extract_keys in formspec_changeset::extract - Rust",
"docs/api/rust/formspec_changeset/extract/index.html": "formspec_changeset::extract - Rust",
"docs/api/rust/formspec_changeset/extract/struct.EntryKeys.html": "EntryKeys in formspec_changeset::extract - Rust",
"docs/api/rust/formspec_changeset/extract/struct.RecordedCommand.html": "RecordedCommand in formspec_changeset::extract - Rust",
"docs/api/rust/formspec_changeset/extract/struct.RecordedEntry.html": "RecordedEntry in formspec_changeset::extract - Rust",
"docs/api/rust/formspec_changeset/graph/fn.compute_dependency_groups.html": "compute_dependency_groups in formspec_changeset::graph - Rust",
"docs/api/rust/formspec_changeset/graph/index.html": "formspec_changeset::graph - Rust",
"docs/api/rust/formspec_changeset/graph/struct.DependencyGroup.html": "DependencyGroup in formspec_changeset::graph - Rust",
"docs/api/rust/formspec_changeset/index.html": "formspec_changeset - Rust",
"docs/api/rust/formspec_core/all.html": "List of all items in this crate",
"docs/api/rust/formspec_core/assembler/enum.AssemblyError.html": "AssemblyError in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/fn.assemble_definition.html": "assemble_definition in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/fn.assembly_result_to_json_value.html": "assembly_result_to_json_value in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/index.html": "formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/struct.AssemblyProvenance.html": "AssemblyProvenance in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/struct.AssemblyResult.html": "AssemblyResult in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/struct.MapResolver.html": "MapResolver in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembler/trait.RefResolver.html": "RefResolver in formspec_core::assembler - Rust",
"docs/api/rust/formspec_core/assembly_fel_rewrite/fn.assembly_fel_rewrite_map_from_value.html": "assembly_fel_rewrite_map_from_value in formspec_core::assembly_fel_rewrite - Rust",
"docs/api/rust/formspec_core/assembly_fel_rewrite/fn.rewrite_fel_for_assembly.html": "rewrite_fel_for_assembly in formspec_core::assembly_fel_rewrite - Rust",
"docs/api/rust/formspec_core/assembly_fel_rewrite/fn.rewrite_message_template_for_assembly.html": "rewrite_message_template_for_assembly in formspec_core::assembly_fel_rewrite - Rust",
"docs/api/rust/formspec_core/assembly_fel_rewrite/index.html": "formspec_core::assembly_fel_rewrite - Rust",
"docs/api/rust/formspec_core/assembly_fel_rewrite/struct.AssemblyFelRewriteMap.html": "AssemblyFelRewriteMap in formspec_core::assembly_fel_rewrite - Rust",
"docs/api/rust/formspec_core/changelog/enum.ChangeImpact.html": "ChangeImpact in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/enum.ChangeTarget.html": "ChangeTarget in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/enum.ChangeType.html": "ChangeType in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/enum.SemverImpact.html": "SemverImpact in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/fn.generate_changelog.html": "generate_changelog in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/fn.generate_screener_changelog.html": "generate_screener_changelog in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/index.html": "formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/struct.Change.html": "Change in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/changelog/struct.Changelog.html": "Changelog in formspec_core::changelog - Rust",
"docs/api/rust/formspec_core/component_tree/fn.visit_component_subtree.html": "visit_component_subtree in formspec_core::component_tree - Rust",
"docs/api/rust/formspec_core/component_tree/index.html": "formspec_core::component_tree - Rust",
"docs/api/rust/formspec_core/definition_items/enum.DefinitionItemKeyPolicy.html": "DefinitionItemKeyPolicy in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.coerce_definition_item_key_segment.html": "coerce_definition_item_key_segment in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.definition_item_dotted_path.html": "definition_item_dotted_path in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.definition_item_key_segment.html": "definition_item_key_segment in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.extension_item_diagnostic_path_from_dotted.html": "extension_item_diagnostic_path_from_dotted in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.visit_definition_items_from_document.html": "visit_definition_items_from_document in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.visit_definition_items_json.html": "visit_definition_items_json in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.visit_definition_items_json_shallow.html": "visit_definition_items_json_shallow in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/fn.visit_definition_items_json_with_policy.html": "visit_definition_items_json_with_policy in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/index.html": "formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/definition_items/struct.DefinitionItemVisitCtx.html": "DefinitionItemVisitCtx in formspec_core::definition_items - Rust",
"docs/api/rust/formspec_core/enum.JsonWireStyle.html": "JsonWireStyle in formspec_core - Rust",
"docs/api/rust/formspec_core/extension_analysis/enum.ExtensionErrorCode.html": "ExtensionErrorCode in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/enum.ExtensionSeverity.html": "ExtensionSeverity in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/enum.RegistryEntryStatus.html": "RegistryEntryStatus in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/fn.json_definition_items_tree_from_value.html": "json_definition_items_tree_from_value in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/fn.map_registry_from_extension_entry_map.html": "map_registry_from_extension_entry_map in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/fn.validate_extension_usage.html": "validate_extension_usage in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/index.html": "formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/struct.ExtensionUsageIssue.html": "ExtensionUsageIssue in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/struct.JsonDefinitionItem.html": "JsonDefinitionItem in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/struct.MapRegistry.html": "MapRegistry in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/struct.RegistryEntryInfo.html": "RegistryEntryInfo in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/trait.ExtensionItem.html": "ExtensionItem in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/extension_analysis/trait.RegistryLookup.html": "RegistryLookup in formspec_core::extension_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.analyze_fel.html": "analyze_fel in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.analyze_fel_with_field_types.html": "analyze_fel_with_field_types in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.collect_fel_rewrite_targets.html": "collect_fel_rewrite_targets in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.fel_analysis_to_json_value.html": "fel_analysis_to_json_value in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.fel_rewrite_targets_to_json_value.html": "fel_rewrite_targets_to_json_value in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.get_fel_dependencies.html": "get_fel_dependencies in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.rewrite_fel_references.html": "rewrite_fel_references in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/fn.rewrite_options_from_camel_case_json.html": "rewrite_options_from_camel_case_json in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/index.html": "formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.FelAnalysis.html": "FelAnalysis in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.FelAnalysisError.html": "FelAnalysisError in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.FelAnalysisWarning.html": "FelAnalysisWarning in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.FelRewriteTargets.html": "FelRewriteTargets in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.NavigationTarget.html": "NavigationTarget in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_analysis/struct.RewriteOptions.html": "RewriteOptions in formspec_core::fel_analysis - Rust",
"docs/api/rust/formspec_core/fel_rewrite_exact/fn.rewrite_fel_source_references.html": "rewrite_fel_source_references in formspec_core::fel_rewrite_exact - Rust",
"docs/api/rust/formspec_core/fel_rewrite_exact/fn.rewrite_message_template.html": "rewrite_message_template in formspec_core::fel_rewrite_exact - Rust",
"docs/api/rust/formspec_core/fel_rewrite_exact/index.html": "formspec_core::fel_rewrite_exact - Rust",
"docs/api/rust/formspec_core/index.html": "formspec_core - Rust",
"docs/api/rust/formspec_core/json_artifacts/enum.JsonWireStyle.html": "JsonWireStyle in formspec_core::json_artifacts - Rust",
"docs/api/rust/formspec_core/json_artifacts/fn.changelog_to_json_value.html": "changelog_to_json_value in formspec_core::json_artifacts - Rust",
"docs/api/rust/formspec_core/json_artifacts/fn.extension_usage_issues_to_json_value.html": "extension_usage_issues_to_json_value in formspec_core::json_artifacts - Rust",
"docs/api/rust/formspec_core/json_artifacts/index.html": "formspec_core::json_artifacts - Rust",
"docs/api/rust/formspec_core/json_util/fn.json_object_to_string_map.html": "json_object_to_string_map in formspec_core::json_util - Rust",
"docs/api/rust/formspec_core/json_util/index.html": "formspec_core::json_util - Rust",
"docs/api/rust/formspec_core/option_sets/fn.resolve_option_sets_on_definition.html": "resolve_option_sets_on_definition in formspec_core::option_sets - Rust",
"docs/api/rust/formspec_core/option_sets/index.html": "formspec_core::option_sets - Rust",
"docs/api/rust/formspec_core/path_utils/fn.definition_item_location_to_json_value.html": "definition_item_location_to_json_value in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.item_at_path.html": "item_at_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.item_location_at_path.html": "item_location_at_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.json_definition_item_at_path.html": "json_definition_item_at_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.json_definition_item_location_at_path.html": "json_definition_item_location_at_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.leaf_key.html": "leaf_key in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.normalize_indexed_path.html": "normalize_indexed_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.normalize_path_segment.html": "normalize_path_segment in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.parent_path.html": "parent_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/fn.split_normalized_path.html": "split_normalized_path in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/index.html": "formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/struct.ItemLocation.html": "ItemLocation in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/path_utils/trait.TreeItem.html": "TreeItem in formspec_core::path_utils - Rust",
"docs/api/rust/formspec_core/registry_client/enum.ExtensionCategory.html": "ExtensionCategory in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/enum.RegistryError.html": "RegistryError in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.extension_category_to_wire.html": "extension_category_to_wire in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.parse_registry_entry_status.html": "parse_registry_entry_status in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.registry_entry_count_from_raw.html": "registry_entry_count_from_raw in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.registry_entry_status_to_wire.html": "registry_entry_status_to_wire in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.registry_entry_to_json_value.html": "registry_entry_to_json_value in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.registry_parse_summary_to_json_value.html": "registry_parse_summary_to_json_value in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.validate_lifecycle_transition.html": "validate_lifecycle_transition in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.version_constraint_option.html": "version_constraint_option in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.version_satisfies.html": "version_satisfies in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/fn.well_known_url.html": "well_known_url in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/index.html": "formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/struct.Parameter.html": "Parameter in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/struct.Publisher.html": "Publisher in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/struct.Registry.html": "Registry in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/struct.RegistryEntry.html": "RegistryEntry in formspec_core::registry_client - Rust",
"docs/api/rust/formspec_core/registry_client/types/enum.ExtensionCategory.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/types/enum.RegistryError.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/types/struct.Parameter.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/types/struct.Publisher.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/types/struct.Registry.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/types/struct.RegistryEntry.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/version/fn.version_satisfies.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/wire_json/fn.registry_entry_count_from_raw.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/wire_json/fn.registry_entry_to_json_value.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/wire_json/fn.registry_parse_summary_to_json_value.html": "Redirection",
"docs/api/rust/formspec_core/registry_client/wire_json/fn.version_constraint_option.html": "Redirection",
"docs/api/rust/formspec_core/response_migration/fn.apply_migrations_to_response_data.html": "apply_migrations_to_response_data in formspec_core::response_migration - Rust",
"docs/api/rust/formspec_core/response_migration/index.html": "formspec_core::response_migration - Rust",
"docs/api/rust/formspec_core/runtime_mapping/document/fn.execute_mapping_doc.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/engine/fn.execute_mapping.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/enum.ArrayMode.html": "ArrayMode in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/enum.CoerceType.html": "CoerceType in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/enum.MappingDirection.html": "MappingDirection in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/enum.MappingErrorCode.html": "MappingErrorCode in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/enum.TransformType.html": "TransformType in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/enum.UnmappedStrategy.html": "UnmappedStrategy in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.execute_mapping.html": "execute_mapping in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.execute_mapping_doc.html": "execute_mapping_doc in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.mapping_direction_wire.html": "mapping_direction_wire in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.mapping_result_to_json_value.html": "mapping_result_to_json_value in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.parse_coerce_type.html": "parse_coerce_type in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.parse_mapping_direction_field.html": "parse_mapping_direction_field in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.parse_mapping_direction_wire.html": "parse_mapping_direction_wire in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.parse_mapping_document_from_value.html": "parse_mapping_document_from_value in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/fn.parse_mapping_rules_from_value.html": "parse_mapping_rules_from_value in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/index.html": "formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/parse/fn.parse_coerce_type.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/parse/fn.parse_mapping_direction_field.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/parse/fn.parse_mapping_document_from_value.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/parse/fn.parse_mapping_rules_from_value.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/struct.ArrayDescriptor.html": "ArrayDescriptor in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/struct.MappingDiagnostic.html": "MappingDiagnostic in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/struct.MappingDocument.html": "MappingDocument in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/struct.MappingResult.html": "MappingResult in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/struct.MappingRule.html": "MappingRule in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/struct.ReverseOverride.html": "ReverseOverride in formspec_core::runtime_mapping - Rust",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.ArrayMode.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.CoerceType.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.MappingDirection.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.MappingErrorCode.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.TransformType.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/enum.UnmappedStrategy.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.ArrayDescriptor.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.MappingDiagnostic.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.MappingDocument.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.MappingResult.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.MappingRule.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/types/struct.ReverseOverride.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/wire_json/fn.mapping_direction_wire.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/wire_json/fn.mapping_result_to_json_value.html": "Redirection",
"docs/api/rust/formspec_core/runtime_mapping/wire_json/fn.parse_mapping_direction_wire.html": "Redirection",
"docs/api/rust/formspec_core/schema_validator/enum.DocumentType.html": "DocumentType in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/fn.detect_document_type.html": "detect_document_type in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/fn.json_pointer_to_jsonpath.html": "json_pointer_to_jsonpath in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/fn.schema_validation_plan.html": "schema_validation_plan in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/fn.validate_document.html": "validate_document in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/index.html": "formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/struct.ComponentValidationTarget.html": "ComponentValidationTarget in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/struct.SchemaValidationError.html": "SchemaValidationError in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/struct.SchemaValidationPlan.html": "SchemaValidationPlan in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/struct.SchemaValidationResult.html": "SchemaValidationResult in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/schema_validator/trait.JsonSchemaValidator.html": "JsonSchemaValidator in formspec_core::schema_validator - Rust",
"docs/api/rust/formspec_core/value_coerce/fn.coerce_field_value.html": "coerce_field_value in formspec_core::value_coerce - Rust",
"docs/api/rust/formspec_core/value_coerce/index.html": "formspec_core::value_coerce - Rust",
"docs/api/rust/formspec_core/wire_keys/constant.CHANGELOG_MARKER_FIELD.html": "CHANGELOG_MARKER_FIELD in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/constant.CHANGELOG_MARKER_VERSION.html": "CHANGELOG_MARKER_VERSION in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.assembly_provenance_keys.html": "assembly_provenance_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.changelog_change_keys.html": "changelog_change_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.changelog_root_keys.html": "changelog_root_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.evaluation_batch_keys.html": "evaluation_batch_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.item_location_parent_key.html": "item_location_parent_key in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.lint_document_type_key.html": "lint_document_type_key in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.mapping_result_host_keys.html": "mapping_result_host_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.registry_entry_keys.html": "registry_entry_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/fn.registry_parse_summary_keys.html": "registry_parse_summary_keys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/index.html": "formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_core/wire_keys/struct.ChangelogRootKeys.html": "ChangelogRootKeys in formspec_core::wire_keys - Rust",
"docs/api/rust/formspec_eval/all.html": "List of all items in this crate",
"docs/api/rust/formspec_eval/convert/fn.resolve_value_by_path.html": "resolve_value_by_path in formspec_eval::convert - Rust",
"docs/api/rust/formspec_eval/convert/index.html": "formspec_eval::convert - Rust",
"docs/api/rust/formspec_eval/eval_json/fn.eval_context_from_json_object.html": "Redirection",
"docs/api/rust/formspec_eval/eval_json/fn.eval_host_context_from_json_map.html": "Redirection",
"docs/api/rust/formspec_eval/eval_json/fn.evaluation_result_to_json_value.html": "Redirection",
"docs/api/rust/formspec_eval/eval_json/fn.evaluation_result_to_json_value_styled.html": "Redirection",
"docs/api/rust/formspec_eval/eval_json/struct.EvalHostContextBundle.html": "Redirection",
"docs/api/rust/formspec_eval/fn.eval_context_from_json_object.html": "eval_context_from_json_object in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.eval_host_context_from_json_map.html": "eval_host_context_from_json_map in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition.html": "evaluate_definition in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_full.html": "evaluate_definition_full in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_full_with_context.html": "evaluate_definition_full_with_context in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_full_with_instances.html": "evaluate_definition_full_with_instances in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_full_with_instances_and_context.html": "evaluate_definition_full_with_instances_and_context in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_with_context.html": "evaluate_definition_with_context in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_with_trigger.html": "evaluate_definition_with_trigger in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluate_definition_with_trigger_and_context.html": "evaluate_definition_with_trigger_and_context in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluation_result_to_json_value.html": "evaluation_result_to_json_value in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.evaluation_result_to_json_value_styled.html": "evaluation_result_to_json_value_styled in formspec_eval - Rust",
"docs/api/rust/formspec_eval/fn.extension_constraints_from_registry_documents.html": "extension_constraints_from_registry_documents in formspec_eval - Rust",
"docs/api/rust/formspec_eval/index.html": "formspec_eval - Rust",
"docs/api/rust/formspec_eval/nrb/fn.apply_nrb.html": "apply_nrb in formspec_eval::nrb - Rust",
"docs/api/rust/formspec_eval/nrb/fn.resolve_nrb.html": "resolve_nrb in formspec_eval::nrb - Rust",
"docs/api/rust/formspec_eval/nrb/index.html": "formspec_eval::nrb - Rust",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_full.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_full_with_context.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_full_with_instances.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_full_with_instances_and_context.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_with_context.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_with_trigger.html": "Redirection",
"docs/api/rust/formspec_eval/pipeline/fn.evaluate_definition_with_trigger_and_context.html": "Redirection",
"docs/api/rust/formspec_eval/rebuild/fn.expand_repeat_instances.html": "expand_repeat_instances in formspec_eval::rebuild - Rust",
"docs/api/rust/formspec_eval/rebuild/fn.expand_wildcard_path.html": "expand_wildcard_path in formspec_eval::rebuild - Rust",
"docs/api/rust/formspec_eval/rebuild/fn.parse_variables.html": "parse_variables in formspec_eval::rebuild - Rust",
"docs/api/rust/formspec_eval/rebuild/fn.rebuild_item_tree.html": "rebuild_item_tree in formspec_eval::rebuild - Rust",
"docs/api/rust/formspec_eval/rebuild/index.html": "formspec_eval::rebuild - Rust",
"docs/api/rust/formspec_eval/rebuild/item_tree/fn.parse_variables.html": "Redirection",
"docs/api/rust/formspec_eval/rebuild/item_tree/fn.rebuild_item_tree.html": "Redirection",
"docs/api/rust/formspec_eval/rebuild/repeat_data/fn.expand_wildcard_path.html": "Redirection",
"docs/api/rust/formspec_eval/rebuild/repeat_expand/fn.expand_repeat_instances.html": "Redirection",
"docs/api/rust/formspec_eval/recalculate/fn.recalculate.html": "recalculate in formspec_eval::recalculate - Rust",
"docs/api/rust/formspec_eval/recalculate/fn.topo_sort_variables.html": "topo_sort_variables in formspec_eval::recalculate - Rust",
"docs/api/rust/formspec_eval/recalculate/index.html": "formspec_eval::recalculate - Rust",
"docs/api/rust/formspec_eval/recalculate/variables/fn.topo_sort_variables.html": "Redirection",
"docs/api/rust/formspec_eval/registry_constraints/fn.extension_constraints_from_registry_documents.html": "Redirection",
"docs/api/rust/formspec_eval/revalidate/fn.revalidate.html": "revalidate in formspec_eval::revalidate - Rust",
"docs/api/rust/formspec_eval/revalidate/index.html": "formspec_eval::revalidate - Rust",
"docs/api/rust/formspec_eval/screener_eval/fn.evaluate_screener_document.html": "evaluate_screener_document in formspec_eval::screener_eval - Rust",
"docs/api/rust/formspec_eval/screener_eval/index.html": "formspec_eval::screener_eval - Rust",
"docs/api/rust/formspec_eval/struct.EvalHostContextBundle.html": "EvalHostContextBundle in formspec_eval - Rust",
"docs/api/rust/formspec_eval/types/definition/struct.VariableDef.html": "Redirection",
"docs/api/rust/formspec_eval/types/determination/enum.AnswerState.html": "AnswerState in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/index.html": "formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.AnswerInput.html": "AnswerInput in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.DeterminationRecord.html": "DeterminationRecord in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.InputEntry.html": "InputEntry in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.OverrideBlock.html": "OverrideBlock in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.PhaseResult.html": "PhaseResult in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.RouteResult.html": "RouteResult in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.ScreenerRef.html": "ScreenerRef in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/determination/struct.ValidityBlock.html": "ValidityBlock in formspec_eval::types::determination - Rust",
"docs/api/rust/formspec_eval/types/enum.EvalTrigger.html": "EvalTrigger in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/enum.NrbMode.html": "NrbMode in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/enum.WhitespaceMode.html": "WhitespaceMode in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/evaluation/enum.EvalTrigger.html": "Redirection",
"docs/api/rust/formspec_eval/types/evaluation/struct.EvalContext.html": "Redirection",
"docs/api/rust/formspec_eval/types/evaluation/struct.EvaluationResult.html": "Redirection",
"docs/api/rust/formspec_eval/types/evaluation/struct.ValidationResult.html": "Redirection",
"docs/api/rust/formspec_eval/types/extensions/struct.ExtensionConstraint.html": "Redirection",
"docs/api/rust/formspec_eval/types/index.html": "formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/item_tree/struct.ItemInfo.html": "Redirection",
"docs/api/rust/formspec_eval/types/modes/enum.NrbMode.html": "Redirection",
"docs/api/rust/formspec_eval/types/modes/enum.WhitespaceMode.html": "Redirection",
"docs/api/rust/formspec_eval/types/struct.EvalContext.html": "EvalContext in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/struct.EvaluationResult.html": "EvaluationResult in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/struct.ExtensionConstraint.html": "ExtensionConstraint in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/struct.ItemInfo.html": "ItemInfo in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/struct.ValidationResult.html": "ValidationResult in formspec_eval::types - Rust",
"docs/api/rust/formspec_eval/types/struct.VariableDef.html": "VariableDef in formspec_eval::types - Rust",
"docs/api/rust/formspec_lint/all.html": "List of all items in this crate",
"docs/api/rust/formspec_lint/component_matrix/constant.INPUT_COMPONENTS.html": "INPUT_COMPONENTS in formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/component_matrix/enum.Compatibility.html": "Compatibility in formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/component_matrix/fn.classify_compatibility.html": "classify_compatibility in formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/component_matrix/fn.is_input_component.html": "is_input_component in formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/component_matrix/fn.requires_options_source.html": "requires_options_source in formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/component_matrix/index.html": "formspec_lint::component_matrix - Rust",
"docs/api/rust/formspec_lint/dependencies/fn.analyze_dependencies.html": "analyze_dependencies in formspec_lint::dependencies - Rust",
"docs/api/rust/formspec_lint/dependencies/index.html": "formspec_lint::dependencies - Rust",
"docs/api/rust/formspec_lint/enum.LintMode.html": "LintMode in formspec_lint - Rust",
"docs/api/rust/formspec_lint/enum.LintSeverity.html": "LintSeverity in formspec_lint - Rust",
"docs/api/rust/formspec_lint/expressions/fn.compile_expressions.html": "compile_expressions in formspec_lint::expressions - Rust",
"docs/api/rust/formspec_lint/expressions/fn.compile_screener_expressions.html": "compile_screener_expressions in formspec_lint::expressions - Rust",
"docs/api/rust/formspec_lint/expressions/index.html": "formspec_lint::expressions - Rust",
"docs/api/rust/formspec_lint/expressions/struct.CompiledExpression.html": "CompiledExpression in formspec_lint::expressions - Rust",
"docs/api/rust/formspec_lint/expressions/struct.ExpressionCompilationResult.html": "ExpressionCompilationResult in formspec_lint::expressions - Rust",
"docs/api/rust/formspec_lint/extensions/fn.check_extensions.html": "check_extensions in formspec_lint::extensions - Rust",
"docs/api/rust/formspec_lint/extensions/index.html": "formspec_lint::extensions - Rust",
"docs/api/rust/formspec_lint/fn.lint.html": "lint in formspec_lint - Rust",
"docs/api/rust/formspec_lint/fn.lint_result_to_json_value.html": "lint_result_to_json_value in formspec_lint - Rust",
"docs/api/rust/formspec_lint/fn.lint_with_options.html": "lint_with_options in formspec_lint - Rust",
"docs/api/rust/formspec_lint/fn.sort_diagnostics.html": "sort_diagnostics in formspec_lint - Rust",
"docs/api/rust/formspec_lint/index.html": "formspec_lint - Rust",
"docs/api/rust/formspec_lint/lint_json/fn.lint_result_to_json_value.html": "Redirection",
"docs/api/rust/formspec_lint/pass_component/fn.lint_component.html": "lint_component in formspec_lint::pass_component - Rust",
"docs/api/rust/formspec_lint/pass_component/index.html": "formspec_lint::pass_component - Rust",
"docs/api/rust/formspec_lint/pass_theme/fn.lint_theme.html": "lint_theme in formspec_lint::pass_theme - Rust",
"docs/api/rust/formspec_lint/pass_theme/index.html": "formspec_lint::pass_theme - Rust",
"docs/api/rust/formspec_lint/references/fn.check_references.html": "check_references in formspec_lint::references - Rust",
"docs/api/rust/formspec_lint/references/index.html": "formspec_lint::references - Rust",
"docs/api/rust/formspec_lint/struct.LintDiagnostic.html": "LintDiagnostic in formspec_lint - Rust",
"docs/api/rust/formspec_lint/struct.LintOptions.html": "LintOptions in formspec_lint - Rust",
"docs/api/rust/formspec_lint/struct.LintResult.html": "LintResult in formspec_lint - Rust",
"docs/api/rust/formspec_lint/tree/fn.build_item_index.html": "build_item_index in formspec_lint::tree - Rust",
"docs/api/rust/formspec_lint/tree/index.html": "formspec_lint::tree - Rust",
"docs/api/rust/formspec_lint/tree/struct.ItemRef.html": "ItemRef in formspec_lint::tree - Rust",
"docs/api/rust/formspec_lint/tree/struct.ItemTreeIndex.html": "ItemTreeIndex in formspec_lint::tree - Rust",
"docs/api/rust/formspec_lint/types/enum.LintMode.html": "Redirection",
"docs/api/rust/formspec_lint/types/enum.LintSeverity.html": "Redirection",
"docs/api/rust/formspec_lint/types/fn.sort_diagnostics.html": "Redirection",
"docs/api/rust/formspec_lint/types/struct.LintDiagnostic.html": "Redirection",
"docs/api/rust/formspec_lint/types/struct.LintOptions.html": "Redirection",
"docs/api/rust/formspec_lint/types/struct.LintResult.html": "Redirection",
"docs/api/rust/formspec_rust/all.html": "List of all items in this crate",
"docs/api/rust/formspec_rust/index.html": "formspec_rust - Rust",
"docs/api/rust/formspec_wasm/all.html": "List of all items in this crate",
"docs/api/rust/formspec_wasm/index.html": "formspec_wasm - Rust",
"docs/api/rust/formspec_wasm_bloat_runtime/all.html": "List of all items in this crate",
"docs/api/rust/formspec_wasm_bloat_runtime/fn.main.html": "main in formspec_wasm_bloat_runtime - Rust",
"docs/api/rust/formspec_wasm_bloat_runtime/index.html": "formspec_wasm_bloat_runtime - Rust",
"docs/api/rust/formspec_wasm_bloat_tools/all.html": "List of all items in this crate",
"docs/api/rust/formspec_wasm_bloat_tools/fn.main.html": "main in formspec_wasm_bloat_tools - Rust",
"docs/api/rust/formspec_wasm_bloat_tools/index.html": "formspec_wasm_bloat_tools - Rust",
"docs/api/rust/help.html": "Help",