Stuart McGrigor

Results 18 comments of Stuart McGrigor

I had a similar problem with 34K lines spec..... I had a $ref pointing to an object that had another $ref ... about 3 or 4 deep. I suspect it...

Actually there's already a tool in NPM that does that https://www.npmjs.com/package/openapi-examples-validator?activeTab=readme - so I think can close the request

> Thank you @stueynz! Checks are failing on lint, can you run `npm run lint` and make sure its not moaning about anything before resubmitting? Sure thing ... I'm assuming...

Added a few more checks when doing validateSpec() - OpenAPI keeps what used to be in `#/definitions` under `#/components/{schemas, requestBodies, responses, parameters}` so they all need to be checked for...

Fixed in https://github.com/APIDevTools/swagger-parser/pull/179 - All the spec consistency checks were only used to work on Swagger 2.0 specs; All fixed now for OpenAPI v3.0 specs; Might get a chance to...

re: using `autoFetch` manually, something's not exactly intuitive. AutoFetch will take place if either of the `autoFetch` settings is `true`. Maybe setting `autoFetch` to `false` manually should override the `true`...

Stand by - there will be a pull request soon.

Also if the parameter is defined but not `in: header` it won't fail. Note: to all - stand by - there will be a Pull Request soon.

I tracked down the reason why only `GeneralUtils` functions can be placed into variables: There's special code in [VariableGenerator](https://github.com/LinuxForHealth/hl7v2-fhir-converter/blob/master/src/main/java/io/github/linuxforhealth/hl7/expression/variable/VariableGenerator.java#L34C1-L41C8) - specifically targeted at GeneralUtils functions. A stop-gap solution that allows...

Keep an eye on https://github.com/LinuxForHealth/hl7v2-fhir-converter/pull/504 - we really need this to work.