grim/resticide

Add a bunch of stuff to the readme
develop tip
2016-07-09, Gary Kramlich
f8bc0c4813a9
Add a bunch of stuff to the readme
{
"name": "httpbin post form-data json",
"request": {
"path": "/post",
"method": "POST",
"form-data": {
"json-test": {
"json": {
"a": 123,
"b": true,
"c": [0, 1, 1, 2, 3, 5],
"d": {
"e": false,
"f": null
}
}
}
},
"response": {
"statuscode": 200,
"json-schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"form": {
"type": "object",
"properties": {
"json-test": {
"enum": [
"{\"a\":123,\"b\":true,\"c\":[0,1,1,2,3,5],\"d\":{\"e\":false,\"f\":null}}"
]
}
},
"required": ["json-test"]
}
},
"required": ["form"]
}
}
}
}