0
RAML 1.0の種類に問題があります。バリデーターは私にポジション:0とis_archive:falseを返します。整数とブール値は除外されています。そして、私が形質を使用しているときにそのエラーが発生します。例えばRAML 1.0種類の問題
types:
CatalogObject:
type: object
properties:
id: number
title: string
position: integer
is_archive: boolean
/catalog:
get:
responses:
200:
body:
type: CatalogObject
examples: [{
id: 1,
title: Simple1,
position: 5,
is_archive: true
}, {
id: 2,
title: Simple2,
position: 0,
is_archive: false
}]
:私はそのコードを削除する場合
traits:
catalogItem:
responses:
404:
description: 404 Not Found
は、すべてが正常に動作します。
悪いです、一般的な話題行です。あなたの質問に特定してください – mloskot