mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
26 lines
691 B
JSON
26 lines
691 B
JSON
|
|
{
|
|
"publish": [{
|
|
"title": "Publish a message",
|
|
"description": "Publish a message to a topic on the stream",
|
|
"run_check": true,
|
|
"request": {
|
|
"topic": "events",
|
|
"message": {"id": "1", "type": "signup", "user": "john"}
|
|
},
|
|
"response": {}
|
|
}],
|
|
"subscribe": [{
|
|
"title": "Subscribe to a topic",
|
|
"description": "Subscribe to messages on a given topic from the stream",
|
|
"run_check": false,
|
|
"request": {
|
|
"topic": "events"
|
|
},
|
|
"response": {
|
|
"topic": "events",
|
|
"message": {"id": "1", "type": "signup", "user": "john"}
|
|
}
|
|
}]
|
|
}
|