Created
September 14, 2013 08:58
-
-
Save zdne/6560278 to your computer and use it in GitHub Desktop.
Example API Blueprint parser output in the JSON format
This file contains 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
{ | |
"_version": "1.0", | |
"metadata": {}, | |
"name": "", | |
"description": "", | |
"resourceGroups": [ | |
{ | |
"name": "", | |
"description": "", | |
"resources": [ | |
{ | |
"name": "", | |
"description": "", | |
"uriTemplate": "/message", | |
"model": {}, | |
"parameters": {}, | |
"headers": {}, | |
"actions": [ | |
{ | |
"name": "", | |
"description": "", | |
"method": "GET", | |
"parameters": {}, | |
"headers": {}, | |
"examples": [ | |
{ | |
"name": "", | |
"description": "", | |
"requests": [], | |
"responses": [ | |
{ | |
"name": "200", | |
"description": "", | |
"headers": { | |
"Content-Type": { | |
"value": "text/plain" | |
} | |
}, | |
"body": "Hello World!\n", | |
"schema": "" | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment