Simple README Mock for the Bookstore API
*** REQUEST ***
GET /books
Accept: application/json
<?xml version="1.0" encoding="UTF-8" ?> | |
<store> | |
<book> | |
<category>reference</category> | |
<author>Nigel Rees</author> | |
<title>Sayings of the Century</title> | |
<price>8.95</price> | |
</book> | |
<book> | |
<category>fiction</category> |
{ "store": { | |
"book": [ | |
{ "category": "reference", | |
"author": "Nigel Rees", | |
"title": "Sayings of the Century", | |
"price": 8.95 | |
}, | |
{ "category": "fiction", | |
"author": "Evelyn Waugh", | |
"title": "Sword of Honour", |
var jobInterface(args) { | |
function init(args) {} | |
function stateRead(args) {} | |
function stateWrite(args) {} | |
function JobStart(args) {} | |
function JobCancel(args) {} | |
function JobRestart(args) {} | |
function JobRevert(args) {} | |
} |