Skip to content

Instantly share code, notes, and snippets.

@antoniogarrote
Created September 8, 2016 15:51
Show Gist options
  • Save antoniogarrote/a9a96a772ef0d0ddc5950cc4841c3d46 to your computer and use it in GitHub Desktop.
Save antoniogarrote/a9a96a772ef0d0ddc5950cc4841c3d46 to your computer and use it in GitHub Desktop.
#%RAML 1.0
title: Todos Service
baseUri: http://todosapp.com/api/version_2
mediaType: [ application/json, application/xml ]
types:
User:
properties:
id: string
email: string
name: string
self_url: string
todos_url: string
Todo:
properties:
id: string
title: string
description: string
self_url: string
user_url: string
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment