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!

相关推荐
譕痕4 天前
JSONObject与JSONArray封装数据格式区别
java·json
A黄俊辉A4 天前
uniapp webview中实现 app和内嵌的H5双向通信
vue.js·json
伞伞悦读5 天前
【第37期】Python JSON 与配置详解:序列化、反序列化、嵌套结构和配置文件
开发语言·python·json
Mikko75 天前
jackson-databind 升到 2.21.6 就安全了吗?jackson-core 是另一个坐标,它那条 high 全局库至今没收
java·后端·安全·json
尤鸟倦5 天前
OneNote table复制到Excel遇到的各种问题
excel
2501_930707785 天前
使用C#代码使用条件格式为 Excel 隔行设置颜色
c#·excel
leihefeng6 天前
PX04-用 Python 读 Excel 画折线图,还能直接插回 Excel 文件
python·excel
yanlaifan6 天前
Excel中指定单元格不能输入内容的方法
excel
babe小鑫6 天前
信息与计算科学专业应届生面试 怎么证明自己能解决业务问题
学习·r语言·excel
天若有情6737 天前
独立开发复盘:我用 Node.js 做了个在线工具箱
前端·json·工具