Browsing the OpenAPI description of GitHub

OpenAPI offers a systematic description of REST APIs.

For example, take a look at the description of the GitHub API:

gitHubJson := ZnClient new get: 'https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json'
  

It's an elaborate JSON. Now, let's browse a little more properly:

GtOpenApi fromJsonString: gitHubJson contents