1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

fix openAPI spec

This commit is contained in:
Damodar Lohani 2021-05-21 16:32:08 +05:45
parent 09874e9c5d
commit 546214012d

View file

@ -277,7 +277,7 @@ class OpenAPI3 extends Format
$node['schema']['x-example'] = 'password';
break;
case 'Utopia\Validator\Range': /** @var \Utopia\Validator\Range $validator */
$node['type'] = $validator->getType() === Validator::TYPE_FLOAT ? 'number': $validator->getType();
$node['schema']['type'] = $validator->getType() === Validator::TYPE_FLOAT ? 'number': $validator->getType();
$node['schema']['format'] = $validator->getType() == Validator::TYPE_INTEGER ? 'int32' : 'float';
$node['schema']['x-example'] = $validator->getMin();
break;