JTON: A Token-Efficient JSON Superset with Zen Grid Tabular Encoding for Large Language Models

arXiv cs.AI / 4/8/2026

💬 OpinionDeveloper Stack & InfrastructureIdeas & Deep AnalysisModels & Research

Key Points

  • The paper introduces JTON, a strict JSON superset that reduces LLM token overhead by eliminating repetitive column key names in tabular arrays via the “Zen Grid” encoding scheme.
  • Across seven real-world domains, Zen Grid cuts token counts by 15–60% compared with JSON compact (28.5% average; 32% when using bare_strings).
  • LLM evaluation shows a small net accuracy improvement (+0.3 percentage points) on comprehension tests across 10 models, with generation tests achieving 100% syntactic validity in both few-shot and zero-shot.
  • The authors provide a public Rust/PyO3 reference implementation featuring SIMD-accelerated parsing (reported at ~1.4x faster than Python’s json module) plus a large test suite and published experimental data.

Abstract

When LLMs process structured data, the serialization format directly affects cost and context utilization. Standard JSON wastes tokens repeating key names in every row of a tabular array--overhead that scales linearly with row count. This paper presents JTON (JSON Tabular Object Notation), a strict JSON superset whose main idea, Zen Grid, factors column headers into a single row and encodes values with semicolons, preserving JSON's type system while cutting redundancy. Across seven real-world domains, Zen Grid reduces token counts by 15-60% versus JSON compact (28.5% average; 32% with bare_strings). Comprehension tests on 10 LLMs show a net +0.3 pp accuracy gain over JSON: four models improve, three hold steady, and three dip slightly. Generation tests on 12 LLMs yield 100% syntactic validity in both few-shot and zero-shot settings. A Rust/PyO3 reference implementation adds SIMD-accelerated parsing at 1.4x the speed of Python's json module. Code, a 683-vector test suite, and all experimental data are publicly available.