Skip to content

Instantly share code, notes, and snippets.

@jstoiko
Created December 19, 2017 04:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jstoiko/952514e7e35b43e98c9db7e210a06312 to your computer and use it in GitHub Desktop.
Save jstoiko/952514e7e35b43e98c9db7e210a06312 to your computer and use it in GitHub Desktop.
#%RAML 1.0
title: Human API
types:
Human:
type: object
properties:
first_name: string
last_name: string
age?: number
/humans:
post:
body:
application/json:
type: Human
get:
responses:
200:
body:
application/json:
type: Human[]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment