如何在 RAML v1.0 中创建数组示例

How to create example of arrays in RAML v1.0

我正在尝试在 RAML v1.0 中创建一个数组示例。 我认为它没有在规范文档中指定。我在那里找不到它。

我在资源示例部分需要此输出:

{ tracks: 
    [{
      track:12
    },
    {
      track:121
    }]
 }

谢谢!

我一般都是这样用的...

tracks
type: array
items:
  properties: 
    releasedate: datetime
    album: string
    artist: string
    year: number