You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The /tasks/{taskID}/runs response is defined as a generic object:
'/tasks/{taskID}/runs':
get:
tags:
- Taskssummary: Retrieve list of run records for a taskparameters:
- $ref: '#/components/parameters/TraceSpan'
- in: pathname: taskIDschema:
type: stringrequired: truedescription: ID of task to get runs for
- in: queryname: afterschema:
type: stringdescription: returns runs after specified ID
- in: queryname: limitschema:
type: integerminimum: 1maximum: 100default: 20description: the number of runs to return
- in: queryname: afterTimeschema:
type: stringformat: date-timedescription: filter runs to those scheduled after this time, RFC3339
- in: queryname: beforeTimeschema:
type: stringformat: date-timedescription: filter runs to those scheduled before this time, RFC3339responses:
'200':
description: a list of task runscontent:
application/json:
schema:
type: objectproperties:
runs:
type: arrayitems:
$ref: "#/components/schemas/Run"links:
$ref: "#/components/schemas/Links"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
and this cause that the generated client use auto named response type InlineResponse2002:
The response schema for /tasks/{taskID}/runs should be Runs:
'/tasks/{taskID}/runs':
get:
tags:
- Taskssummary: Retrieve list of run records for a taskparameters:
- $ref: '#/components/parameters/TraceSpan'
- in: pathname: taskIDschema:
type: stringrequired: truedescription: ID of task to get runs for
- in: queryname: afterschema:
type: stringdescription: returns runs after specified ID
- in: queryname: limitschema:
type: integerminimum: 1maximum: 100default: 20description: the number of runs to return
- in: queryname: afterTimeschema:
type: stringformat: date-timedescription: filter runs to those scheduled after this time, RFC3339
- in: queryname: beforeTimeschema:
type: stringformat: date-timedescription: filter runs to those scheduled before this time, RFC3339responses:
'200':
description: a list of task runscontent:
application/json:
schema:
$ref: "#/components/schemas/Runs"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
...
Runs:
type: objectproperties:
links:
readOnly: true$ref: "#/components/schemas/Links"runs:
type: arrayitems:
$ref: "#/components/schemas/Run"
The /tasks response is defined as a generic object:
/tasks:
get:
tags:
- Taskssummary: List tasks.parameters:
- $ref: '#/components/parameters/TraceSpan'
- in: queryname: afterschema:
type: stringdescription: returns tasks after specified ID
- in: queryname: userschema:
type: stringdescription: filter tasks to a specific user ID
- in: queryname: orgschema:
type: stringdescription: filter tasks to a specific organization name
- in: queryname: orgIDschema:
type: stringdescription: filter tasks to a specific organization ID
- in: queryname: limitschema:
type: integerminimum: 1maximum: 500default: 100description: the number of tasks to returnresponses:
'200':
description: A list of taskscontent:
application/json:
schema:
type: objectproperties:
tasks:
type: arrayitems:
$ref: "#/components/schemas/Task"links:
$ref: "#/components/schemas/Links"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
and this cause that the generated client use auto named response type InlineResponse2001:
/tasks:
get:
tags:
- Taskssummary: List tasks.parameters:
- $ref: '#/components/parameters/TraceSpan'
- in: queryname: afterschema:
type: stringdescription: returns tasks after specified ID
- in: queryname: userschema:
type: stringdescription: filter tasks to a specific user ID
- in: queryname: orgschema:
type: stringdescription: filter tasks to a specific organization name
- in: queryname: orgIDschema:
type: stringdescription: filter tasks to a specific organization ID
- in: queryname: limitschema:
type: integerminimum: 1maximum: 500default: 100description: the number of tasks to returnresponses:
'200':
description: A list of taskscontent:
application/json:
schema:
$ref: "#/components/schemas/Tasks"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
...
Tasks:
type: objectproperties:
links:
readOnly: true$ref: "#/components/schemas/Links"tasks:
type: arrayitems:
$ref: "#/components/schemas/Task"
The text was updated successfully, but these errors were encountered:
The
/tasks/{taskID}/runs
response is defined as a generic object:and this cause that the generated client use auto named response type
InlineResponse2002
:The response schema for
/tasks/{taskID}/runs
should beRuns
:The
/tasks
response is defined as a generic object:and this cause that the generated client use auto named response type
InlineResponse2001
:The response schema for
/tasks
should beTasks
:The text was updated successfully, but these errors were encountered: