我有一个RAML 1.0类型定义:
types:
uuid: string
url: string
html: string
Credentials:
description: Authentication credentials for a user
type: object
properties:
userName: string
password: string
使用端点定义将对象作为POST JSON主体:
/login:
is: [mobile]
displayName: Authentication
post:
description: Login
body:
application/json:
type: Credentials
如果我将其导入Paw,会显示我的端点,但自定义类型的字段未正确显示为JSON对象;相反,会显示一个“JSF”标签,然后会显示一个弹出窗口,似乎表明架构未正确引用:
这是否适用于当前版本的Paw(3.1.3)和RAML 1.0?我的RAML文件是否有变化,可以正确导入?
谢谢!