Skip to content

Instantly share code, notes, and snippets.

@mr1azl
Created January 29, 2019 09:36
Show Gist options
  • Save mr1azl/5492dfb2b583ec96990633de049f5752 to your computer and use it in GitHub Desktop.
Save mr1azl/5492dfb2b583ec96990633de049f5752 to your computer and use it in GitHub Desktop.
{
"schema": {
"type": "struct",
"fields": [{
"type": "int32",
"optional": false,
"field": "id"
}, {
"type": "struct",
"name": "data",
"optional": false,
"fields": [{
"type": "string",
"name": "hello",
"optional":false
}]
}],
"optional": false,
"name": "foobar"
},
"payload": {
"id": 10000,
"data": {"hello":"world"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment