Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSON-RPC schema specification?

Tags:

json-rpc

I'm thinking about trying to implementing a client for a particular json-rpc 2.0 service that could give a user some static typing guarantees. The API in question is very large, so actually writing a full-featured client by hand with all the necessary type information too big of a task for me to be bothered. However I've found via an undocumented http endpoint a large json based schema that seems to describe the entire json-rpc service fully. I'm certain I could write some sort of code generator using this specification. It is too big to paste here.

My question is, is there a standard specification for describing a json-rpc service? I've had a search around and I find a lot of dead links and the official spec[1] for json-rpc makes no mention of a standard schema definition for such a service. The schema I've found seems to be at least partially based off of the json-schema specification[2].

json-rpc

Json Schema

like image 381
m-rutter Avatar asked Jan 12 '19 21:01

m-rutter


People also ask

What is JSON-RPC format?

JSON-RPC is a remote procedure call protocol encoded in JSON. It is similar to the XML-RPC protocol, defining only a few data types and commands.

Can RPC use JSON?

The primary benefit to using JSON-RPC is similar to why JSON is used as the standard response format for many APIs; it is a light-weight text-based format for serializing and deserializing data between systems.

What is JSON-RPC response?

JSON-RPC is simply a remote procedure call protocol that is used on Ethereum to define different data structures. It also defines the rules on how data structures are processed in the network. Because it is transport-agnostic, you can use it to interact with an ETH node over sockets or HTTP.

What is XML-RPC and JSON-RPC?

In XML-RPC, a client performs an RPC by sending an HTTP request to a server that implements XML-RPC and receives the HTTP response. A call can have multiple parameters and one result.[1] JSON-RPC is a remote procedure call protocol encoded in JSON.


1 Answers

JSON Schema is great for defining payloads formats (you can even use it for REST APIs in OpenAPI) but indeed it won't help describe the "RPC" part, with the methods and entry points.

OpenRPC, created in early 2019, seems to be the most promising

The Ethereum Classic Labs Core (ECLC) team recently created the OpenRPC Specification, aiming to improve all blockchain dapp development. The specification emulates OpenAPI, the successful and widely adopted specification for REST APIs.

The OpenRPC Specification defines a standard, programming language-agnostic interface description for JSON-RPC 2.0 APIs.

Other approaches

Drupal JSON-RPC module provides a discovery endpoint and a Postman collection

The available RPC services along with documentation and usage details can be discovered by sending an HTTP GET request to /jsonrpc/methods.

You can use this Postman Collection with examples and tests.

There might also be interesting things to get from AsyncAPI, gRPC, GraphQL.

Dead

Also citing some other options I stumbled upon but which are dead:

JSON-WSP seems outdated, the Wikipedia page is pending deletion (talk page seems to say this was never actually a standard)

JSON-WSP (JavaScript Object Notation Web-Service Protocol) is a web-service protocol that uses JSON for service description, requests and responses. It is inspired from JSON-RPC, but the lack of a service description specification with documentation in JSON-RPC sparked the design of JSON-WSP.

JSON Schema Service Descriptor seems to have remained a draft

A JSON Schema service descriptor is simply a JSON Schema with the additional definition for methods.

like image 159
Mathieu Rey Avatar answered Oct 28 '22 21:10

Mathieu Rey