spec
spec copied to clipboard
The OpenRPC specification
should use `https://json-schema.org/draft/2020-12/json-schema-core.html#section-8.2.3`
This would also make automated testing tools able to test against failing cases.
Hi! For our methods, we have multiple common params for each method, let's call them `Username` and `Password`. So if we have 100 methods, we are for each one required...
In my API I have some functions that do not return a result. I implement this by responding with a "null" value (but a "true" is just as good). The...
A description field could be helpful for adding some additional information to the errors that doesn't necessarily end up going over the wire: what the error means, when and why...
#### Problem In the docs for `Method` it is written: > The method name is used as the method field of the JSON-RPC body. It therefore MUST be unique. Consider...
OpenAPI supports it and this feature is useful when writing code-generated API wrappers. Here is how it looks like in the OpenAPI spec: ```yaml components: responses: sampleObjectResponse: content: application/json: schema:...
We should have a way to support 1 param determining the type of another param. ie assume I have the following api: ``` name: "bar", params: [ { name: 'foo'...