Skip to content

Instantly share code, notes, and snippets.

@antoniogarrote
Created September 8, 2016 15:51
Show Gist options
  • Save antoniogarrote/3fedd6f55c7657c27e432a57167d5760 to your computer and use it in GitHub Desktop.
Save antoniogarrote/3fedd6f55c7657c27e432a57167d5760 to your computer and use it in GitHub Desktop.
#%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