Kyle Fuller
Kyle Fuller
Hi, I noticed that this package declares in `package.json` that it is licensed using the MIT license, but as there is no license file and subsequently no copyright notice this...
This issue is tracking integrating OpenAPI 3 support into Dredd. #### Caveats The current support is not finished but we want to get OpenAPI 3 to you as quick as...
We can extract the key to use for variable member derived from Schema Object `additionalProperties` from an example, providing the key is not already used for a property (with different...
This likely requires design in API Elements specification and designing how to expose this information in API Elements.
We should settle on the package naming going forward along with how we will package adapters up as we can also use NPM Scoped packages https://docs.npmjs.com/misc/scope (`@apielements/openapi` etc). We have...
Initial proof of concept with numerous caveats and unsupported elements (tracked in STATUS.md). - [ ] Add smoke test for fury-cli
It would be good to add a code (https://nodejs.org/api/errors.html#errors_error_code) so that consumers can introspect for particular error types without checking the fragile message (which some do...).
For example: ```yaml openapi: 3.0.3 info: title: API version: v1 paths: '/': get: summary: Hello responses: '200': description: Successful operation content: application/json: schema: type: array items: "$ref": "#/components/schemas/member" components: schemas:...
In order to serialize message bodies when generating examples for request/response body from a data structure, we can provide numerous adapters for serializing content. For example serializing a data structure...
For example, the following schema is invalid and cannot be met: ```yaml allOf: - type: array - type: string ``` It is not possible to have a type that is...