Skip to content

Instantly share code, notes, and snippets.

@rashedtalukder
Created December 12, 2017 01:58
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 rashedtalukder/fad2dbc6526f9ed238ddb3ba0f7b5c73 to your computer and use it in GitHub Desktop.
Save rashedtalukder/fad2dbc6526f9ed238ddb3ba0f7b5c73 to your computer and use it in GitHub Desktop.
RAML Challenge Questions
****** CHOICE A ******
title: Example
version: 1.0
description: This is an RAML example
/champions:
get:
queryParameters:
mulesoft:
type: boolean
responses:
200:
body:
application/json:
type: object
properties:
email: string
****** CHOICE B ******
title: Example
version: 1.0
description: This is an RAML example
/champions:
get:
description: Get the champions
queryParameters:
mulesoft:
type: boolean
responses:
200:
body:
application/json:
type: object
properties:
email: string
****** CHOICE C ******
title: Example
version: 1.0
description: This is an RAML example
/champions:
get:
description: Get the champions
queryParameters:
name:
type: string
example: mulesoft
responses:
200:
body:
application/json:
type: object
properties:
email: string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment