diff --git a/app/app.php b/app/app.php index 00b34fab16..22a97bcc29 100644 --- a/app/app.php +++ b/app/app.php @@ -681,7 +681,7 @@ $utopia->get('/v1/open-api-2.json') case 'Utopia\Validator\Range': /* @var $validator \Utopia\Validator\Range */ $node['type'] = 'integer'; $node['format'] = 'int32'; - $node['x-example'] = rand($validator->getMin(), $validator->getMax()); + $node['x-example'] = $validator->getMin(); break; case 'Utopia\Validator\Numeric': $node['type'] = 'integer';