Code Kie

Results 24 comments of Code Kie

Any updates on this? How can I access the files now, other than using a different device?

Be aware that the API is not officially supported. This tool is a CLI-tool in the first place. When changes are made and the API is affected by them, it...

@bartoszm sorry for the slow responses, but I've been very busy with ongoing projects the past weeks. I hope that I'll have time to have a closer look at this,...

Yes. In the current implementation that's not going to work because before the validation starts the spec is dereferenced and in this case it ends up in an infinite recursion....

I just had a look at the JSON-schema validator that I use to validate the OpenAPI-description against the examples (which is `ajv`) and they don't support circular references (see: https://github.com/ajv-validator/ajv/blob/HEAD/docs/security.md#circular-references-in-javascript-objects)....

The only way I see to resolve this is to not dereference it in this case but instead keeping the reference pointer in the JSON-schema but then I'd have that...

## TL;DR Polymorphism isn't supported yet. ## More detailed explanation The OEV (`openapi-examples-validator`) uses [ajv](https://www.npmjs.com/package/ajv) for validation, under the hood. The [`discriminator`-option](https://ajv.js.org/json-schema.html#discriminator) has been added with a ["more recent" version...

Merged with #185 @gigaga thanks, for your contribution

Thanks @philsturgeon ☺️ The v3.1 support has already been on my roadmap. Thanks, for the links. This will save me some time 😄 . Unfortunately, I'm still deeply involved with...

What this library does is, it extracts the examples out of the OpenAPI-description, creates a map between the examples and the corresponding schema and then validates the examples against the...