5.4 KiB
JSON Output
This document is the durable JSON output file-format contract produced by the
implemented json output module and written by the CLI.
The output module produces the logical bundle described here. The CLI's physical placement and lifecycle for that bundle are defined in Operations.
Files
The json output module writes:
index.jsonmanifest.jsonlanes/<lane-id>.json, one file per normalized raw lane outputrejected.jsonwarnings.json
Files are pretty-printed JSON with a trailing newline when the payload is JSON.
Logical file paths are relative, slash-separated, and may not contain ...
index.json
Shape:
{
"manifest_file": "manifest.json",
"output_files": [
{
"lane_id": "spells",
"media_type": "application/json",
"file": "lanes/spells.json",
"module_key": "noop",
"schema_id": "notarius.dnd.spells",
"schema_name": "notarius_dnd_spells_v1",
"schema_version": "v1"
}
],
"rejected_file": "rejected.json",
"warnings_file": "warnings.json"
}
output_files is sorted by lane ID. Output file names are produced by
sanitizing the lane ID:
- characters outside
A-Z,a-z,0-9,.,_, and-become_; - repeated
..sequences are replaced; - leading and trailing
.,_, and-are trimmed; - empty sanitized names are rejected;
- two lanes that sanitize to the same output file are rejected.
manifest_file, rejected_file, and warnings_file contain the fixed paths
shown above. Each output_files entry requires lane_id and file. It also
contains the normalized payload media_type, normalizer module_key, and
response schema_id, schema_name, and schema_version when those values are
available.
manifest.json
manifest.json contains a run manifest. This abridged example shows its core
structure:
{
"run_id": "run-123",
"pipeline_id": "dnd-session",
"artifact_lanes": [
{
"id": "spells",
"extractor": "dnd/spells",
"merger": "appendorder",
"normalizer": "noop"
}
],
"validation_status": "approved",
"started_at": "2026-01-01T00:00:00Z",
"completed_at": "2026-01-01T00:00:01Z"
}
Fields with empty values may be omitted by JSON encoding.
The manifest fields are:
run_id,pipeline_id, andpipeline_digest: run and resolved-pipeline identity;input_module,chunker,extractors,merger,normalizer, andoutput_encoder: resolved module keys;module_metadataandartifact_lanes: module and per-lane provenance, including prompt and response-schema provenance when provided;validator_chains: resolved validation points and validators;source_digestsandreferences: source and reference provenance;normalized_outputsandrejected_outputs: payload-free result summaries;llm_profiles: selected profile IDs and provider or model names when available;metadata: the effective promptsession_id;validation_status:approvedorrejected;started_atandcompleted_at: UTC run timestamps.
source_digests contains source document digests only. Bound references are
recorded separately under references, which contains provenance only: target
stage, lane ID when present, slot name, origin type and URI, digest, media
type, byte size, and binding source. Reference content is not written to
durable output.
Reference stage is chunk, extract, merge, or normalize. lane_id is
omitted for chunk references and present for extract, merge, and normalize
references.
validation_status is approved when no raw outputs were rejected and
rejected when one or more raw outputs were rejected.
validator_chains records the resolved validator chain for each validation
point. Entries include stage, lane ID when applicable, module key, and validators
with key and execution class. Empty chains are recorded with an empty
validators array, including chains resolved from explicit empty config
overrides.
normalized_outputs summarizes each normalized lane output without embedding
payload bytes. Entries include lane ID, normalizer module key, source ID, media
type, and response schema provenance where available.
rejected_outputs summarizes rejected module outputs without embedding raw
payload bytes. Entries include stage, lane, module, chunk, validator or reason,
message, attempt count, and optional diagnostic artifact path.
Output Payload Files
Each normalized raw output is written to lanes/<sanitized-lane-id>.json.
The JSON output encoder accepts only application/json normalized outputs. The
file contains the raw JSON payload pretty-printed.
The schema of each lane payload is owned by that artifact contract. For the current D&D spell lane, see D&D Spell Raw Output.
rejected.json
Shape:
{
"rejected": []
}
When raw output validation rejects an output, each entry contains stage and
message. It includes lane_id, module_key, chunk_id, chunk_index,
validator_name, reason_code, attempt_count, and
diagnostic_artifact_path when applicable.
warnings.json
Shape:
{
"warnings": [
{
"scope": "extract",
"reason_code": "example",
"message": "human-readable warning"
}
]
}
warnings is an empty array when no warnings are reported.
Each warning requires reason_code and message; scope is omitted when it is
empty.