grim/resticide

Add query string support
develop
2015-11-09, Gary Kramlich
265502e6688c
Add query string support
{
"name": "httpbin get",
"request": {
"path": "/get",
"method": "GET",
"response": {
"statuscode": 200,
"json-schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"args": {
"type": "object",
"additionalProperties": {"type": "string"}
},
"headers": {
"type": "object",
"additionalProperties": {"type": "string"}
},
"origin": {"type": "string"},
"url": {"type": "string"}
},
"required": ["args", "headers", "origin", "url"]
}
}
}
}