Module Avro_compiler_lib.SchemaSource
Sourcetype atomic_type = | Null| Bool| Int32| Int64| Float32| Float64| Bytes| String
Sourcetype top_type = | Atomic of atomic_type| Named of string| Array of top_type| Str_map of top_type| Union of top_type list| Fixed of {name : string;namespace : string option;doc : string option;size : int;
}| Enum of {name : string;namespace : string option;symbols : string list;doc : string option;aliases : string list option;
}| Record of {name : string;namespace : string option;fields : record_field list;doc : string option;aliases : string list option;
}
Sourceand record_field = {name : string;doc : string option;ty : top_type;
}