Schema param_constraint.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"anyOf": [
{ },
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Describes an Integer Parameter Constraint",
"properties": {
"enum": {
"items": {
"type": "integer"
},
"minItems": 1,
"type": "array"
},
"maximum": {
"type": "integer"
},
"minimum": {
"type": "integer"
}
},
"title": "Integer Parameter Constraint",
"type": "object"
},
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Describes a Number Parameter Constraint",
"properties": {
"enum": {
"items": {
"type": "number"
},
"minItems": 1,
"type": "array"
},
"maximum": {
"type": "number"
},
"minimum": {
"type": "number"
}
},