Skip to content
Novus Examples
json872 B

Deeply Nested JSON

A deeply nested JSON document with objects inside arrays inside objects — for testing recursive parsing and path access.

Preview — first 50 linesjson
{
  "company": "Novus Examples",
  "config": {
    "server": {
      "host": "localhost",
      "port": 8080,
      "tls": {
        "enabled": true,
        "minVersion": "1.2"
      }
    },
    "features": {
      "search": {
        "engine": "fuse",
        "options": {
          "threshold": 0.3,
          "keys": [
            "title",
            "purposes"
          ]
        }
      }
    }
  },
  "teams": [
    {
      "name": "core",
      "members": [
        {
          "name": "Ada",
          "roles": [
            "admin",
            "editor"
          ]
        },
        {
          "name": "Grace",
          "roles": [
            "editor"
          ]
        }
      ]
    },
    {
      "name": "ops",
      "members": [
        {
          "name": "Alan",
          "roles": [
            "viewer"
57 lines total — download for the full file.

Specifications

Structure
nested objects and arrays
Max Depth
5
Valid
true

What is a .json file?

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.

How to use this file

Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.

Generated by generation/data_structured.py. Free for any use, no attribution required — license.