• ARTICLE
  • STRING
  • CONVERTER
  • ENCRYPT
  • NETWORK
  • MORE
    CHART
    MATH
    COORDINATE
    IMAGE
    FILE
  • ARTICLE
    STRING
    CONVERTER
    ENCRYPT
    NETWORK
    MORE
    CHART
    MATH
    COORDINATE
    IMAGE
    FILE
logo Online Tools
0 Comments Favorite Copy Link Share

Random JSON Data Generator Online


JSON Schema

JSON Data

Random JSON Data Generator Online-summary

Use the format defined by JSON Schema to randomly generate JSON data.

Random JSON Data Generator Online-instructions

The online random JSON data generation tool uses the input JSON Schema definition or opens the JSON Schema file to randomly generate JSON data that meets the format requirements.

  1. Open File : Open JSON schema file. The supported file encoding is UTF-8 encoding.
  2. Format : Format the JSON data and JSON schema.
  3. Compress : Compress the JSON data and JSON schema.
  4. Generate : Generate random JSON data, and the data format meets the definition of JSON Schema.
  5. Download : Download JSON data locally. The generated file is encoded as UTF-8.
  6. JSON Schema Specification reference documents.
  7. Support the use of faker.js generates special field data. For the configuration of the faker.js parameter, refer to the faker.js documentation. For example:
    1. Generate email address
    
    {
      "type": "string",
      "faker": "internet.email"
    }
                                
    2. Generate money string
    
    {
      "type": "string",
      "faker": {
        "finance.amount": [100, 10000, 2, "$"]
      }
    }