mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
441 B
28 lines
441 B
9 years ago
|
info:
|
||
|
title: Schema with a lots of number properties and restrictions
|
||
|
|
||
|
imports:
|
||
|
|
||
|
properties:
|
||
|
minimum0:
|
||
|
type: integer
|
||
|
minimum: 0
|
||
|
exclusiveMin0:
|
||
|
type: integer
|
||
|
minimum: 0
|
||
|
exclusiveMinimum: true
|
||
|
maximum10:
|
||
|
type: integer
|
||
|
maximum: 10
|
||
|
exclusiveMax10:
|
||
|
type: integer
|
||
|
maximum: 10
|
||
|
exclusiveMaximum: true
|
||
|
even:
|
||
|
type: integer
|
||
|
multipleOf: 2
|
||
|
odd:
|
||
|
type: integer
|
||
|
not:
|
||
|
multipleOf: 2
|