我想在对象数组中使用具有未知属性名称的JSON模式。 一个很好的例子是网页的元数据:
"meta": {
"type": "array",
"items": {
"type": "object",
"properties": {
"unknown-attribute-1": {
"type": "string"
},
"unknown-attribute-2": {
"type": "string"
},
...
}
}
}
请提出任何想法,或以其他方式达成相同的目标?
答案 0 :(得分:41)
使用patternProperties
代替properties
。在下面的示例中,模式匹配正则表达式.*
接受任何属性名称,我只允许string
使用null
或"additionalProperties": false
类型。
"patternProperties": {
"^.*$": {
"anyOf": [
{"type": "string"},
{"type": "null"}
]
}
},
"additionalProperties": false
答案 1 :(得分:6)
您可以对未明确定义的属性进行约束。以下架构强制执行" meta"是一个对象数组,其属性的类型为string:
{
"properties" : {
"meta" : {
"type" : "array",
"items" : {
"type" : "object",
"additionalProperties" : {
"type" : "string"
}
}
}
}
}
如果您只想拥有一个字符串数组,可以使用以下模式:
{
"properties" : {
"meta" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
}
答案 2 :(得分:1)
@jruizaranguren的解决方案适合我。 虽然我是定义架构的人,但我选择了另一种解决方案
"meta": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
}
}
我将对象转换为名称 - 值对象的数组 有效JSON的示例:
"meta": [
[
{
"name": "http-equiv",
"value": "Content-Type"
},
{
"name": "content",
"value": "text/html; charset=UTF-8"
}
],
[
{
"name": "name",
"value": "author"
},
{
"name": "content",
"value": "Astrid Florence Cassing"
}
]
]