我有一个简单的JSON对象,可以包含预先不知道确切值的键/值。它们依赖于某些服务器端进程。我如何在招摇中模拟这个?
JSON的一个例子是:
...
,message: "invalid length. Must be in between {min} and {max}"
,attributes: {
min: 0
,max: 6
}
...
另一个例子是:
...
,message: "You must fill out this field as well because {field} has a value"
,attributes: {
field: "age"
}
...
答案 0 :(得分:6)
以下解决方案仅适用于Swagger 2.0。
如下所述定义模型:
{
"type": "object",
"properties": {
"message": {
"type": "string"
},
"attributes": {
"type": "object",
"additionalProperties": {}
}
}
}
这将attribtues
描述为属性映射,其中值可以是任何值(字符串,数字,数组甚至是对象)。