Files
services/helloworld/examples.json
2021-11-03 16:57:13 +00:00

25 lines
589 B
JSON

{
"call": [{
"title": "Call the helloworld service",
"description": "Helloworld is a simple example that takes a name and returns a personalised message",
"run_check": true,
"request": {
"name": "John"
},
"response": {
"message": "Hello John"
}
}],
"stream": [{
"title": "Streams responses from the server using websockets",
"run_check": true,
"request": {
"name": "John"
},
"response": {
"message": "Hello John"
}
}]
}