对象的蓝图数组(养蜂场)
Blueprint array of objects (apiary)
我正在尝试使用基于
的语法描述对象数组
+ Response 200 (application/json)
+ Attributes
+ time (object, required)
+ default (string, required) - `HH:MM` default time
+ times (array, required) - Array of times for date
+ time (object)
+ value: 12:00 (string, required) - `HH:MM` time value
+ occupied: true (boolean, required)
但是养蜂场渲染的是
{
"time": {
"default": null,
"times": [
{
"undefined": null
}
]
}
是bug还是我听错了?
MSON 支持仍处于测试阶段,将能够在接下来的几周内处理这些情况。
您可以通过这种方式安全地描述您的结构,文档很快就会跟上。
我正在尝试使用基于
+ Response 200 (application/json)
+ Attributes
+ time (object, required)
+ default (string, required) - `HH:MM` default time
+ times (array, required) - Array of times for date
+ time (object)
+ value: 12:00 (string, required) - `HH:MM` time value
+ occupied: true (boolean, required)
但是养蜂场渲染的是
{
"time": {
"default": null,
"times": [
{
"undefined": null
}
]
}
是bug还是我听错了?
MSON 支持仍处于测试阶段,将能够在接下来的几周内处理这些情况。
您可以通过这种方式安全地描述您的结构,文档很快就会跟上。