RAML 合并说明

RAML Merge descriptions

假设我们有一个类型 Book 声明为

type: object
properties:
  bookId: 
    type: StringId
    description: Book identifier

还有一个类型StringId

type: string
description: UTF-8 string, max length 256 characters

有没有什么方法可以合并 BookStringId 中的 bookId 的描述,以获得像这样呈现的 bookId 的最终描述

Book identifier

UTF-8 string, max length 256 characters

我正在使用 raml2html 工具进行渲染

提前致谢!

目前看来不可能 让我们看看是否可以为此扩展 raml2html https://github.com/raml2html/raml2html/issues/425