
Last week I delved into the problem of presenting a unified API doc from a distributed system composed of micro-services. In the second installment, we will get our hands dirty with help of Swagger by Wordnik.
A quick recap: the problem we are trying to solve is how to document all the APIs of the system when these APIs are an aggregation of endpoints contributed by individual micro-services. To illustrate the possible solution, we will imagine a distributed system consisting of two micro-services:
- Projects – this service provides APIs to query update and delete projects (very simplified, of course).
- Users – this service provides APIs to query and create user profiles. Projects API will make a reference to users when listing project members.
For simplicity, we will choose only a handful of properties and methods. Project model is defined in Swagger like this:
"Project": { "id": "Project", "description": "A single project model", "properties": { "name": { "type": "string", "description": "name of the project", "required": true }, "description": { "type": "string", "description": "description of the project" }, "avatar": { "type": "string", "description": "URL to the image representing the project avatar" }, "owner": { "type": "string", "description": "unique id of the projects' owner", "required": true }, "members": { "type": "array", "description": "array of unique ids of project members", "items": { "type": "string" } } }
Users are provided by another service and have the following model, defined the same way:
"User": { "id": "User", "description": "A single user model", "properties": { "id": { "type": "string", "description": "unique user id", "required": true }, "name": { "type": "string", "description": "user name", "required": true }, "email": { "type": "string", "description": "user email", "required": true }, "picture": { "type": "string", "description": "thumbnail picture of the user" } } }
The key to the proposed solution lies in Swagger’s feature that allows the composite API document to be composed of APIs coming from multiple places. The entry point to the document definition will look like this:
{ "apiVersion":"1.0", "swaggerVersion":"1.2", "apis":[ { "path": "http://localhost:3000/api-docs/projects.json", "description":"Projects" }, { "path": "http://localhost:3001/api-docs/users.json", "description":"Users" } ], "info":{ "title":"30% Turtleneck, 70% Hoodie API Example", "description":"This API doc demonstrates how API definitions can be aggregated in a micro-service system, as demonstrated at <a href=\"http://dejanglozic.com\">http://dejanglozic.com</a>." } }
Each API group with its set of endpoints can be sources from a different URL, allowing us the flexible solution to provide this resource by the actual micro-service that owns that API portion.
Each individual API document will list the endpoints and resources it handles. For each endpoint and verb combination, it will list parameters, request/response bodies, as well as data models and error responses. This and much more is fully documented in Swagger 1.2 specification.
{ "path": "/users/{id}", "operations": [ { "method": "GET", "summary": "Returns a user profile", "notes": "Implementation notes on GET.", "type": "User", "nickname": "getUser", "authorizations": {}, "parameters": [ { "name": "id", "description": "Unique user identifier", "paramType": "path", "type": "string" } ], "responseMessages": [ { "code": 404, "message": "User with a provided id not found" } ] } ] }
Swagger handles most of its specification through the parameter list, which is fairly clever. In addition to query parameters, they can be used to define path segments, as well as request body for POST, PUT and PATCH. In addition, request and response body schemas are linked to the model specifications further down the document.
Needless to say, I skipped over huge swaths of the specification dealing with authentication. Suffice to say that Swagger specification currently supports basic Auth, API key and OAuth 2 as authentication options.
At this point of the article, I realized that I cannot show you the actual JSON files without making the article long and unwieldy. Luckily, I also realized I actually work for IBM and more importantly, IBM DevOps Services (JazzHub). So here is what I have done:
The entire Node.js app is now available as a public project on DevOps Services site:
Once you explored the code, you can see it running in IBM Bluemix. You can drill into the Swagger API UI (despite what the UI is telling you, you cannot yet ‘Try it’ – the actual API is missing, this is just a doc; for a real API, this part will also work).
I hope you agree that showing a running app is better than a screenshot. From now on, I will make it my standard practice to host complete demo apps in DevOps Services and run them in Bluemix for your clicking pleasure.
© Dejan Glozic, 2014
Leave a Reply