TOON Format
Token-Optimized Object Notation for AI/LLM payloads.
Why TOON?
Standard JSON is verbose. TOON compresses astrological data by 60% using abbreviated keys and structural optimizations, reducing token usage for LLM prompts.
JSON (180 tokens)
{
"planet": "Sun",
"longitude": 123.45,
"nakshatra": "Ashwini"
}TOON (60 tokens)
{p:"Su",l:123.4,n:"Ash"}