RAML 1.0内部类型的数组

时间:2016-05-11 07:43:34

标签: arrays inline raml

我有一个api有两个主要资源:ProjectProduct,它们是两个不同的资源,它们之间只有一个链接。

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创建内联类型数组吗?

0 个答案:

没有答案