avro-to-json-schema
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Avro Typescript

A simple JS library to convert Avro Schemas to JSON Schemas using Typebox.

Install

npm install avro-to-json-schema

The library can be run in node.js or the browser. It takes a Avro Schema as a JavaScript object (from JSON) and returns the JSONSchema as a string.

Usage

import { avroToJSONSchema, RecordType } from "avro-to-json-schema"

const schemaText = fs.readFileSync("example.avsc", "UTF8");
const schema = JSON.parse(schemaText) as RecordType;
console.log(avroToJSONSchema(schema as RecordType));

Features

Most Avro features are supported, including:

  • Enumerated Types
  • Maps
  • Named Records
  • Mandatory and optional fields
  • Unions
  • Primitives

To-do

  • Generate a function to set defaults as per the schema
  • Add support for fixed
  • Generate JSDocs from documentation
  • Add namespace support

Readme

Keywords

Package Sidebar

Install

npm i avro-to-json-schema

Weekly Downloads

1,221

Version

0.1.0

License

MIT

Unpacked Size

17.5 kB

Total Files

9

Last publish

Collaborators

  • jhasselgren