RAML ドキュメント (v 1.0) を作成しようとしていますが、最初の段階で継ぎ目が詰まっています。次のように定義したベンダー リソースがあります。
types:
Vendor:
type: object
properties:
name: string
url: string
service_email: string
service_phone: string
image: string
/vendors:
description: foo bar
displayName: Vendor
get:
description: retrieve a list of vendors
responses:
200:
body:
application/json:
type: ???
uniqueItems: true
/{ident}:
get:
description: retrieve a single vendor item identified by ident
responses:
200:
body:
application/json:
type: Vendor
get リクエストでタイプに何を書くべきかわかりません (今は ??? です) API はベンダー タイプのオブジェクトの配列で応答しますが、それを RAML に正確に伝えるにはどうすればよいですか?