mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 13:48:10 +00:00
23 lines
425 B
JSON
23 lines
425 B
JSON
{
|
|
"title": "Numeric Range",
|
|
"description": "Enter numbers based on requirements below",
|
|
"type": "object",
|
|
"required": ["compensation"],
|
|
"properties": {
|
|
"compensation": {
|
|
"title": "Compensation (yearly), USD",
|
|
"type": "object",
|
|
"minimum": 0,
|
|
"properties": {
|
|
"min": {
|
|
"type": "number"
|
|
},
|
|
"max": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|