http://apiblueprint.org/#get-started上示例的结构似乎与 APIary.io 上的结构不同。
任何人都可以评论它们是否不同,如果是,哪种结构是正确的?
例如,
API 蓝图文档结构
1.) 元数据 2.) API 名称和概述 3.) 资源 A.) URI 参数 B.) 模型 1.) 标头 2.) 正文 3.) 模式 C.) 操作 1.) URI 参数 2.) 请求.) 标题 b.) 正文 c.) 架构 3.) 响应 a.) 标题 b.) 正文 c.) 架构 4.) 资源组 A.) 资源
相对
{
"_version": "2.0",
"metadata": [],
"name": "",
"description": "",
"resourceGroups": [
{
"name": "",
"description": "",
"resources": [
{
"name": "",
"description": "",
"uriTemplate": "/message",
"model": {},
"parameters": [],
"actions": [
{
"name": "",
"description": "",
"method": "GET",
"parameters": [],
"examples": [
{
"name": "",
"description": "",
"requests": [],
"responses": [
{
"name": "200",
"description": "",
"headers": [
{
"name": "Content-Type",
"value": "text/plain"
}
],
"body": "Hello World!\n",
"schema": ""
}
]
}
]
}
]
}
]
}
]
}
非常感谢,