Commit d7623ea
committed
Change 307 response description to fix OpenAPI error
During creation of the java script client from the OpenAPI file an error
was thrown because the unsupported field "message" was set for the 307
response:
```
Exception in thread "main" org.openapitools.codegen.SpecValidationException: There were issues with the specification. The option can be disabled via validateSpec (Maven/Gradle) or --skip-validate-spec (CLI).
| Error count: 4, Warning count: 0
Errors:
-attribute paths.'/projects/{project_id}/jobs/{job_id}/actions/{action_id}'(get).responses.307.message is unexpected
-attribute paths.'/projects/{project_id}/jobs'(post).responses.307.message is unexpected
-attribute paths.'/projects/{project_id}/services/{service_id}/actions/{action_id}'(get).responses.307.message is unexpected
-attribute paths.'/projects/{project_id}/files/{file_key}/actions/{action_id}'(get).responses.307.message is unexpected
```
This is fixed by using the field "description" instead of "message"
which is part of the OpenAPI spec.1 parent 002e0a7 commit d7623ea
2 files changed
Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
| 139 | + | |
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
| |||
0 commit comments