我正在定义 RAML 规范。我有一个属性来保存一个字符串数组。我想制定一个规则,数组中的字符串值最多只能有 3 个字符(例如:regions: ["wes","nrh"]
有效。regions: ["lenghthyvalue", "anotherLenghthyvalue"]
无效)。我如何在 RAML 中处理它。我当前的代码如下:
regions:
type: string []
required: true
可用的属性只有 maxItems。如何限制项目的字符长度?
我使用 raml 1.0