Mayuri Nehate 5c40390a92
feat(ingest/kafka): support metadata mapping from kafka avro schemas (#8825)
Co-authored-by: Daniel Messias <danielcmessias@gmail.com>
Co-authored-by: Deepankarkr <deepankar.kumar@gslab.com>
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
2023-09-22 17:11:42 -07:00

25 lines
444 B
JSON

{
"namespace": "io.codebrews.createuserrequest",
"type": "record",
"name": "CreateUserRequest",
"doc": "Value schema for kafka topic",
"tags": ["PII"],
"fields": [
{
"name": "email",
"type": "string",
"tags": ["Email"]
},
{
"name": "firstName",
"type": "string",
"tags": ["Name"]
},
{
"name": "lastName",
"type": "string",
"tags": ["Name"]
}
]
}