Basic JSON Examplesbeginner

Minimal Object JSON Example

A tiny valid JSON object that is perfect for tutorials, docs, smoke tests, and first API experiments.

Real-world use case: Use this when you need the smallest realistic JSON object for docs, onboarding, or parser checks.
1{
2 "id": 1,
3 "name": "Alice",
4 "active": true
5}

Where this shape shows up in production

API smoke tests
Introductory documentation
Small config payloads

Related examples