databricks-cli/libs/jsonschema/testdata/schema-load-int/schema-valid.json

15 lines
246 B
JSON
Raw Normal View History

{
"type": "object",
"properties": {
"abc": {
"type": "integer",
"default": 1,
"enum": [1,2,3]
},
"def": {
"type": "integer",
"const": 5
}
}
}