是否有工具可以帮助从API蓝图语法制作示例JSON主体?
例如,如果我列出了这样的属性:
+ Attributes (object)
+ data (array)
+ (object)
+ id: 100 (number) - The ID for the particular EPG object
+ title: "Vikings" (string) - The title for the program item
+ lang: "English" (string) - The language that the program is in
+ desc: "Lorem ipsum" (string) - The long description
+ start: 1492700179 (number) - The UNIX epoch timestamp for when the program starts
+ duration: 2816 (number) - For how many seconds the program will last
+ links (array)
+ (object)
+ rel: "self",
+ uri: "/epg/100"
+ (object)
+ rel: "image"
+ uri: "http://cdn.inquisitr.com/wp-content/uploads/2017/02/Vikings-Season-5-1.jpg"
是否有一个工具可以为我生成JSON主体或架构?我用Google搜索并查看了https://apiblueprint.org/tools.html处的工具,但它们似乎都不合适。
答案 0 :(得分:1)
API Blueprint parser能够为您的MSON数据结构生成JSON模式,只需从解析结果中提取它们即可。
你可以manually这样做,但也可以使用tools来做到这一点。
希望它澄清 - 我确保更新工具部分!