Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.41 KB | None | 0 0
  1. #%RAML 1.0
  2.  
  3. title: Type Test
  4. version: v1
  5. baseUri: http://{hostname}/api/{version}
  6. baseUriParameters:
  7.   hostname:
  8.     description: the hostname
  9. mediaType: application/json
  10.  
  11. types:
  12.   myType:
  13.     type: object
  14.     properties:
  15.       a: string
  16.       b?: string
  17.       type:
  18.         type: string
  19.  
  20. /types:
  21.   get:
  22.     responses:
  23.       200:
  24.         body:
  25.           application/json:
  26.             type: myType
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement