Skip to content

Commit ba090b1

Browse files
committed
Minor fix to sample json
1 parent 1a8e642 commit ba090b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample_append.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
event_type = "SampleEventType" # Define the event type for the new event
1919
new_event = NewEvent( # Create a new event with a type and body
2020
type=event_type, # Specify the event type
21-
data=b'{"Id":"1", "importantData":"some value"}' # Specify the event data body as a JSON in byte format
21+
data=b'{"id":"1", "importantData":"some value"}' # Specify the event data body as a JSON in byte format
2222
)
2323

2424
##################################################

0 commit comments

Comments
 (0)