diff --git a/app/app.php b/app/app.php index 2cf4dd1f90..f69b6d8c5c 100644 --- a/app/app.php +++ b/app/app.php @@ -499,27 +499,27 @@ $utopia->get('/v1/open-api-2.json') ], 'paths' => [], 'definitions' => [ - 'Pet' => [ - 'required' => ['id', 'name'], - 'properties' => [ - 'id' => [ - 'type' => 'integer', - 'format' => 'int64', - ], - 'name' => [ - 'type' => 'string', - ], - 'tag' => [ - 'type' => 'string', - ], - ], - ], - 'Pets' => array( - 'type' => 'array', - 'items' => array( - '$ref' => '#/definitions/Pet', - ), - ), + // 'Pet' => [ + // 'required' => ['id', 'name'], + // 'properties' => [ + // 'id' => [ + // 'type' => 'integer', + // 'format' => 'int64', + // ], + // 'name' => [ + // 'type' => 'string', + // ], + // 'tag' => [ + // 'type' => 'string', + // ], + // ], + // ], + // 'Pets' => array( + // 'type' => 'array', + // 'items' => array( + // '$ref' => '#/definitions/Pet', + // ), + // ), 'Error' => array( 'required' => array( 0 => 'code',