Skip to content

Commit

Permalink
fix(openapi): fixed missing schema key
Browse files Browse the repository at this point in the history
  • Loading branch information
syncush committed Sep 26, 2020
1 parent edc0ea9 commit d3edcee
Show file tree
Hide file tree
Showing 5 changed files with 175 additions and 94 deletions.
7 changes: 4 additions & 3 deletions docs/devguide/docs/swagger-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -972,9 +972,10 @@ paths:
name: limit
description: The number of most recent reports to retrieve.
required: true
minimum: 1
maximum: 250
type: integer
schema:
type: integer
minimum: 1
maximum: 250
- in: query
name: filter
description: is filter and by what property
Expand Down
8 changes: 5 additions & 3 deletions docs/openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,7 @@ paths:
'/v1/jobs/containers/':
delete:
operationId: delete-all-job-containers
summary: Delete all finished containers/pods
tags:
- Jobs
description: delete all containers/pods of predator-runner
Expand Down Expand Up @@ -971,9 +972,10 @@ paths:
name: limit
description: The number of most recent reports to retrieve.
required: true
minimum: 1
maximum: 250
type: integer
schema:
type: integer
minimum: 1
maximum: 250
- in: query
name: filter
description: is filter and by what property
Expand Down
Loading

0 comments on commit d3edcee

Please sign in to comment.