VariantMetadata
The string dictionary half of a Variant: every field name used by the values that reference it.
The specification keeps metadata separate from values precisely so it can be shared, and rabosh takes that as far as it goes — one dictionary per SSTable, held in the segment footer, with stored documents carrying value bytes only. For the repetitive JSON that real systems produce this is the largest single space saving in the design, and it turns path resolution into one lookup per segment per query rather than a string comparison per document.
The reader is zero-copy. It holds a MemorySegment — a heap array during ingest, a mapped file region once segments are on disk — and computes offsets into it. Nothing is decoded until a name is actually asked for, and Variant field lookup never asks, because it compares UTF-8 bytes in place.