July 2017
Beginner to intermediate
358 pages
10h 54m
English
RAML stands for RESTful API Modelling Language and is written in YAML format. It aims to allow the definition of a human-readable format that describes resources, methods, parameters, responses, media types, and other HTTP constructs that form the basis of your API.
The code example for RAML is shown as follows:
#%RAML 1.0 title: Pets API mediaType: [ application/json] types: Pet: type: object properties: name: type: string description: name of the pet /pets: description: Returns all pets from the system that the user has access to get: responses: 200: body: Pet[]
Find more information on RAML at http://raml.org.
Read now
Unlock full access