mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
28 lines
673 B
JSON
28 lines
673 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,
|
|
"idempotent": true,
|
|
"request": {
|
|
"name": "John"
|
|
},
|
|
"response": {
|
|
"message": "Hello John"
|
|
}
|
|
}],
|
|
"stream": [{
|
|
"title": "Streams responses from the server using websockets",
|
|
"run_check": true,
|
|
"idempotent": true,
|
|
"request": {
|
|
"name": "John",
|
|
"messages": 10
|
|
},
|
|
"response": {
|
|
"message": "Hello John"
|
|
}
|
|
}]
|
|
}
|