如何在 Apiary.io / API 蓝图中指定请求正文属性?
How do you specify request body attributes in Apiary.io / API Blueprint?
我正在尝试弄清楚如何 describe/define attributes/parameters POST/PUT 的请求正文。这是我正在尝试做的一个示例,但我无法在文档中的任何地方找到它(我希望有一种方法可以查看任何 public Apiary 文档的降价):http://docs.bynder.apiary.io/#reference/metaproperties/metaproperty-access/save-new-metaproperty
看到"Request"部分下的描述和属性定义了吗?我该怎么做?
以下是他们可能是如何做到的。请查看 https://github.com/apiaryio/api-blueprint 上的 API 蓝图规范以了解更多信息。
+ Request (application/json)
You can have any description here. This is based on markdown.
+ Even a list
+ `name` Name of the metaproperty, should be alphanumeric only. Uneditable.
+ Body
{
"name": "app"
}
我正在尝试弄清楚如何 describe/define attributes/parameters POST/PUT 的请求正文。这是我正在尝试做的一个示例,但我无法在文档中的任何地方找到它(我希望有一种方法可以查看任何 public Apiary 文档的降价):http://docs.bynder.apiary.io/#reference/metaproperties/metaproperty-access/save-new-metaproperty
看到"Request"部分下的描述和属性定义了吗?我该怎么做?
以下是他们可能是如何做到的。请查看 https://github.com/apiaryio/api-blueprint 上的 API 蓝图规范以了解更多信息。
+ Request (application/json)
You can have any description here. This is based on markdown.
+ Even a list
+ `name` Name of the metaproperty, should be alphanumeric only. Uneditable.
+ Body
{
"name": "app"
}