我正在研究 API 蓝图中的新数据结构语法的可能性,尤其是 MSON。是否可以附加或指定类似模式(正则表达式)的东西?在这个主题上没有找到任何东西。
问问题
732 次
1 回答
5
要为您的数据结构提供正则表达式验证,您需要提供具有此验证规则的 JSON 模式。例如,如下所示:
### View a Questions Detail [GET]
+ Response 200 (application/json)
+ Attributes
+ question: `Favourite programming language?` (string)
+ Schema
{
"properties": {
"question": {
"type": "string",
"pattern": "^Favourite.*$"
}
}
}
于 2015-08-11T11:08:50.480 回答