Skip to content

Commit c83584a

Browse files
authored
Merge pull request #33236 from changeworld/patch-14
Fix JSON parse error
2 parents 19e9f45 + e34ed5e commit c83584a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/blockchain/workbench/messages-overview.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Example of a submitted **create contract** response from Blockchain Workbench:
166166
"connectionId": 1,
167167
"messageSchemaVersion": "1.0.0",
168168
"messageName": "CreateContractUpdate",
169-
"status": "Submitted"
169+
"status": "Submitted",
170170
"additionalInformation": { }
171171
}
172172
```
@@ -196,7 +196,7 @@ If the request was unsuccessful, details about the failure are included in addit
196196
"connectionId": 1,
197197
"messageSchemaVersion": "1.0.0",
198198
"messageName": "CreateContractUpdate",
199-
"status": "Failure"
199+
"status": "Failure",
200200
"additionalInformation": {
201201
"errorCode": 4000,
202202
"errorMessage": "Contract cannot be provisioned on connection."
@@ -282,7 +282,7 @@ Example of a committed **create contract action** response from Blockchain Workb
282282
"connectionId": 1,
283283
"messageSchemaVersion": "1.0.0",
284284
"messageName": "CreateContractActionUpdate",
285-
"status": "Committed"
285+
"status": "Committed",
286286
"additionalInformation": { }
287287
}
288288
```
@@ -296,7 +296,7 @@ If the request was unsuccessful, details about the failure are included in addit
296296
"connectionId": 1,
297297
"messageSchemaVersion": "1.0.0",
298298
"messageName": "CreateContractActionUpdate",
299-
"status": "Failure"
299+
"status": "Failure",
300300
"additionalInformation": {
301301
"errorCode": 4000,
302302
"errorMessage": "Contract action cannot be provisioned on connection."
@@ -412,22 +412,22 @@ Example of a *BlockMessage* from Blockchain Workbench:
412412
``` json
413413
{
414414
"block": {
415-
"blockId": 123
415+
"blockId": 123,
416416
"blockNumber": 1738312,
417417
"blockHash": "0x03a39411e25e25b47d0ec6433b73b488554a4a5f6b1a253e0ac8a200d13fffff",
418418
"previousBlockHash": null,
419419
"blockTimestamp": "2018-10-09T23:35:58Z",
420420
},
421421
"transactions": [
422422
{
423-
"transactionId": 234
423+
"transactionId": 234,
424424
"transactionHash": "0xa4d9c95b581f299e41b8cc193dd742ef5a1d3a4ddf97bd11b80d123fec27ffff",
425425
"from": "0xd85e7262dd96f3b8a48a8aaf3dcdda90f60dffff",
426426
"to": null,
427427
"provisioningStatus": 1
428428
},
429429
{
430-
"transactionId": 235
430+
"transactionId": 235,
431431
"transactionHash": "0x5c1fddea83bf19d719e52a935ec8620437a0a6bdaa00ecb7c3d852cf92e1ffff",
432432
"from": "0xadd97e1e595916e29ea94fda894941574000ffff",
433433
"to": "0x9a8DDaCa9B7488683A4d62d0817E965E8f24ffff",
@@ -713,7 +713,7 @@ Example of an *EventMessage ApplicationIngestion* from Blockchain Workbench:
713713
"applicationName": "AssetTransfer",
714714
"applicationDisplayName": "Asset Transfer",
715715
"applicationVersion": “1.0”,
716-
"applicationDefinitionLocation": "http://url"
716+
"applicationDefinitionLocation": "http://url",
717717
"contractCodes": [
718718
{
719719
"id": 23,
@@ -803,7 +803,7 @@ Example of an *EventMessage ApplicationIngestion* from Blockchain Workbench:
803803
}
804804
]
805805
}
806-
]
806+
],
807807
"connectionId": [ ],
808808
"messageSchemaVersion": "1.0.0",
809809
"messageName": "EventMessage",
@@ -815,7 +815,7 @@ Example of an *EventMessage ApplicationIngestion* from Blockchain Workbench:
815815
"Name": "BuyerAccepted",
816816
"Transitions": [
817817
{
818-
"DisplayName": "Accept"
818+
"DisplayName": "Accept",
819819
"AllowedRoles": [ ],
820820
"AllowedInstanceRoles": [ "InstanceOwner" ],
821821
"Function": "Accept",

0 commit comments

Comments
 (0)