Created
May 17, 2016 13:33
-
-
Save adrobisch/cdc3875ae7fabc07e39ace7b413c1085 to your computer and use it in GitHub Desktop.
HATEOAS with RAML 1.0
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: HATEOAS example | |
types: | |
Link: | |
type: object | |
properties: | |
rel: string | |
href?: | |
type: string | |
description: the actual target URI of a link, will be set by the service in most cases | |
templated?: boolean | |
targetType?: string | |
ApiRoot: | |
(links): | |
- rel: albums | |
# targetType: ... | |
- rel: song | |
targetType: Song | |
templated: true | |
Song: | |
(links): | |
- rel: album | |
targetType: Album | |
properties: | |
title: string | |
length: | |
type: integer | |
description: length in seconds | |
Album: | |
properties: | |
artist: string | |
title: string | |
annotationTypes: | |
links: | |
type: Link[] | |
/: | |
get: | |
responses: | |
200: | |
body: | |
application/hal+json: | |
type: ApiRoot | |
# don't generate documentation for resources below here, if you are afraid of hard coding. | |
# this definitions might still be needed for service stub generation, automated testing etc. | |
/song/{id}: | |
get: | |
responses: | |
200: | |
body: | |
application/hal+json: | |
type: Song | |
/albums: | |
#... | |
/songs: | |
#... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment