Created
September 8, 2016 15:51
-
-
Save antoniogarrote/3fedd6f55c7657c27e432a57167d5760 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%RAML 1.0 | |
title: Todos Service | |
baseUri: http://todosapp.com/api/version_3 | |
mediaType: [ application/ld+json, application/json, application/xml ] | |
types: | |
URI: string | |
Link: | |
properties: | |
@id: URI | |
Context: | |
properties: | |
@vocab: URI | |
User: | |
properties: | |
@context: Context | |
@id: URI | |
email: string | |
name: string | |
todos: Link | |
Todo: | |
properties: | |
@context: Context | |
@id: URI | |
title: string | |
description: string | |
user: Link | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment