Stdlib module json/parse.vitl

This page is a wiki-style reference for one concrete stdlib file. It explains what the file owns, where it fits in the family, and how to decide whether this is the right surface to depend on.

Visual portrait of json/parse.vitl
Wiki-style portrait for json/parse.vitl.

Family: json

Kind: public stdlib surface

Page style: this reference follows the same “encyclopedic card + portrait + usage contract” logic as the keyword pages, but for stdlib modules.

Summary

Overview

FieldValue
Pathjson/parse.vitl
Familyjson
Kindpublic stdlib surface
Line count78
Declared procedures11
Declared forms/picks3

`json/parse.vitl` is a public stdlib surface inside the `json` family. It should be read as one focused slice of the broader family responsibility: Structured JSON surfaces including parse, parser, types, builder, schema, stringify, and serialize.

Purpose

This file should be chosen because of responsibility, not because its name “sounds close enough”. Inside the json family, it carries one focused part of the contract and keeps that responsibility separate from neighboring concerns.

  • Use this module when structured exchange format is part of the feature, not just an incidental output.
  • A build plan can be validated as domain data first and then exported to JSON in a separate step.
  • A parser page should say how syntax becomes JSON values before serialization details appear.

Taxonomy

Think of this page as a generated encyclopedia entry rather than a hand-written tutorial. The goal is to show what kind of module this is, how dense it is, and what reading strategy makes sense before depending on it.

  • Medium procedure surface: this file groups several related operations behind one namespace.
  • Owns domain vocabulary: the module declares data shapes in addition to executable helpers, so its types are part of the contract.
  • Minimal top-level dependencies: the module reads as mostly self-contained from its opening declarations.
  • Explicit export surface: the file ends with visible export declarations instead of relying only on implicit namespace discovery.

Implementation profile

This profile is inferred directly from the source text. It does not replace reading the file, but it tells you quickly whether the module is mostly declarative, loop-heavy, branch-heavy, or organized around many small exits.

SignalCountWhat it suggests
if0Branching density and local decision-making.
while0Loop-heavy or iterative implementation style.
for0Collection-style traversal at source level.
match0Variant-driven branching or grammar-style decoding.
let1Local state and intermediate value density.
give11Number of explicit exit points and result shaping.

Top-level API inventory

SurfaceItems
Proceduresjson_parse, json_parse_object, json_parse_array, json_parse_string, json_parse_number, json_parse_bool, json_parse_null, json_parse_version, json_parse_ready, json_parse_manifest, json_parse_selftest
FormsJSONParser, JsonParseManifest
PicksJSONValue
Constantsnone declared at top level
Exports*

Imported surfaces

This file does not advertise a top-level `use` surface in its opening declarations. That often means it is either self-contained or an aggregation layer.

Position in family

This file is module 3 of 8 in the json family when ordered by path. By procedure count it ranks 3, and by line count it ranks 3. Those ranks are useful as rough signals of breadth, not as quality judgments.

Declaration map

The declaration map turns raw source into a scan-friendly catalog. It is useful when the file is large enough that a reader wants to orient by kinds of surfaces first.

LineNameKindRole
1vitte/json/parsespaceDeclares the namespace that anchors this file in the stdlib tree.
7JSONValuepickIntroduces a tagged variant type used to model distinct outcomes.
16JSONParserformIntroduces a structured data shape that other procedures can exchange.
22JsonParseManifestformIntroduces a structured data shape that other procedures can exchange.
28json_parseprocTransforms an input representation into a structured internal value.
32json_parse_objectprocTransforms an input representation into a structured internal value.
36json_parse_arrayprocTransforms an input representation into a structured internal value.
40json_parse_stringprocTransforms an input representation into a structured internal value.
44json_parse_numberprocTransforms an input representation into a structured internal value.
48json_parse_boolprocTransforms an input representation into a structured internal value.
52json_parse_nullprocTransforms an input representation into a structured internal value.
56json_parse_versionprocTransforms an input representation into a structured internal value.
60json_parse_readyprocTransforms an input representation into a structured internal value.
64json_parse_manifestprocTransforms an input representation into a structured internal value.
72json_parse_selftestprocTransforms an input representation into a structured internal value.

The table is exhaustive for top-level declarations of the selected kinds. This file declares 15 matching surfaces.

Representative signatures

These signatures are shown in source order so the page keeps the feel of a reference manual, not just a keyword cloud.

  • pick JSONValue { (line 7)
  • form JSONParser { (line 16)
  • form JsonParseManifest { (line 22)
  • proc json_parse(text_value: string) -> JSONValue { (line 28)
  • proc json_parse_object(parser: JSONParser) -> [string] { (line 32)
  • proc json_parse_array(parser: JSONParser) -> [JSONValue] { (line 36)
  • proc json_parse_string(parser: JSONParser) -> string { (line 40)
  • proc json_parse_number(parser: JSONParser) -> f64 { (line 44)
  • proc json_parse_bool(parser: JSONParser) -> int { (line 48)
  • proc json_parse_null(parser: JSONParser) -> int { (line 52)
  • proc json_parse_version() -> string { (line 56)
  • proc json_parse_ready() -> bool { (line 60)
  • proc json_parse_manifest() -> JsonParseManifest { (line 64)
  • proc json_parse_selftest() -> bool { (line 72)

How to use this module

Start by reading the file as an ownership boundary. Ask three questions: what enters this module, what stable types or procedures it exports, and what adjacent module should stay outside of it.

  1. Read space and top-level imports first so the ownership boundary of json/parse.vitl is explicit.
  2. Read declared forms and picks before algorithms so the data vocabulary is stable in your head.
  3. Traverse procedures in source order; the early helpers usually explain the naming and numeric conventions used later.
  4. Use the source landmarks section below as a table of contents when the file is large.
  5. Only after that compare neighbor modules, because the right boundary choice matters more than memorizing one helper name.

User example

This example is generated from the actual stdlib module surface. Its job is not to be the smallest snippet possible; its job is to show a realistic consumer-shaped file that exercises the module and mirrors the language keywords the module itself relies on.

space demo/json_parse
form UserReport {
  label: string,
  ready: bool
}
pick UserOutcome {
  case Ready(message: string)
  case Empty(reason: string)
}
proc run_example() -> UserOutcome {
  let entries = json_parse_object(JSONParser())
  let ready: bool = json_parse_ready()
  let stable: bool = ready and true
    give UserOutcome.Ready("ok")
}
export run_example

Keyword coverage

This table makes the “all keywords of the module” requirement auditable. It compares the detected Vitte keywords in the source file with the generated consumer example above.

KeywordPresent in module sourceUsed in generated user example
spaceyesyes
formyesyes
pickyesyes
procyesyes
letyesyes
giveyesyes
exportyesyes
trueyesyes
andyesyes

The generated snippet exercises every detected Vitte keyword used by this module.

Source shape

space vitte/json/parse
pick JSONValue {
  JsonNull,
  JsonBool(value: int),
  JsonNumber(value: f64),
  JsonString(value: string),
  JsonArray(items: [JSONValue]),
  JsonObject(keys: [string])
}
form JSONParser {

The excerpt is not meant to replace the file. It exists to make the module recognizable at first glance, the same way a Wikipedia infobox helps the reader orient before reading the whole article.

Source landmarks

Large files are easier to retain when they have visible landmarks. When the source contains explicit section banners, they are surfaced here; otherwise the first major declarations are used as anchors.

  • JSON Parsing Module

Source organization

When a file carries its own internal chaptering, those chapters usually reveal the intended reading order better than a flat symbol list. This section reconstructs that organization from the source itself.

Opening declarations

Top-level items: 1. Procedures: 0. Data surfaces: 0. Constants: 0.

First visible names: vitte/json/parse

JSON Parsing Module

Top-level items: 15. Procedures: 11. Data surfaces: 3. Constants: 0.

First visible names: JSONValue, JSONParser, JsonParseManifest, json_parse, json_parse_object, json_parse_array, json_parse_string, json_parse_number, json_parse_bool, json_parse_null

Complete API catalog

This catalog is the exhaustive file-level index for the module. It is intentionally closer to a generated encyclopedia appendix than to a tutorial summary.

Data surfaces

LineNameSignatureRole
7JSONValuepick JSONValue {Introduces a tagged variant type used to model distinct outcomes.
16JSONParserform JSONParser {Introduces a structured data shape that other procedures can exchange.
22JsonParseManifestform JsonParseManifest {Introduces a structured data shape that other procedures can exchange.

Procedures

LineNameSignatureRole
28json_parseproc json_parse(text_value: string) -> JSONValue {Transforms an input representation into a structured internal value.
32json_parse_objectproc json_parse_object(parser: JSONParser) -> [string] {Transforms an input representation into a structured internal value.
36json_parse_arrayproc json_parse_array(parser: JSONParser) -> [JSONValue] {Transforms an input representation into a structured internal value.
40json_parse_stringproc json_parse_string(parser: JSONParser) -> string {Transforms an input representation into a structured internal value.
44json_parse_numberproc json_parse_number(parser: JSONParser) -> f64 {Transforms an input representation into a structured internal value.
48json_parse_boolproc json_parse_bool(parser: JSONParser) -> int {Transforms an input representation into a structured internal value.
52json_parse_nullproc json_parse_null(parser: JSONParser) -> int {Transforms an input representation into a structured internal value.
56json_parse_versionproc json_parse_version() -> string {Transforms an input representation into a structured internal value.
60json_parse_readyproc json_parse_ready() -> bool {Transforms an input representation into a structured internal value.
64json_parse_manifestproc json_parse_manifest() -> JsonParseManifest {Transforms an input representation into a structured internal value.
72json_parse_selftestproc json_parse_selftest() -> bool {Transforms an input representation into a structured internal value.

Exports

LineNameSignatureRole
78*export *Re-exports surfaces that the module wants to expose as part of its public boundary.

Integration boundaries

Within json, this file should remain focused. If a future helper changes the host boundary, scheduling boundary, or data-shape boundary, it probably belongs in a neighbor module instead of being added here by convenience.

  • Family responsibility: Structured JSON surfaces including parse, parser, types, builder, schema, stringify, and serialize.
  • Family architecture role: Use `json` when data must cross a structured textual boundary. This family owns JSON shape and conversion, not business validation itself.

Composition guidance

Choose this module when

  • Choose json/parse.vitl when the main question is owned by this module rather than by transport, storage, orchestration, or user-interface code.
  • Use this module when structured exchange format is part of the feature, not just an incidental output.
  • A build plan can be validated as domain data first and then exported to JSON in a separate step.
  • A parser page should say how syntax becomes JSON values before serialization details appear.

Pause before extending it when

  • Avoid extending this file when the new helper mostly changes the boundary to host I/O, runtime coordination, or foreign integration instead of staying inside json.
  • Check nearby modules such as json/builder.vitl, json/parser.vitl, json/schema.vitl before adding convenience wrappers here.

Relationship table

This table keeps the page closer to a real encyclopedia entry: a module is easier to understand when compared with its nearest alternatives in the same family.

NeighborProceduresData surfacesWhy compare it
json/builder.vitl173Shares the same family boundary but carries a distinct slice of responsibility.
json/parser.vitl110Shares the same family boundary but carries a distinct slice of responsibility.
json/schema.vitl92Shares the same family boundary but carries a distinct slice of responsibility.
json/serialize.vitl101Shares the same family boundary but carries a distinct slice of responsibility.
json/stringify.vitl102Shares the same family boundary but carries a distinct slice of responsibility.
json/types.vitl44Shares the same family boundary but carries a distinct slice of responsibility.
json.vitl4111Shares the same family boundary but carries a distinct slice of responsibility.

Neighbor modules