Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 1.23 KB

renderers.md

File metadata and controls

13 lines (9 loc) · 1.23 KB

Renderers

What are the renderers?

There we have four renderers available for your api. They are:

  • JSend: JSend is a specification that lays down some rules for how JSON responses from web servers should be formatted. JSend focuses on application-level (as opposed to protocol- or transport-level) messaging which makes it ideal for use in REST-style applications and APIs. You can see more details here
  • Json: JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers. In this link you can see more details.
  • Xml: It is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. Here you can check more details
  • Raw: This is an unformatted response.

Above you saw what are the available renderers, then you can click in the links to see how they works.