Understanding JSON Formats - What JSON to Excel Supports

Welcome to part 5 of our JSON to Excel series! So far, we've covered the various tools available: Web App, Excel Add-in, and WPS Add-in. Today, we're diving into the technical side by exploring exactly what JSON formats JSON to Excel supports and how to ensure your data is ready for conversion.

The JSON Format Requirements

JSON to Excel is designed to handle a wide variety of JSON structures, but it does have specific requirements. Understanding these requirements will help you prepare your data and avoid conversion errors.

Core Requirements

At its core, JSON to Excel requires:

  1. Valid JSON: The input must be syntactically correct JSON
  2. Array or Object: The top-level structure must be either an array of objects or a single object
  3. Object Properties: Each object should contain key-value pairs
  4. Data Types: Values can be strings, numbers, booleans, null, arrays, or nested objects

Supported JSON Structures

Structure 1: Array of Objects (Most Common)

This is the most common and recommended format for JSON to Excel:

json 复制代码
[
  {
    "name": "John Doe",
    "age": 30,
    "email": "john@example.com"
  },
  {
    "name": "Jane Smith",
    "age": 25,
    "email": "jane@example.com"
  }
]

Characteristics:

  • Wrapped in square brackets []
  • Contains 1 to 1000 objects
  • Each object represents one row in Excel
  • Each property becomes a column in Excel

Requirements:

  • Minimum: 1 object
  • Maximum: 1000 objects
  • Each object: 1 to 100 properties
  • Objects cannot be empty

Structure 2: Single Object

JSON to Excel also supports a single object:

json 复制代码
{
  "name": "John Doe",
  "age": 30,
  "email": "john@example.com"
}

Characteristics:

  • Wrapped in curly braces {}
  • Contains 1 to 100 properties
  • Converted to a single row in Excel

Requirements:

  • Minimum: 1 property
  • Maximum: 100 properties
  • Object cannot be empty

Supported Data Types

JSON to Excel handles all standard JSON data types:

1. Strings

json 复制代码
{
  "name": "John Doe",
  "city": "New York"
}
  • Converted to text cells in Excel
  • Preserves formatting and special characters

2. Numbers

json 复制代码
{
  "age": 30,
  "price": 99.99,
  "quantity": 5
}
  • Converted to numeric cells in Excel
  • Integers and decimals are both supported
  • Can be used in Excel calculations

3. Booleans

json 复制代码
{
  "active": true,
  "verified": false
}
  • Converted to TRUE/FALSE in Excel
  • Can be used in logical formulas

4. Null Values

json 复制代码
{
  "middleName": null,
  "phone": null
}
  • Converted to blank cells in Excel
  • Useful for missing or optional data

5. Arrays

json 复制代码
{
  "tags": ["javascript", "python", "sql"],
  "scores": [85, 92, 78]
}
  • Converted to string representation: ["javascript","python","sql"]
  • Not automatically expanded (use Nested JSON Mode for complex structures)

6. Nested Objects

json 复制代码
{
  "user": {
    "name": "John",
    "contact": {
      "email": "john@example.com",
      "phone": "555-1234"
    }
  }
}
  • In Flat Mode: Converted to string: {"name":"John","contact":{"email":"john@example.com","phone":"555-1234"}}
  • In Nested Mode: Flattened with delimiters: user.name, user.contact.email, user.contact.phone

Valid JSON Examples

Example 1: Simple Flat Array

json 复制代码
[
  {"id": 1, "name": "Product A", "price": 19.99},
  {"id": 2, "name": "Product B", "price": 29.99},
  {"id": 3, "name": "Product C", "price": 39.99}
]

✅ Valid - Simple array of objects with consistent properties

Example 2: Objects with Different Properties

json 复制代码
[
  {"id": 1, "name": "John", "age": 30},
  {"id": 2, "name": "Jane", "city": "New York"}
]

✅ Valid - Objects can have different properties; Excel will have all possible columns

Example 3: Nested Structures

json 复制代码
[
  {
    "id": 1,
    "customer": {
      "name": "John",
      "address": {
        "street": "123 Main St",
        "city": "New York"
      }
    }
  }
]

✅ Valid - Nested objects work with Nested JSON Mode

Example 4: Mixed Data Types

json 复制代码
[
  {
    "id": 1,
    "name": "John",
    "active": true,
    "score": 95.5,
    "tags": ["vip", "premium"],
    "metadata": null
  }
]

✅ Valid - All data types are supported

Invalid JSON Examples

Example 1: Not Wrapped in Array

json 复制代码
{"name": "John"},{"name": "Jane"}

❌ Invalid - Must be wrapped in array [] or be a single object

Example 2: Empty Array

json 复制代码
[]

❌ Invalid - Array must contain at least one object

Example 3: Array with Non-Object Elements

json 复制代码
[1, 2, 3]

❌ Invalid - Array elements must be objects

json 复制代码
["a", "b", "c"]

❌ Invalid - Array elements must be objects

Example 4: Array with Empty Object

json 复制代码
[{}]

❌ Invalid - Objects cannot be empty

Example 5: Array with Null

json 复制代码
[null]

❌ Invalid - Array elements must be objects

Example 6: Mixed Types in Array

json 复制代码
[{"name": "John"}, "text"]

❌ Invalid - All array elements must be objects

JSON Schema

For developers who want to validate their JSON programmatically, here's the JSON Schema that JSON to Excel follows:

json 复制代码
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "oneOf": [
    {
      "type": "array",
      "minItems": 1,
      "maxItems": 1000,
      "items": {
        "type": "object",
        "minProperties": 1,
        "maxProperties": 100,
        "additionalProperties": true
      },
      "not": {
        "contains": {
          "anyOf": [
            {"type": "array"},
            {"type": "null"},
            {"type": "string"},
            {"type": "number"},
            {"type": "boolean"},
            {"type": "object", "maxProperties": 0}
          ]
        }
      }
    },
    {
      "type": "object",
      "minProperties": 1,
      "maxProperties": 100,
      "additionalProperties": true,
      "not": {
        "anyOf": [
          {"type": "array"},
          {"type": "null"},
          {"type": "string"},
          {"type": "number"},
          {"type": "boolean"},
          {"type": "object", "maxProperties": 0}
        ]
      }
    }
  ]
}

Preparing Your JSON for Conversion

Step 1: Validate Your JSON

Before converting, ensure your JSON is valid:

  1. Check Syntax: Verify brackets, braces, and commas are correct
  2. Use a Validator: Use online tools like jsonlint.com
  3. Preview in JSON to Excel: The Web App shows a preview before conversion

Step 2: Check Structure Requirements

Verify your JSON meets the requirements:

  • Array of objects or single object
  • 1-1000 objects (for arrays)
  • 1-100 properties per object
  • No empty objects

Step 3: Handle Edge Cases

Missing Properties: If some objects lack properties that others have, that's fine - Excel will have blank cells for those values.

Nested Objects: Decide whether to use Flat or Nested mode based on your needs.

Arrays in Values: These will be converted to strings. If you need them expanded, consider restructuring your JSON.

Common Issues and Solutions

Issue 1: Too Many Objects

Problem: Your JSON has more than 1000 objects.

Solution: Split your JSON into multiple files, each with 1000 or fewer objects, then use batch processing.

Issue 2: Too Many Properties

Problem: Your objects have more than 100 properties.

Solution: Consider whether all properties are necessary. You might be able to restructure your data or split it into multiple related JSON files.

Issue 3: Deeply Nested Structures

Problem: Your JSON has very deep nesting (more than 20 levels).

Solution: Use the Max Depth setting to control how deep the conversion goes, or restructure your JSON to be less nested.

Issue 4: Invalid JSON

Problem: Your JSON has syntax errors.

Solution: Use a JSON validator to find and fix syntax errors before attempting conversion.

Best Practices

1. Consistent Property Names

Use consistent property names across objects for better Excel column organization.

2. Appropriate Data Types

Choose the right data types for your values (numbers for numeric data, booleans for true/false, etc.).

3. Reasonable Nesting

Avoid excessive nesting. If you have more than 5-6 levels, consider restructuring.

4. Clear Property Names

Use descriptive property names that will make sense as Excel column headers.

5. Validate Before Conversion

Always validate your JSON before attempting conversion to save time and avoid errors.

Next Steps

Now that you understand what JSON formats are supported, you're ready to dive deeper into the conversion modes. In our next post, we'll explore the differences between Flat and Nested JSON conversion modes and when to use each one.

Ready to convert your JSON? Visit the JSON to Excel Web App to try it out!

相关推荐
维天说7 小时前
CLI-Switch 2026年3月版历史设计:Hook、TTY 隔离与 JSON 状态
java·服务器·json
噢,我明白了8 小时前
java中Excel的导入和导出(EasyExcel)
java·开发语言·excel
REST_302710 小时前
告别Excel孤岛:一款任务链路可视化工具带来的真实改变
大数据·微服务·云计算·编辑器·excel·动态规划
蓝创工坊Blue Foundry17 小时前
多个同模板 PDF,怎样批量提取同一类字段到 Excel
运维·数据库·pdf·自动化·ocr·excel
一颗小行星-2 天前
为什么有的JSON可以带注释?
json
蓝创工坊Blue Foundry2 天前
图片文字提取到 Excel:批量任务如何先定义要交付的字段
运维·服务器·开发语言·数据库·自动化·ocr·excel
用户298698530142 天前
Python 实现 Excel 与 Markdown 互转的实用指南
后端·python·excel
2501_930707782 天前
如何使用C#代码在 Excel 中编辑或删除批注
excel
SunnyDays10112 天前
Python Excel 切片器操作详解:自动创建智能交互式报表
python·excel·数据筛选·切片器
观远数据2 天前
Excel到数据资产池:文件数据入湖的治理规范怎么建
前端·javascript·excel