Dear Visier developer community,
After starting to use the Data and Job Handling API we have found out that the OAS3 schema provided here has invalid definitions for some of the endpoints in the API. For instance the endpoint GET /v1/op/jobs/dispatching-jobs/{jobId}
(here’s the line in the OAS3 schema) is specified as /v1/op/jobs/dispatching-jobs/:jobId:
, which is invalid. According to the OAS3 specified here, path parameters are defined in curly braces and specified in the parameters
section as:
- in: path
name: jobId
schema:
type: string
required: true
description: The ID of the job you want to retrieve
These errors in the OAS3 file hinder us to auto-generate a HTTP client without further intervention. For the time being we have removed these errors, in order to generate a usable HTTP client.
There are multiple errors in the OAS3 file, which need to be addresed. Here are the few of them:
- GET /v1/op/jobs/dispatching-jobs/{jobId}/extraction-jobs
- GET /v1/op/jobs/dispatching-jobs/{jobId}/processing-jobs
- etc.
Could you please remove these errors in the OAS3 file and also review the other APIs (e.g. Tenant API).
Thanks in advance,