RAML
RAML is an actively used text markup language created in 2013.
7Years Old | 5,383Users | ?Jobs |
- the RAML website
- RAML on github
- RAML first appeared in 2013
- file extensions for RAML include raml
- Have a question about RAML not answered here? Email me and let me know how I can help.
Example code from Linguist:
#%RAML 0.8 title: World Music API baseUri: http://example.api.com/{version} version: v1 traits: - paged: queryParameters: pages: description: The number of pages to return type: number - secured: !include http://raml-example.com/secured.yml /songs: is: [ paged, secured ] get: queryParameters: genre: description: filter the songs by genre post: /{songId}: get: responses: 200: body: application/json: schema: | { "$schema": "http://json-schema.org/schema", "type": "object", "description": "A canonical song", "properties": { "title": { "type": "string" }, "artist": { "type": "string" } }, "required": [ "title", "artist" ] } application/xml: delete: description: | This method will *delete* an **individual song**
Trending Repos
repo | stars | description |
---|
Last updated August 9th, 2020