JSON Schema Minimalizer
JSON Schema Minimalizer
JSON schema minimalizer for AI context. Select properties to truncate and customize how content is reduced.
Properties to Minimize
markdown
content
Truncation Mode
Replace with "..."
Truncate after X characters
Character Limit
Input JSON
{ "pages": [ { "index": 1, "markdown": "# LEVERAGING UNLABELED DATA TO PREDICT OUT-OF-DISTRIBUTION PERFORMANCE \n\nSaurabh Garg*<br>Carnegie Mellon University<br>sgarg2@andrew.cmu.edu", "content": "This is a long content field that might need to be truncated for AI context windows", "title": "Research Paper Title", "description": "A detailed description of the research paper methodology and findings", "metadata": { "author": "John Doe", "tags": ["AI", "ML", "Research"] } } ] }
Minimized Output
Copy
{ "pages": [ { "index": 1, "markdown": "# LEVERAGING UNLABELED DATA TO PREDICT OUT-OF-DIST...", "content": "This is a long content field that might need to be...", "title": "Research Paper Title", "description": "A detailed description of the research paper methodology and findings", "metadata": { "author": "John Doe", "tags": ["AI", "ML", "Research"] } } ] }