我们有这个json模式草案。我想获得我的JSON数据的样本,并为JSON模式生成一个框架,我可以手动返工,添加像描述,要求等东西,这不能从具体的例子推断。

例如,在我的输入example.json中:

{
    "foo": "lorem", 
    "bar": "ipsum"
}

我将运行我的json_schema_generator工具,并将得到:

{ "foo": {
    "type" : "string",
    "required" : true,
    "description" : "unknown"
  },
  "bar": {
    "type" : "string",
    "required" : true,
    "description" : "unknown"
  }
}

这个例子是手动编码的,所以可能会有错误。 是否有任何工具可以帮助我转换JSON -> JSON模式?


当前回答

GenSON (PyPI | Github)是一个JSON模式生成器,可以从多个对象生成单个模式。您还可以使用它合并模式。它是用Python编写的,并附带CLI工具。

(完全披露:我就是作者。)

其他回答

GenSON (PyPI | Github)是一个JSON模式生成器,可以从多个对象生成单个模式。您还可以使用它合并模式。它是用Python编写的,并附带CLI工具。

(完全披露:我就是作者。)

For the offline tools that support multiple inputs, the best I've seen so far is https://github.com/wolverdude/GenSON/ I'd like to see a tool that takes filenames on standard input because I have thousands of files. However, I run out of open file descriptors, so make sure the files are closed. I'd also like to see JSON Schema generators that handle recursion. I am now working on generating Java classes from JSON objects in hopes of going to JSON Schema from my Java classes. Here is my GenSON script if you are curious or want to identify bugs in it.

#!/bin/sh
ulimit -n 4096
rm x3d*json
cat /dev/null > x3d.json
find ~/Downloads/www.web3d.org/x3d/content/examples -name '*json' -      print| xargs node goodJSON.js | xargs python bin/genson.py -i 2 -s     x3d.json >> x3d.json
split -p '^{' x3d.json x3d.json
python bin/genson.py -i 2 -s x3d.jsonaa -s x3d.jsonab /Users/johncarlson/Downloads/www.web3d.org/x3d/content/examples/X3dForWebAuthors/Chapter02-GeometryPrimitives/Box.json > x3dmerge.json 

有一个python工具可以为给定的JSON生成JSON Schema: https://github.com/perenecabuto/json_schema_generator

看到这个问题得到了相当多的赞,我添加了新的信息(我不确定这是否是新的,但我当时找不到它)

JSON模式的家 Python JSON模式验证的实现 相关黑客新闻讨论 python中的json模式生成器,这就是我正在寻找的。

几个月后,我得到的最好答案就是我的简单工具。它是原始的,但功能。

我想要的是类似的东西。JSON数据可以为JSON模式提供一个框架。我还没有实现它,但是应该可以给出一个现有的JSON模式作为基础,这样现有的JSON模式加上JSON数据就可以生成一个更新的JSON模式。如果没有这样的模式作为输入,则完全采用默认值。

这在迭代开发中非常有用:在工具第一次运行时,JSON模式是虚拟的,但是可以根据数据的演变自动改进它。