Skip to content

Commit

Permalink
DOCS: Fixed JSON documents
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kostyuk committed May 5, 2018
1 parent 46fddac commit 39e4851
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/source/api/streaming_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ following message:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/subscribe",
"body": {
"target_topic": "here/is/your/topic"
Expand All @@ -115,7 +115,7 @@ with an empty body:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/subscribe_ack",
"body": {}
}
Expand Down Expand Up @@ -167,7 +167,7 @@ following message:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/unsubscribe",
"body": {
"target_topic": "here/is/your/topic"
Expand All @@ -188,7 +188,7 @@ with an empty body:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/unsubscribe_ack",
"body": {}
}
Expand All @@ -214,7 +214,7 @@ access token [#f3]_ in the following message:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/auth",
"body": {
"access_token": "here_is_your_token"
Expand All @@ -234,7 +234,7 @@ with an empty body:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/auth_ack",
"body": {}
}
Expand Down Expand Up @@ -272,7 +272,7 @@ Here is an example of an error message:
.. code-block:: json
{
"timestamp": 123456.76
"timestamp": 123456.76,
"topic": "stream/error",
"body": {
"error_id": 2101,
Expand Down

0 comments on commit 39e4851

Please sign in to comment.