FasterXML / jackson-dataformats-binary

Uber-project for standard Jackson binary format backends: avro, cbor, ion, protobuf, smile
Apache License 2.0
310 stars 133 forks source link

invalid characters in schema for inner classes #348

Open mihn opened 1 year ago

mihn commented 1 year ago

Hey, I'm generating Avro Schema for POJO that uses inner classes and because of that namespace field contains $, which is a character not allowed by Avro schema. I think substituting that with . is a good way to solve the issue.

{ "type" : "record", "name" : "TestImpl", "namespace" : "package.Test$", "fields" : [ ...] } Thank you,