我希望创建一个嵌套数组,其中包含MSON格式的对象,以便与API Blueprint和Apiary一起使用。我的代码看起来是正确的,但是当我在Apiary中呈现它时,我没有得到预期的JSON。
我想要创建的例子:导航有多个类别。每个类别可以有多个子类别。每个类别和子类别都有一个名称。
我为此创建的MSON:
FORMAT: 1A
# Test nested arrays-in-object-arrays
A navigation has multiple categories. Each category can have multiple subcategories.
# GET /navigation
+ Response 200 (application/json)
+ Attributes
+ categories (array)
+ (object)
+ name: Category One (string) - Name of the category
+ subcategories (array)
+ (object)
+ name: Sub category One (string) - Name of the subcategory我希望在JSON中得到的输出:
{
"categories": [
{
"name": "Category One",
"subcategories":
[
{
"name": "Sub category One"
}
]
}
]
}我在Apiary得到的输出
{
"categories": [
{
"name": "Category One",
"subcategories": []
}
]
}发布于 2015-06-17 13:46:56
我在做类似的事情上遇到了困难。最后,我将嵌套类型声明为数据结构并引用它,如下所示:
FORMAT: 1A
# Test nested arrays-in-object-arrays
A navigation has multiple categories. Each category can have multiple subcategories.
# GET /navigation
+ Response 200 (application/json)
+ Attributes
+ categories (array)
+ (object)
+ name: Category One (string) - Name of the category
+ subcategories (array[subcategory])
# Data Structures
## subcategory (object)
+ name: Sub category One (string) - Name of the subcategory它产生:
{
"categories": [
{
"name": "Category One",
"subcategories": [
{
"name": "Sub category One"
}
]
}
]
}发布于 2015-07-28 10:23:43
+ Response 200 (application/json)
+ Attributes(CATEGORIES)
# Data Structures
## SUBCATEGORY (object)
- name: `Sub category One` (string) - Name of the subcategory
## CATEGORIES (object)
- categories (array)
- (object)
- name: `Category One` (string) - Name of the category
- subcategories (array[SUBCATEGORY])https://stackoverflow.com/questions/30890933
复制相似问题