Module avro.schema

Schemas describe the valid format of data, used for (en/de)coding, code generation, and more.

Classes

NameDescription
Schema An Avro Schema is one of the following: - A JSON string, matching a defined type like "int", "string", or another Schema's name. - A JSON object, of the form {"type": "typeName", ...attributes...}. - A JSON array of type names like ["null", "string"], representing a union where values adhering to the schema may be one of the listed types.