我有一个api有两个主要资源:Project
和Product
,它们是两个不同的资源,它们之间只有一个链接。
Product:
type: object
properties:
name: string
projects: ProjectReference[]
ProjectReference:
type: object
properties:
identifier: string
links: Links[]
Project:
type: object
properties:
identifier: string
members: string[]
product:
type: object
properties:
name: string
links: Link[]
Link:
type: object
properties:
rel: string
href: string
我想将ProjectReference
类型内联到Product
。但是,我还没有找到如何创建内联类型的数组。
我们可以使用RAML 1.0创建内联类型数组吗?