You have created a schema for your data and have uploaded it to the Schema Registry
in the Streams Messaging cluster.
For information on how to create a new schema, see
Creating a new schema. For example:
{
"type":"record",
"name":"SensorReading",
"namespace":"com.cloudera.example",
"doc":"This is a sample sensor reading",
"fields":[
{
"name":"sensor_id",
"doc":"Sensor identification number.",
"type":"int"
},
{
"name":"sensor_ts",
"doc":"Timestamp of the collected readings.",
"type":"long"
},
{
"name":"sensor_0",
"doc":"Reading #0.",
"type":"int"
},
{
"name":"sensor_1",
"doc":"Reading #1.",
"type":"int"
},
{
"name":"sensor_2",
"doc":"Reading #2.",
"type":"int"
},
{
"name":"sensor_3",
"doc":"Reading #3.",
"type":"int"
}
]
}