UNPKG

@rline/json

Version:
43 lines 1.17 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "NumberPropertyOptions", "allOf": [ { "$ref": "./common-number.schema.json" }, { "type": "object", "properties": { "type": { "const": "number" }, "default": { "type": "number" }, "isIn": { "type": "array", "items": { "oneOf": [ { "type": "number" } ] } }, "isNotIn": { "type": "array", "items": { "oneOf": [ { "type": "number" } ] } } }, "required": [ "type" ] } ] }