Skip to content

Commit 0e2c857

Browse files
committed
Explicitly document that page index start at 0
1 parent 40c799c commit 0e2c857

File tree

14 files changed

+28
-27
lines changed

14 files changed

+28
-27
lines changed

connector/src/main/openapi/connector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ paths:
5454
parameters:
5555
- name: page
5656
in: query
57-
description: page number to query
57+
description: page number to query (first page is at index 0)
5858
required: false
5959
schema:
6060
type: integer

dataset/src/main/openapi/dataset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ paths:
6262
parameters:
6363
- name: page
6464
in: query
65-
description: page number to query
65+
description: page number to query (first page is at index 0)
6666
required: false
6767
schema:
6868
type: integer
@@ -100,7 +100,7 @@ paths:
100100
parameters:
101101
- name: page
102102
in: query
103-
description: page number to query
103+
description: page number to query (first page is at index 0)
104104
required: false
105105
schema:
106106
type: integer

doc/Apis/ConnectorApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ List all Connectors
2020

2121
|Name | Type | Description | Notes |
2222
|------------- | ------------- | ------------- | -------------|
23-
| **page** | **Integer**| page number to query | [optional] [default to null] |
23+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
2424
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
2525

2626
### Return type

doc/Apis/DatasetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ List all Datasets
299299
|Name | Type | Description | Notes |
300300
|------------- | ------------- | ------------- | -------------|
301301
| **organization\_id** | **String**| the Organization identifier | [default to null] |
302-
| **page** | **Integer**| page number to query | [optional] [default to null] |
302+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
303303
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
304304

305305
### Return type
@@ -626,7 +626,7 @@ Search Datasets by tags
626626
|------------- | ------------- | ------------- | -------------|
627627
| **organization\_id** | **String**| the Organization identifier | [default to null] |
628628
| **DatasetSearch** | [**DatasetSearch**](../Models/DatasetSearch.md)| the Dataset search parameters | |
629-
| **page** | **Integer**| page number to query | [optional] [default to null] |
629+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
630630
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
631631

632632
### Return type

doc/Apis/OrganizationApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ List all Organizations
5656

5757
|Name | Type | Description | Notes |
5858
|------------- | ------------- | ------------- | -------------|
59-
| **page** | **Integer**| page number to query | [optional] [default to null] |
59+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
6060
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
6161

6262
### Return type

doc/Apis/RunApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ get the list of Runs for the Runner
138138
| **organization\_id** | **String**| the Organization identifier | [default to null] |
139139
| **workspace\_id** | **String**| the Workspace identifier | [default to null] |
140140
| **runner\_id** | **String**| the Runner identifier | [default to null] |
141-
| **page** | **Integer**| page number to query | [optional] [default to null] |
141+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
142142
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
143143

144144
### Return type

doc/Apis/RunnerApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ List all Runners
252252
|------------- | ------------- | ------------- | -------------|
253253
| **organization\_id** | **String**| the Organization identifier | [default to null] |
254254
| **workspace\_id** | **String**| the Workspace identifier | [default to null] |
255-
| **page** | **Integer**| page number to query | [optional] [default to null] |
255+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
256256
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
257257

258258
### Return type

doc/Apis/SolutionApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ List all Solutions
224224
|Name | Type | Description | Notes |
225225
|------------- | ------------- | ------------- | -------------|
226226
| **organization\_id** | **String**| the Organization identifier | [default to null] |
227-
| **page** | **Integer**| page number to query | [optional] [default to null] |
227+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
228228
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
229229

230230
### Return type

doc/Apis/WorkspaceApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ List all Workspaces
222222
|Name | Type | Description | Notes |
223223
|------------- | ------------- | ------------- | -------------|
224224
| **organization\_id** | **String**| the Organization identifier | [default to null] |
225-
| **page** | **Integer**| page number to query | [optional] [default to null] |
225+
| **page** | **Integer**| page number to query (first page is at index 0) | [optional] [default to null] |
226226
| **size** | **Integer**| amount of result by page | [optional] [default to null] |
227227

228228
### Return type

organization/src/main/openapi/organization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ paths:
5252
parameters:
5353
- name: page
5454
in: query
55-
description: page number to query
55+
description: page number to query (first page is at index 0)
5656
required: false
5757
schema:
5858
type: integer

0 commit comments

Comments
 (0)