mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
chore/slo: add cursor based pagination fields to slo schema, show slo definition api (#213835)
## Summary Resolves #213238 - Adds SLO definition API doc - Adds fields for cursor based pagination to Find SLO docs [bundled.json](https://github.com/user-attachments/files/19186322/bundled.json) --------- Co-authored-by: Kevin Delemme <kdelemme@gmail.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
0485578022
commit
256817b281
8 changed files with 518 additions and 31 deletions
|
@ -41004,6 +41004,16 @@ paths:
|
|||
name: kqlQuery
|
||||
schema:
|
||||
type: string
|
||||
- description: Size provided for cursor based pagination
|
||||
example: 25
|
||||
in: query
|
||||
name: size
|
||||
schema:
|
||||
type: integer
|
||||
- in: query
|
||||
name: searchAfter
|
||||
schema:
|
||||
type: string
|
||||
- description: The page to use for pagination, must be greater or equal than 1
|
||||
example: 1
|
||||
in: query
|
||||
|
@ -41430,6 +41440,69 @@ paths:
|
|||
tags:
|
||||
- slo
|
||||
x-beta: true
|
||||
/s/{spaceId}/internal/observability/slos/_definitions:
|
||||
get:
|
||||
description: |
|
||||
You must have the `read` privileges for the **SLOs** feature in the **Observability** section of the Kibana feature privileges.
|
||||
operationId: getDefinitionsOp
|
||||
parameters:
|
||||
- $ref: '#/components/parameters/SLOs_kbn_xsrf'
|
||||
- $ref: '#/components/parameters/SLOs_space_id'
|
||||
- description: Indicates if the API returns only outdated SLO or all SLO definitions
|
||||
example: true
|
||||
in: query
|
||||
name: includeOutdatedOnly
|
||||
schema:
|
||||
type: boolean
|
||||
- description: Filters the SLOs by name
|
||||
example: my service availability
|
||||
in: query
|
||||
name: search
|
||||
schema:
|
||||
type: string
|
||||
- description: The page to use for pagination, must be greater or equal than 1
|
||||
example: 1
|
||||
in: query
|
||||
name: page
|
||||
schema:
|
||||
type: number
|
||||
- description: Number of SLOs returned by page
|
||||
example: 100
|
||||
in: query
|
||||
name: perPage
|
||||
schema:
|
||||
default: 100
|
||||
maximum: 1000
|
||||
type: integer
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_find_slo_definitions_response'
|
||||
description: Successful request
|
||||
'400':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_400_response'
|
||||
description: Bad request
|
||||
'401':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_401_response'
|
||||
description: Unauthorized response
|
||||
'403':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_403_response'
|
||||
description: Unauthorized response
|
||||
summary: Get the SLO definitions
|
||||
tags:
|
||||
- slo
|
||||
x-beta: true
|
||||
components:
|
||||
examples:
|
||||
APM_UI_source_maps_get_200_response1:
|
||||
|
@ -56826,6 +56899,25 @@ components:
|
|||
type: string
|
||||
title: FilterMeta
|
||||
type: object
|
||||
SLOs_find_slo_definitions_response:
|
||||
description: |
|
||||
A paginated response of SLO definitions matching the query.
|
||||
properties:
|
||||
page:
|
||||
example: 2
|
||||
type: number
|
||||
perPage:
|
||||
example: 100
|
||||
type: number
|
||||
results:
|
||||
items:
|
||||
$ref: '#/components/schemas/SLOs_slo_definition_response'
|
||||
type: array
|
||||
total:
|
||||
example: 123
|
||||
type: number
|
||||
title: Find SLO definitions response
|
||||
type: object
|
||||
SLOs_find_slo_response:
|
||||
description: |
|
||||
A paginated response of SLOs matching the query.
|
||||
|
@ -56840,6 +56932,12 @@ components:
|
|||
items:
|
||||
$ref: '#/components/schemas/SLOs_slo_with_summary_response'
|
||||
type: array
|
||||
searchAfter:
|
||||
type: string
|
||||
size:
|
||||
description: Size provided for cursor based pagination
|
||||
example: 25
|
||||
type: number
|
||||
total:
|
||||
example: 34
|
||||
type: number
|
||||
|
|
|
@ -44463,6 +44463,16 @@ paths:
|
|||
name: kqlQuery
|
||||
schema:
|
||||
type: string
|
||||
- description: Size provided for cursor based pagination
|
||||
example: 25
|
||||
in: query
|
||||
name: size
|
||||
schema:
|
||||
type: integer
|
||||
- in: query
|
||||
name: searchAfter
|
||||
schema:
|
||||
type: string
|
||||
- description: The page to use for pagination, must be greater or equal than 1
|
||||
example: 1
|
||||
in: query
|
||||
|
@ -44880,6 +44890,68 @@ paths:
|
|||
summary: Enable an SLO
|
||||
tags:
|
||||
- slo
|
||||
/s/{spaceId}/internal/observability/slos/_definitions:
|
||||
get:
|
||||
description: |
|
||||
You must have the `read` privileges for the **SLOs** feature in the **Observability** section of the Kibana feature privileges.
|
||||
operationId: getDefinitionsOp
|
||||
parameters:
|
||||
- $ref: '#/components/parameters/SLOs_kbn_xsrf'
|
||||
- $ref: '#/components/parameters/SLOs_space_id'
|
||||
- description: Indicates if the API returns only outdated SLO or all SLO definitions
|
||||
example: true
|
||||
in: query
|
||||
name: includeOutdatedOnly
|
||||
schema:
|
||||
type: boolean
|
||||
- description: Filters the SLOs by name
|
||||
example: my service availability
|
||||
in: query
|
||||
name: search
|
||||
schema:
|
||||
type: string
|
||||
- description: The page to use for pagination, must be greater or equal than 1
|
||||
example: 1
|
||||
in: query
|
||||
name: page
|
||||
schema:
|
||||
type: number
|
||||
- description: Number of SLOs returned by page
|
||||
example: 100
|
||||
in: query
|
||||
name: perPage
|
||||
schema:
|
||||
default: 100
|
||||
maximum: 1000
|
||||
type: integer
|
||||
responses:
|
||||
'200':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_find_slo_definitions_response'
|
||||
description: Successful request
|
||||
'400':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_400_response'
|
||||
description: Bad request
|
||||
'401':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_401_response'
|
||||
description: Unauthorized response
|
||||
'403':
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/SLOs_403_response'
|
||||
description: Unauthorized response
|
||||
summary: Get the SLO definitions
|
||||
tags:
|
||||
- slo
|
||||
components:
|
||||
examples:
|
||||
Alerting_get_health_response:
|
||||
|
@ -64170,6 +64242,25 @@ components:
|
|||
type: string
|
||||
title: FilterMeta
|
||||
type: object
|
||||
SLOs_find_slo_definitions_response:
|
||||
description: |
|
||||
A paginated response of SLO definitions matching the query.
|
||||
properties:
|
||||
page:
|
||||
example: 2
|
||||
type: number
|
||||
perPage:
|
||||
example: 100
|
||||
type: number
|
||||
results:
|
||||
items:
|
||||
$ref: '#/components/schemas/SLOs_slo_definition_response'
|
||||
type: array
|
||||
total:
|
||||
example: 123
|
||||
type: number
|
||||
title: Find SLO definitions response
|
||||
type: object
|
||||
SLOs_find_slo_response:
|
||||
description: |
|
||||
A paginated response of SLOs matching the query.
|
||||
|
@ -64184,6 +64275,12 @@ components:
|
|||
items:
|
||||
$ref: '#/components/schemas/SLOs_slo_with_summary_response'
|
||||
type: array
|
||||
searchAfter:
|
||||
type: string
|
||||
size:
|
||||
description: Size provided for cursor based pagination
|
||||
example: 25
|
||||
type: number
|
||||
total:
|
||||
example: 34
|
||||
type: number
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"info": {
|
||||
"title": "SLOs",
|
||||
"description": "OpenAPI schema for SLOs endpoints",
|
||||
"version": "1.0",
|
||||
"version": "1.1",
|
||||
"contact": {
|
||||
"name": "Actionable Observability Team"
|
||||
},
|
||||
|
@ -131,6 +131,22 @@
|
|||
},
|
||||
"example": "slo.name:latency* and slo.tags : \"prod\""
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"in": "query",
|
||||
"schema": {
|
||||
"type": "integer"
|
||||
},
|
||||
"example": 25,
|
||||
"description": "Size provided for cursor based pagination"
|
||||
},
|
||||
{
|
||||
"name": "searchAfter",
|
||||
"in": "query",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "page",
|
||||
"in": "query",
|
||||
|
@ -677,6 +693,104 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/s/{spaceId}/internal/observability/slos/_definitions": {
|
||||
"get": {
|
||||
"summary": "Get the SLO definitions",
|
||||
"operationId": "getDefinitionsOp",
|
||||
"description": "You must have the `read` privileges for the **SLOs** feature in the **Observability** section of the Kibana feature privileges.\n",
|
||||
"tags": [
|
||||
"slo"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/kbn_xsrf"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/space_id"
|
||||
},
|
||||
{
|
||||
"name": "includeOutdatedOnly",
|
||||
"in": "query",
|
||||
"description": "Indicates if the API returns only outdated SLO or all SLO definitions",
|
||||
"schema": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"example": true
|
||||
},
|
||||
{
|
||||
"name": "search",
|
||||
"in": "query",
|
||||
"description": "Filters the SLOs by name",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"example": "my service availability"
|
||||
},
|
||||
{
|
||||
"name": "page",
|
||||
"in": "query",
|
||||
"description": "The page to use for pagination, must be greater or equal than 1",
|
||||
"schema": {
|
||||
"type": "number"
|
||||
},
|
||||
"example": 1
|
||||
},
|
||||
{
|
||||
"name": "perPage",
|
||||
"in": "query",
|
||||
"description": "Number of SLOs returned by page",
|
||||
"schema": {
|
||||
"type": "integer",
|
||||
"default": 100,
|
||||
"maximum": 1000
|
||||
},
|
||||
"example": 100
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful request",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/find_slo_definitions_response"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad request",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/400_response"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"401": {
|
||||
"description": "Unauthorized response",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/401_response"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Unauthorized response",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/403_response"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/s/{spaceId}/api/observability/slos/_delete_instances": {
|
||||
"post": {
|
||||
"summary": "Batch delete rollup and summary data",
|
||||
|
@ -1895,6 +2009,14 @@
|
|||
"description": "A paginated response of SLOs matching the query.\n",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"size": {
|
||||
"type": "number",
|
||||
"example": 25,
|
||||
"description": "Size provided for cursor based pagination"
|
||||
},
|
||||
"searchAfter": {
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"type": "number",
|
||||
"example": 1
|
||||
|
@ -2292,6 +2414,31 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"find_slo_definitions_response": {
|
||||
"title": "Find SLO definitions response",
|
||||
"description": "A paginated response of SLO definitions matching the query.\n",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"page": {
|
||||
"type": "number",
|
||||
"example": 2
|
||||
},
|
||||
"perPage": {
|
||||
"type": "number",
|
||||
"example": 100
|
||||
},
|
||||
"total": {
|
||||
"type": "number",
|
||||
"example": 123
|
||||
},
|
||||
"results": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/slo_definition_response"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"delete_slo_instances_request": {
|
||||
"title": "Delete SLO instances request",
|
||||
"description": "The delete SLO instances request takes a list of SLO id and instance id, then delete the rollup and summary data. This API can be used to remove the staled data of an instance SLO that no longer get updated.\n",
|
||||
|
|
|
@ -2,7 +2,7 @@ openapi: 3.0.1
|
|||
info:
|
||||
title: SLOs
|
||||
description: OpenAPI schema for SLOs endpoints
|
||||
version: '1.0'
|
||||
version: '1.1'
|
||||
contact:
|
||||
name: Actionable Observability Team
|
||||
license:
|
||||
|
@ -81,6 +81,16 @@ paths:
|
|||
schema:
|
||||
type: string
|
||||
example: 'slo.name:latency* and slo.tags : "prod"'
|
||||
- name: size
|
||||
in: query
|
||||
schema:
|
||||
type: integer
|
||||
example: 25
|
||||
description: Size provided for cursor based pagination
|
||||
- name: searchAfter
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
- name: page
|
||||
in: query
|
||||
description: The page to use for pagination, must be greater or equal than 1
|
||||
|
@ -410,6 +420,68 @@ paths:
|
|||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/404_response'
|
||||
/s/{spaceId}/internal/observability/slos/_definitions:
|
||||
get:
|
||||
summary: Get the SLO definitions
|
||||
operationId: getDefinitionsOp
|
||||
description: |
|
||||
You must have the `read` privileges for the **SLOs** feature in the **Observability** section of the Kibana feature privileges.
|
||||
tags:
|
||||
- slo
|
||||
parameters:
|
||||
- $ref: '#/components/parameters/kbn_xsrf'
|
||||
- $ref: '#/components/parameters/space_id'
|
||||
- name: includeOutdatedOnly
|
||||
in: query
|
||||
description: Indicates if the API returns only outdated SLO or all SLO definitions
|
||||
schema:
|
||||
type: boolean
|
||||
example: true
|
||||
- name: search
|
||||
in: query
|
||||
description: Filters the SLOs by name
|
||||
schema:
|
||||
type: string
|
||||
example: my service availability
|
||||
- name: page
|
||||
in: query
|
||||
description: The page to use for pagination, must be greater or equal than 1
|
||||
schema:
|
||||
type: number
|
||||
example: 1
|
||||
- name: perPage
|
||||
in: query
|
||||
description: Number of SLOs returned by page
|
||||
schema:
|
||||
type: integer
|
||||
default: 100
|
||||
maximum: 1000
|
||||
example: 100
|
||||
responses:
|
||||
'200':
|
||||
description: Successful request
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/find_slo_definitions_response'
|
||||
'400':
|
||||
description: Bad request
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/400_response'
|
||||
'401':
|
||||
description: Unauthorized response
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/401_response'
|
||||
'403':
|
||||
description: Unauthorized response
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/403_response'
|
||||
/s/{spaceId}/api/observability/slos/_delete_instances:
|
||||
post:
|
||||
summary: Batch delete rollup and summary data
|
||||
|
@ -1317,6 +1389,12 @@ components:
|
|||
A paginated response of SLOs matching the query.
|
||||
type: object
|
||||
properties:
|
||||
size:
|
||||
type: number
|
||||
example: 25
|
||||
description: Size provided for cursor based pagination
|
||||
searchAfter:
|
||||
type: string
|
||||
page:
|
||||
type: number
|
||||
example: 1
|
||||
|
@ -1589,6 +1667,25 @@ components:
|
|||
description: The internal SLO version
|
||||
type: number
|
||||
example: 2
|
||||
find_slo_definitions_response:
|
||||
title: Find SLO definitions response
|
||||
description: |
|
||||
A paginated response of SLO definitions matching the query.
|
||||
type: object
|
||||
properties:
|
||||
page:
|
||||
type: number
|
||||
example: 2
|
||||
perPage:
|
||||
type: number
|
||||
example: 100
|
||||
total:
|
||||
type: number
|
||||
example: 123
|
||||
results:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/slo_definition_response'
|
||||
delete_slo_instances_request:
|
||||
title: Delete SLO instances request
|
||||
description: |
|
||||
|
|
|
@ -2,17 +2,45 @@ title: Find SLO definitions response
|
|||
description: >
|
||||
A paginated response of SLO definitions matching the query.
|
||||
type: object
|
||||
properties:
|
||||
page:
|
||||
type: number
|
||||
example: 2
|
||||
perPage:
|
||||
type: number
|
||||
example: 100
|
||||
total:
|
||||
type: number
|
||||
example: 123
|
||||
results:
|
||||
type: array
|
||||
items:
|
||||
$ref: 'slo_definition_response.yaml'
|
||||
oneOf:
|
||||
- type: object
|
||||
properties:
|
||||
page:
|
||||
type: number
|
||||
example: 1
|
||||
perPage:
|
||||
type: number
|
||||
example: 25
|
||||
total:
|
||||
type: number
|
||||
example: 34
|
||||
results:
|
||||
type: array
|
||||
items:
|
||||
$ref: 'slo_with_summary_response.yaml'
|
||||
- type: object
|
||||
properties:
|
||||
page:
|
||||
type: number
|
||||
default: 1
|
||||
description: for backward compability
|
||||
perPage:
|
||||
type: number
|
||||
example: 25
|
||||
description: for backward compability
|
||||
size:
|
||||
type: number
|
||||
example: 25
|
||||
searchAfter:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
example: ['some-slo-id', 'other-cursor-id']
|
||||
description: the cursor to provide to get the next paged results
|
||||
total:
|
||||
type: number
|
||||
example: 34
|
||||
results:
|
||||
type: array
|
||||
items:
|
||||
$ref: 'slo_with_summary_response.yaml'
|
||||
|
|
|
@ -3,6 +3,12 @@ description: >
|
|||
A paginated response of SLOs matching the query.
|
||||
type: object
|
||||
properties:
|
||||
size:
|
||||
type: number
|
||||
example: 25
|
||||
description: Size provided for cursor based pagination
|
||||
searchAfter:
|
||||
type: string
|
||||
page:
|
||||
type: number
|
||||
example: 1
|
||||
|
|
|
@ -2,7 +2,7 @@ openapi: 3.0.1
|
|||
info:
|
||||
title: SLOs
|
||||
description: OpenAPI schema for SLOs endpoints
|
||||
version: "1.0"
|
||||
version: '1.1'
|
||||
contact:
|
||||
name: Actionable Observability Team
|
||||
license:
|
||||
|
@ -17,19 +17,19 @@ servers:
|
|||
kibana_url:
|
||||
default: localhost:5601
|
||||
paths:
|
||||
"/s/{spaceId}/api/observability/slos":
|
||||
$ref: "paths/s@{spaceid}@api@slos.yaml"
|
||||
"/s/{spaceId}/api/observability/slos/{sloId}":
|
||||
$ref: "paths/s@{spaceid}@api@slos@{sloid}.yaml"
|
||||
"/s/{spaceId}/api/observability/slos/{sloId}/enable":
|
||||
$ref: "paths/s@{spaceid}@api@slos@{sloid}@enable.yaml"
|
||||
"/s/{spaceId}/api/observability/slos/{sloId}/disable":
|
||||
$ref: "paths/s@{spaceid}@api@slos@{sloid}@disable.yaml"
|
||||
"/s/{spaceId}/api/observability/slos/{sloId}/_reset":
|
||||
$ref: "paths/s@{spaceid}@api@slos@{sloid}@_reset.yaml"
|
||||
'/s/{spaceId}/api/observability/slos':
|
||||
$ref: 'paths/s@{spaceid}@api@slos.yaml'
|
||||
'/s/{spaceId}/api/observability/slos/{sloId}':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@{sloid}.yaml'
|
||||
'/s/{spaceId}/api/observability/slos/{sloId}/enable':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@{sloid}@enable.yaml'
|
||||
'/s/{spaceId}/api/observability/slos/{sloId}/disable':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@{sloid}@disable.yaml'
|
||||
'/s/{spaceId}/api/observability/slos/{sloId}/_reset':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@{sloid}@_reset.yaml'
|
||||
# "/s/{spaceId}/internal/observability/slos/_historical_summary":
|
||||
# $ref: "paths/s@{spaceid}@api@slos@_historical_summary.yaml"
|
||||
# "/s/{spaceId}/internal/observability/slos/_definitions":
|
||||
# $ref: "paths/s@{spaceid}@api@slos@_definitions.yaml"
|
||||
"/s/{spaceId}/api/observability/slos/_delete_instances":
|
||||
$ref: "paths/s@{spaceid}@api@slos@_delete_instances.yaml"
|
||||
'/s/{spaceId}/internal/observability/slos/_definitions':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@_definitions.yaml'
|
||||
'/s/{spaceId}/api/observability/slos/_delete_instances':
|
||||
$ref: 'paths/s@{spaceid}@api@slos@_delete_instances.yaml'
|
||||
|
|
|
@ -63,6 +63,20 @@ get:
|
|||
schema:
|
||||
type: string
|
||||
example: 'slo.name:latency* and slo.tags : "prod"'
|
||||
- name: size
|
||||
in: query
|
||||
description: The page size to use for cursor-based pagination, must be greater or equal than 1
|
||||
schema:
|
||||
type: integer
|
||||
default: 1
|
||||
example: 1
|
||||
- name: searchAfter
|
||||
in: query
|
||||
description: The cursor to use for fetching the results from, when using a cursor-base pagination.
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
- name: page
|
||||
in: query
|
||||
description: The page to use for pagination, must be greater or equal than 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue