github.com/confluentinc/confluent-kafka-go@v1.9.2/schemaregistry/test/avro/example.avsc (about)

     1  {
     2  	"type": "record",
     3  	"name": "DemoSchema",
     4  	"fields": [
     5  		{"name": "IntField", "type": "int"},
     6  		{"name": "DoubleField", "type": "double"},
     7  		{"name": "StringField", "type": "string"},
     8  		{"name": "BoolField", "type": "boolean"},
     9  		{"name": "BytesField", "type": "bytes"}
    10  	]
    11  
    12  }