API 蓝图(例如:Apiary)- 从蓝图生成 json 主体的工具
API blueprint (e.g.: Apiary) - tool to generate json body from blueprint
是否有工具可以帮助根据 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 正文或架构?我在 https://apiblueprint.org/tools.html 上搜索并查看了这些工具,但其中 none 似乎合适。
API Blueprint parser 能够为您的 MSON 数据结构生成 JSON 模式,只需从解析结果中提取它们即可。
你可以manually but there are as well ready to use tools做到这一点。
希望它能说明问题 - 我会确保更新工具部分!
是否有工具可以帮助根据 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 正文或架构?我在 https://apiblueprint.org/tools.html 上搜索并查看了这些工具,但其中 none 似乎合适。
API Blueprint parser 能够为您的 MSON 数据结构生成 JSON 模式,只需从解析结果中提取它们即可。
你可以manually but there are as well ready to use tools做到这一点。
希望它能说明问题 - 我会确保更新工具部分!