KaiZen-OpenAPI-Editor icon indicating copy to clipboard operation
KaiZen-OpenAPI-Editor copied to clipboard

Eclipse Editor for the Swagger-OpenAPI Description Language

Results 101 KaiZen-OpenAPI-Editor issues
Sort by recently updated
recently updated
newest added

Expected benefits include: - Improved validation messages - Validation of requirements that cannot be captured in JSON Schema - Improved and more comprehensible content assist Currently, [KZOP](https://github.com/RepreZen/KaiZen-OpenAPI-Parser) does not understand...

Take this OAS3 spec: ```yaml openapi: 3.0.1 info: title: not test version: '1.0' servers: - url: 'http://localhost:8000/' paths: /some/ping: get: operationId: pingOp responses: '200': description: OK content: text/plain: schema: $ref:...

Current Sprint

In the [Security Scheme Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#securitySchemeObject), we don't currently provide any help in content assist for the `scheme` property. According to the OpenAPI spec, `scheme` should be: > The name of...

OpenAPIv3

In the [Security Scheme Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#securitySchemeObject), `type` is currently treated as an unconstrained string. According to the spec: > Valid values are "apiKey", "http", "oauth2", "openIdConnect". We should validate this, and...

OpenAPIv3
Next Sprint

We use the `_key_` as a code assist proposal for the "no proposal" case, usually it means property name, or some other named element, represented as `additionalProperties` or `patternProperties` in...

Improvement
High Priority
Next Sprint

Validation generally doesn't happen until a document is edited. Given that OpenAPI references are sensitive changes in external documents, it would be a good idea to run validation when a...

Spec ``` yaml swagger: '2.0' info: version: "0.0.0" title: Settings UI API description: Api for the UI of settings.ignitionone.com basePath: /api tags: $ref: 'settingsUI/tags.yaml' ``` Tags ``` yaml - name:...

Thanks a lot for fixing #439. However the editor shows following error messages if the yaml file does not have OAS spec required properties as shown in the screen shots...

Tags: Recognizer This is a placeholder for an issue I've seen multiple times in regular use and testing. The issue also surfaced as a support ticket from a user who...

Next Sprint

Currently, KZOE provides the same error message on an invalid `$ref` URL, regardless of whether the problem is with the base URL (i.e. the `scheme://domain/path` part), the JSON Pointer fragment...