databricks-cli/libs/jsonschema/testdata/instance-validate/multiple-patterns-schema.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
213 B
JSON
Raw Permalink Normal View History

{
"properties": {
"foo": {
"type": "string",
"pattern": "^[a-c]+$"
},
"bar": {
"type": "string",
"pattern": "^[d-f]+$"
}
}
}