Jonathan Stoikovitch
Jonathan Stoikovitch
This PR allows specifying positional arguments names in `.command.types(object)`. This is what the example from the wiki would look like once this is merged: ```js vorpal .command('stringify ') .option('-a, --amount...
The introduction of [`schemaFormat` in Message Object](https://github.com/asyncapi/asyncapi/blob/master/versions/next/asyncapi.md#message-object) adds support for schema languages other than JSON Schema. The `$ref`erencing mechanism however was designed to only support JSON data structures as it...
The current authn/authz mechanism described with `securitySchemes` in AsyncAPI 2.0 works at a global level, i.e. it is definable inside the `server` node. [oAuth2 “scopes”](https://www.asyncapi.com/docs/specifications/2.0.0/#oauthFlowsObject) allows to provide some authz...
Might be able to workaround using [generation plugins](https://github.com/mulesoft-labs/raml-for-jax-rs/blob/master/raml-to-jaxrs/jaxrs-code-generator/README.md). If so, let's add an example.
We had it in 1.3.x, it's been dropped in 2.0.0 in favor of maven and CLI. Should we bring it back? and if so should it behave differently?
@alecsammon does not have the bandwidth to maintain the project anymore. He has agreed to hand over the project to whoever is willing to take over. We could also consider...
- [ ] add complex examples of JSON schema (see https://github.com/fge/sample-json-schemas) - [ ] add complex examples of RAML type (see https://github.com/raml-org/raml-examples)
If you're interested in maintaining this project, feel free to leave a comment here.
given the type: ``` date: { type: 'datetime' } ``` and the value: ``` date: 'Sun, 28 Feb 2016 16:41:41 GMT' ``` `error.getSource().facetName()` returns `should be datetime-only`. I would expect...