can someone give me an example of how to use the patternProperties element for a json schema?
"Example" : "type" : "object", "patternProperties" : { <how do I use this> }
What I want to do in the json file is to allow any βExampleβ subitem that starts with A for example :.
{ "Example" : { "Aaa" : { ...} } }
has the patternProperties property the right choice for this?
source share