有人能给我一个如何将patternProperties项用于json模式的例子吗?
"Example" :
"type" : "object",
"patternProperties" :
{
<how do I use this>
}
我想在json文件中做的是允许任何以A开头的"Example"子项例如:
{
"Example" :
{
"Aaa" : { ...}
}
}
patternProperties是正确的选择吗?
{
type: 'object',
patternProperties: {
'^A': {
type: 'string',
...
}
}
}