Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions samples/snippets/resources/us-states-plus.avsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"type":"record",
"name":"State",
"namespace":"utilities",
"doc":"A list of states in the United States of America.",
"fields":[
{
"name":"name",
"type":"string",
"doc":"The common name of the state."
},
{
"name":"post_abbr",
"type":"string",
"doc":"The postal code abbreviation of the state."
},
{
"name":"population",
"type":"long",
"default":0,
"doc":"The population of the state."
}
]
}
9 changes: 9 additions & 0 deletions samples/snippets/resources/us-states-plus.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";

package utilities;

message StateProto {
string name = 1;
string post_abbr = 2;
int64 population = 3;
}
Loading