This is an automated email from the ASF dual-hosted git repository. skperez pushed a commit to branch SDAP-473 in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
commit 8abe07272b2b280fbb71568c8800a2fe61fb6583 Author: skorper <[email protected]> AuthorDate: Wed Jun 28 14:49:08 2023 -0700 Update openapi spec --- analysis/webservice/apidocs/openapi.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/analysis/webservice/apidocs/openapi.yml b/analysis/webservice/apidocs/openapi.yml index f125577..0ffe669 100644 --- a/analysis/webservice/apidocs/openapi.yml +++ b/analysis/webservice/apidocs/openapi.yml @@ -535,6 +535,22 @@ paths: type: string enum: ['CSV', 'NETCDF', 'JSON'] example: CSV + - in: query + name: pageNum + description: | + Which page of results should be returned to user. + required: false + schema: + type: integer + default: 1 + - in: query + name: pageSize + description: | + How many results should be returned to user in a single page. One entry is equal to one primary matched point. + required: false + schema: + type: integer + default: 1000 responses: '200': description: Successful operation
