Conversion Gallery
Explore real-world schema conversions. Click any card to see the source schema, browse the output files, and view the generated code with syntax highlighting.
Input Formats → Avro
Convert various schema formats to Avro Schema
JSON Schema -> Avro
E-commerce Order with nested types, refs, and polymorphic payment options
XSD -> Avro
ISO 20022 banking standard (Account Opening) to Avro Schema
Protobuf -> Avro
Chat messaging with oneof unions and nested messages
ASN.1 -> Avro
Movie database with sequences, enums, and optional fields
Parquet -> Avro
Extract schema from Parquet file to Avro Schema
Kafka Struct -> Avro
Kafka Connect Struct schema to Avro Schema
JSON Structure -> Avro
Inventory management schema to Avro Schema
CSV -> Avro
Infer Avro schema from CSV data file
Thrift -> Avro
Apache Thrift IDL order service (enums, structs, lists, maps) to Avro Schema
Cap'n Proto -> Avro
Cap'n Proto social graph schema (structs, enum, lists, references) to Avro Schema
FlatBuffers -> Avro
FlatBuffers fleet schema (tables, struct, enum, vectors) to Avro Schema
CUE -> Avro
CUE deployment config schema (structs, disjunctions, lists, maps) to Avro Schema
Smithy -> Avro
Smithy 2.0 catalog data shapes (structures, enums, list, map) to Avro Schema
RAML -> Avro
RAML 1.0 booking data types (objects, enum, arrays, references) to Avro Schema
SurrealDB -> Avro
SurrealQL blog schema (DEFINE TABLE/FIELD, record links, arrays, nested objects) to Avro Schema
JTD -> Avro
JSON Type Definition sensor schema (discriminated union, refs, elements, enum) to Avro Schema
JSON Data -> Avro
Infer an Avro schema from representative device JSON
JSON Data-> Avro
avrotize json2a device.json --type-name Device --namespace com.example.devices --out device.avsc
docs
XML Data -> Avro
Infer an Avro schema from representative device XML
XML Data-> Avro
avrotize xml2a device.xml --type-name Device --namespace com.example.devices --out device.avsc
docs
Kusto -> Avro
Infer an Avro schema from a Kusto table definition
Kusto-> Avro
avrotize k2a --kusto-uri https://cluster.example.com --kusto-database Telemetry --table-name TelemetryReading --out telemetry.avsc
docs
SQLite -> Avro
Infer an Avro schema from a deterministic local SQLite database
SQLite-> Avro
avrotize sql2a --connection-string telemetry.db --dialect sqlite --namespace com.example.telemetry --out telemetry.avsc
docs
Avro → Schema Formats
Convert Avro Schema to other schema formats
Avro -> Protobuf
Convert Avro telemetry schema to Protocol Buffers
Avro -> JSON Schema
Convert Avro schema to JSON Schema
Avro -> XSD
Convert Avro schema to XML Schema Definition
Avro -> ASN.1
Convert Avro schema to an X.680 ASN.1 module
Avro -> JSON Structure
Convert Avro schema to JSON Structure format
Avro -> Datapackage
Convert Avro schema to Frictionless Datapackage
Avro-> Datapackage
avrotize a2dp telemetry.avsc --out telemetry.datapackage.json
docs
Avro -> Thrift
Convert Avro telemetry schema to Apache Thrift IDL
Avro -> JTD
Convert Avro schema to JSON Type Definition (RFC 8927)
Avro -> Cap'n Proto
Convert Avro schema to Cap'n Proto schema
Avro -> RAML
Convert Avro schema to RAML 1.0 Data Types
Avro -> Smithy
Convert Avro schema to Smithy 2.0 IDL data shapes
Avro -> CUE
Convert Avro schema to the supported CUE schema subset
Avro -> FlatBuffers
Convert Avro schema to FlatBuffers schema
Avro -> SurrealDB
Convert Avro schema to SurrealQL schema definitions
Avro -> GraphQL
IoT telemetry to GraphQL type definitions
Avro → Code Generation
Generate typed code from Avro Schema
Avro -> Python (Avro)
Python dataclasses with Apache Avro serialization support
Avro->Python (Avro)
avrotize a2py telemetry.avsc --out python --avro-annotation
docs
Avro -> Python (JSON)
Python dataclasses with dataclasses-json for JSON serialization
Avro->Python (JSON)
avrotize a2py telemetry.avsc --out python --dataclasses-json-annotation
docs
Avro -> Python (All)
Python dataclasses with Avro and dataclasses-json annotations
Avro->Python (All)
avrotize a2py telemetry.avsc --out python --avro-annotation --dataclasses-json-annotation
docs
Avro -> C# (Avro)
C# classes with Apache Avro binary serialization
Avro -> C# (System.Text.Json)
C# classes with System.Text.Json annotations
Avro->C# (System.Text.Json)
avrotize a2cs telemetry.avsc --out csharp --system-text-json-annotation --pascal-properties
docs
Avro -> C# (Newtonsoft)
C# classes with Newtonsoft.Json annotations
Avro->C# (Newtonsoft)
avrotize a2cs telemetry.avsc --out csharp --newtonsoft-json-annotation --pascal-properties
docs
Avro -> C# (protobuf-net)
C# classes with protobuf-net binary serialization
Avro->C# (protobuf-net)
avrotize a2cs telemetry.avsc --out csharp --protobuf-net-annotation
docs
Avro -> C# (System.Xml)
C# classes with System.Xml serialization attributes
Avro->C# (System.Xml)
avrotize a2cs telemetry.avsc --out csharp --system-xml-annotation
docs
Avro -> C# (MessagePack)
C# classes with MessagePack binary serialization
Avro->C# (MessagePack)
avrotize a2cs telemetry.avsc --out csharp --msgpack-annotation
docs
Avro -> C# (CBOR)
C# classes with Dahomey.Cbor serialization
Avro -> C# (All)
C# classes with Avro, System.Text.Json, XML, MessagePack, CBOR, and protobuf-net
Avro->C# (All)
avrotize a2cs telemetry.avsc --out csharp --avro-annotation --system-text-json-annotation --system-xml-annotation --msgpack-annotation --cbor-annotation --protobuf-net-annotation --pascal-properties
docs
Avro -> Java (Avro)
Java POJOs with Apache Avro binary serialization
Avro -> Java (Jackson)
Java POJOs with Jackson JSON annotations
Avro->Java (Jackson)
avrotize a2java telemetry.avsc --out java --jackson-annotation --pascal-properties
docs
Avro -> Java (All)
Java POJOs with Avro and Jackson annotations
Avro->Java (All)
avrotize a2java telemetry.avsc --out java --avro-annotation --jackson-annotation --pascal-properties
docs
Avro -> TypeScript (Avro)
TypeScript interfaces with Apache Avro serialization
Avro->TypeScript (Avro)
avrotize a2ts telemetry.avsc --out typescript --avro-annotation
docs
Avro -> TypeScript (TypedJSON)
TypeScript interfaces with TypedJSON runtime type info
Avro->TypeScript (TypedJSON)
avrotize a2ts telemetry.avsc --out typescript --typedjson-annotation
docs
Avro -> TypeScript (All)
TypeScript interfaces with Avro and TypedJSON annotations
Avro->TypeScript (All)
avrotize a2ts telemetry.avsc --out typescript --avro-annotation --typedjson-annotation
docs
Avro -> JavaScript
JavaScript classes (no annotations)
Avro -> JavaScript (Avro)
JavaScript classes with Apache Avro serialization
Avro->JavaScript (Avro)
avrotize a2js telemetry.avsc --out javascript --avro-annotation
docs
Avro -> Rust (Avro)
Rust structs with Apache Avro binary serialization
Avro -> Rust (Serde JSON)
Rust structs with serde JSON serialization
Avro->Rust (Serde JSON)
avrotize a2rust telemetry.avsc --out rust --json-annotation
docs
Avro -> Rust (All)
Rust structs with Avro and serde JSON support
Avro->Rust (All)
avrotize a2rust telemetry.avsc --out rust --avro-annotation --json-annotation
docs
Avro -> Go (Avro)
Go structs with Apache Avro binary serialization
Avro -> Go (JSON)
Go structs with JSON struct tags
Avro -> Go (All)
Go structs with Avro and JSON tags
Avro->Go (All)
avrotize a2go telemetry.avsc --out go --avro-annotation --json-annotation
docs
Avro -> C++
C++ classes (no annotations)
Avro -> C++ (Avro)
C++ classes with Apache Avro binary serialization
Avro -> C++ (JSON)
C++ classes with nlohmann/json serialization
Avro -> C++ (All)
C++ classes with Avro and JSON support
Avro->C++ (All)
avrotize a2cpp telemetry.avsc --out cpp --avro-annotation --json-annotation
docs
Avro → Database & Data Formats
Generate database schemas and data format definitions
Avro -> PostgreSQL
IoT telemetry to PostgreSQL table schema
Avro-> PostgreSQL
avrotize a2sql telemetry.avsc --dialect postgres --out telemetry.sql
docs
Avro -> Kusto
IoT telemetry to Azure Data Explorer (Kusto) table schema
Avro -> Parquet
IoT telemetry to Parquet schema
Avro -> Iceberg
IoT telemetry to Apache Iceberg schema
Avro -> MongoDB
IoT telemetry to MongoDB JSON Schema validation
Avro -> Cassandra
IoT telemetry to Cassandra CQL schema
Avro -> DynamoDB
IoT telemetry to AWS DynamoDB schema
Avro-> DynamoDB
avrotize a2dynamodb telemetry.avsc --out telemetry.dynamodb.json
docs
Avro -> Elasticsearch
IoT telemetry to Elasticsearch mapping
Avro -> CosmosDB
IoT telemetry to Azure CosmosDB schema
Avro -> Neo4j
IoT telemetry to Neo4j Cypher schema
Avro -> Firebase
IoT telemetry to Firebase security rules schema
Avro-> Firebase
avrotize a2firebase telemetry.avsc --out telemetry.firebase.json
docs
Avro -> CouchDB
IoT telemetry to CouchDB validation schema
Avro -> HBase
IoT telemetry to HBase schema
Avro -> MySQL
IoT telemetry to MySQL table schema
Avro-> MySQL
avrotize a2sql telemetry.avsc --dialect mysql --out telemetry_mysql.sql
docs
Avro -> SQL Server
IoT telemetry to SQL Server table schema
Avro-> SQL Server
avrotize a2sql telemetry.avsc --dialect sqlserver --out telemetry_mssql.sql
docs
Avro -> SQLite
IoT telemetry to SQLite table schema
Avro-> SQLite
avrotize a2sql telemetry.avsc --dialect sqlite --out telemetry_sqlite.sql
docs
Avro -> Oracle
IoT telemetry to Oracle database table schema
Avro-> Oracle
avrotize a2sql telemetry.avsc --dialect oracle --out telemetry_oracle.sql
docs
Avro -> MariaDB
IoT telemetry to MariaDB table schema
Avro-> MariaDB
avrotize a2sql telemetry.avsc --dialect mariadb --out telemetry_maria.sql
docs
Avro -> BigQuery
IoT telemetry to Google BigQuery table schema
Avro->BigQuery
avrotize a2sql telemetry.avsc --dialect bigquery --out telemetry_bigquery.sql
docs
Avro -> Snowflake
IoT telemetry to Snowflake table schema
Avro->Snowflake
avrotize a2sql telemetry.avsc --dialect snowflake --out telemetry_snowflake.sql
docs
Avro -> Redshift
IoT telemetry to AWS Redshift table schema
Avro->Redshift
avrotize a2sql telemetry.avsc --dialect redshift --out telemetry_redshift.sql
docs
Avro -> DB2
IoT telemetry to IBM DB2 table schema
Avro -> CSV Template
Generate CSV template from Avro schema
Avro -> PostgreSQL (CloudEvents)
E-commerce multi-table schema with CloudEvents envelope columns
Avro-> PostgreSQL (CloudEvents)
avrotize a2sql ecommerce.avsc --dialect postgres --emit-cloudevents-columns --out ecommerce_ce.sql
docs
Avro -> Kusto (CloudEvents)
E-commerce multi-table schema with CloudEvents envelope columns
Avro->Kusto (CloudEvents)
avrotize a2k ecommerce.avsc --emit-cloudevents-columns --out ecommerce_ce.kql
docs
Avro -> TMSL
Generate a Power BI tabular model script from Avro
Avro->TMSL
avrotize a2tsml telemetry.avsc --database-name TelemetryModel --out telemetry.tmsl.json
docs
Avro → Documentation
Generate documentation from Avro Schema
Avro -> Markdown
IoT telemetry to Markdown documentation
Inference, Validation & Services
Infer schemas, validate artifacts, and expose Avrotize as a service
Avro -> Parsing Canonical Form
Print the Avro Parsing Canonical Form used for schema identity
JSON Instance Validation
Validate a device instance against a JSON Structure schema
JSON Instance Validation
avrotize validate device.json --schema device.struct.json
docs
Generated TMSL Validation
Generate a TMSL model from Avro and validate it locally
Avrotize MCP Service
Expose Avrotize commands to an MCP client over stdio
Input Formats → JSON Structure
Convert various schema formats to JSON Structure
Avro -> JSON Structure
Convert Avro schema to JSON Structure format
Thrift -> JSON Structure
Apache Thrift IDL order service (enums, structs, lists, maps) to JSON Structure
Thrift-> JSON Structure
avrotize thrift2s orders.thrift --out orders.struct.json
docs
Cap'n Proto -> JSON Structure
Cap'n Proto social graph schema (structs, enum, lists, references) to JSON Structure
Cap'n Proto-> JSON Structure
avrotize capnp2s social.capnp --out social.struct.json
docs
FlatBuffers -> JSON Structure
FlatBuffers fleet schema (tables, struct, enum, vectors) to JSON Structure
CUE -> JSON Structure
CUE deployment config schema (structs, disjunctions, lists, maps) to JSON Structure
CUE-> JSON Structure
avrotize cue2s deployment.cue --out deployment.struct.json
docs
Smithy -> JSON Structure
Smithy 2.0 catalog data shapes (structures, enums, list, map) to JSON Structure
Smithy-> JSON Structure
avrotize smithy2s catalog.smithy --out catalog.struct.json
docs
RAML -> JSON Structure
RAML 1.0 booking data types (objects, enum, arrays, references) to JSON Structure
JTD -> JSON Structure
JSON Type Definition sensor schema (discriminated union, refs, elements, enum) to JSON Structure
JSON Schema -> Structure
E-commerce Order to JSON Structure format
JSON Data -> JSON Structure
Infer a JSON Structure schema from representative device JSON
JSON Data-> JSON Structure
avrotize json2s device.json --type-name Device --base-id https://example.com/devices/ --out device.struct.json
docs
XML Data -> JSON Structure
Infer a JSON Structure schema from representative device XML
XML Data-> JSON Structure
avrotize xml2s device.xml --type-name Device --base-id https://example.com/devices/ --out device.struct.json
docs
Kusto -> JSON Structure
Infer a JSON Structure schema from a Kusto table definition
Kusto-> JSON Structure
avrotize k2s --kusto-uri https://cluster.example.com --kusto-database Telemetry --table-name TelemetryReading --out telemetry.struct.json
docs
CDDL -> JSON Structure
Convert an IoT sensor CDDL model to JSON Structure
CDDL-> JSON Structure
avrotize cddl2s iot_sensor.cddl --namespace https://example.com/iot/ --out iot_sensor.struct.json
docs
OpenAPI -> JSON Structure
Extract reusable data types from a compact OpenAPI 3 document
OpenAPI-> JSON Structure
avrotize oas2s simple.json --namespace https://example.com/api/ --out simple.struct.json
docs
JSON Structure → Schema Formats
Convert JSON Structure to other schema formats
JSON Structure -> Parquet
Convert JSON Structure inventory schema to a Parquet schema
JSON Structure-> Parquet
avrotize s2pq inventory.struct.json --out inventory.parquet.json
docs
JSON Structure -> Thrift
Convert JSON Structure inventory schema to Apache Thrift IDL
JSON Structure->Thrift
avrotize s2thrift inventory.struct.json --out inventory.thrift
docs
JSON Structure -> Cap'n Proto
Convert JSON Structure inventory schema to Cap'n Proto schema
JSON Structure->Cap'n Proto
avrotize s2capnp inventory.struct.json --out inventory.capnp
docs
JSON Structure -> FlatBuffers
Convert JSON Structure inventory schema to FlatBuffers schema
JSON Structure->FlatBuffers
avrotize s2fbs inventory.struct.json --out inventory.fbs
docs
JSON Structure -> CUE
Convert JSON Structure inventory schema to the supported CUE schema subset
JSON Structure -> Smithy
Convert JSON Structure inventory schema to Smithy 2.0 IDL data shapes
JSON Structure->Smithy
avrotize s2smithy inventory.struct.json --out inventory.smithy
docs
JSON Structure -> RAML
Convert JSON Structure inventory schema to RAML 1.0 Data Types
JSON Structure->RAML
avrotize s2raml inventory.struct.json --out inventory.raml
docs
JSON Structure -> JTD
Convert JSON Structure inventory schema to JSON Type Definition (RFC 8927)
JSON Structure->JTD
avrotize s2jtd inventory.struct.json --out inventory.jtd.json
docs
Structure -> JSON Schema
Inventory management to JSON Schema
Structure-> JSON Schema
avrotize s2j inventory.struct.json --out inventory.schema.json
docs
Structure -> XSD
Inventory management to XML Schema
Structure -> ASN.1
Inventory management to an X.680 ASN.1 module
Structure -> GraphQL
Inventory management to GraphQL type definitions
Structure-> GraphQL
avrotize s2graphql inventory.struct.json --out schema.graphql
docs
Structure -> Protobuf
Inventory management to Protocol Buffers
Structure -> Datapackage
Inventory management to Frictionless Datapackage
Structure-> Datapackage
avrotize s2dp inventory.struct.json --out inventory.datapackage.json
docs
JSON Structure -> CDDL
Convert the inventory JSON Structure model to CDDL
JSON Structure->CDDL
avrotize s2cddl inventory.struct.json --out inventory.cddl
docs
JSON Structure → Code Generation
Generate typed code from JSON Structure
Structure -> Python (Avro)
Python dataclasses with Apache Avro serialization support
Structure->Python (Avro)
avrotize s2py inventory.struct.json --out python --avro-annotation
docs
Structure -> Python (JSON)
Python dataclasses with dataclasses-json for JSON serialization
Structure->Python (JSON)
avrotize s2py inventory.struct.json --out python --dataclasses-json-annotation
docs
Structure -> Python (All)
Python dataclasses with Avro and dataclasses-json annotations
Structure->Python (All)
avrotize s2py inventory.struct.json --out python --avro-annotation --dataclasses-json-annotation
docs
Structure -> C# (Avro)
C# classes with Apache Avro binary serialization
Structure->C# (Avro)
avrotize s2cs inventory.struct.json --out csharp --avro-annotation
docs
Structure -> C# (System.Text.Json)
C# classes with System.Text.Json annotations
Structure->C# (System.Text.Json)
avrotize s2cs inventory.struct.json --out csharp --system-text-json-annotation --pascal-properties
docs
Structure -> C# (Newtonsoft)
C# classes with Newtonsoft.Json annotations
Structure->C# (Newtonsoft)
avrotize s2cs inventory.struct.json --out csharp --newtonsoft-json-annotation --pascal-properties
docs
Structure -> C# (System.Xml)
C# classes with System.Xml serialization attributes
Structure->C# (System.Xml)
avrotize s2cs inventory.struct.json --out csharp --system-xml-annotation
docs
Structure -> C# (All)
C# classes with Avro, System.Text.Json, and XML annotations
Structure->C# (All)
avrotize s2cs inventory.struct.json --out csharp --avro-annotation --system-text-json-annotation --system-xml-annotation --pascal-properties
docs
Structure -> Java
Java POJOs (no annotations)
Structure -> Java (Jackson)
Java POJOs with Jackson JSON annotations
Structure->Java (Jackson)
avrotize s2java inventory.struct.json --out java --jackson-annotation --pascal-properties
docs
Structure -> TypeScript
TypeScript interfaces (no annotations)
Structure -> TypeScript (Avro)
TypeScript interfaces with Apache Avro serialization
Structure->TypeScript (Avro)
avrotize s2ts inventory.struct.json --out typescript --avro-annotation
docs
Structure -> TypeScript (TypedJSON)
TypeScript interfaces with TypedJSON runtime type info
Structure->TypeScript (TypedJSON)
avrotize s2ts inventory.struct.json --out typescript --typedjson-annotation
docs
Structure -> TypeScript (All)
TypeScript interfaces with Avro and TypedJSON annotations
Structure->TypeScript (All)
avrotize s2ts inventory.struct.json --out typescript --avro-annotation --typedjson-annotation
docs
Structure -> JavaScript
JavaScript classes (no annotations)
Structure -> JavaScript (Avro)
JavaScript classes with Apache Avro serialization
Structure->JavaScript (Avro)
avrotize s2js inventory.struct.json --out javascript --avro-annotation
docs
Structure -> Rust
Rust structs (no annotations)
Structure -> Rust (Serde JSON)
Rust structs with serde JSON serialization
Structure->Rust (Serde JSON)
avrotize s2rust inventory.struct.json --out rust --json-annotation
docs
Structure -> Go
Go structs (no annotations)
Structure -> Go (Avro)
Go structs with Apache Avro binary serialization
Structure->Go (Avro)
avrotize s2go inventory.struct.json --out go --avro-annotation
docs
Structure -> Go (JSON)
Go structs with JSON struct tags
Structure->Go (JSON)
avrotize s2go inventory.struct.json --out go --json-annotation
docs
Structure -> Go (All)
Go structs with Avro and JSON tags
Structure->Go (All)
avrotize s2go inventory.struct.json --out go --avro-annotation --json-annotation
docs
Structure -> C++
C++ classes (no annotations)
Structure -> C++ (JSON)
C++ classes with nlohmann/json serialization
Structure->C++ (JSON)
avrotize s2cpp inventory.struct.json --out cpp --json-annotation
docs
JSON Structure → Database & Data Formats
Generate database schemas and data format definitions
Structure -> PostgreSQL
Inventory management to PostgreSQL table schema
Structure-> PostgreSQL
avrotize s2sql inventory.struct.json --dialect postgres --out inventory.sql
docs
Structure -> Cassandra
Inventory management to Cassandra CQL schema
Structure-> Cassandra
avrotize s2cassandra inventory.struct.json --out inventory.cql
docs
Structure -> Iceberg
Inventory management to Apache Iceberg schema
Structure-> Iceberg
avrotize s2ib inventory.struct.json --out inventory.iceberg.json
docs
Structure -> CSV Template
Generate CSV template from JSON Structure schema
Structure->CSV Template
avrotize s2csv inventory.struct.json --out inventory_template.csv
docs
Structure -> Kusto
Inventory management to Azure Data Explorer table schema
Structure -> MySQL
Inventory management to MySQL table schema
Structure-> MySQL
avrotize s2sql inventory.struct.json --dialect mysql --out inventory_mysql.sql
docs
Structure -> SQL Server
Inventory management to SQL Server table schema
Structure-> SQL Server
avrotize s2sql inventory.struct.json --dialect sqlserver --out inventory_mssql.sql
docs
Structure -> SQLite
Inventory management to SQLite table schema
Structure-> SQLite
avrotize s2sql inventory.struct.json --dialect sqlite --out inventory_sqlite.sql
docs
Structure -> Oracle
Inventory management to Oracle database table schema
Structure-> Oracle
avrotize s2sql inventory.struct.json --dialect oracle --out inventory_oracle.sql
docs
Structure -> MariaDB
Inventory management to MariaDB table schema
Structure-> MariaDB
avrotize s2sql inventory.struct.json --dialect mariadb --out inventory_maria.sql
docs
Structure -> BigQuery
Inventory management to Google BigQuery table schema
Structure->BigQuery
avrotize s2sql inventory.struct.json --dialect bigquery --out inventory_bigquery.sql
docs
Structure -> Snowflake
Inventory management to Snowflake table schema
Structure->Snowflake
avrotize s2sql inventory.struct.json --dialect snowflake --out inventory_snowflake.sql
docs
Structure -> Redshift
Inventory management to AWS Redshift table schema
Structure->Redshift
avrotize s2sql inventory.struct.json --dialect redshift --out inventory_redshift.sql
docs
Structure -> DB2
Inventory management to IBM DB2 table schema
Structure->DB2
avrotize s2sql inventory.struct.json --dialect db2 --out inventory_db2.sql
docs
Structure -> PostgreSQL (CloudEvents)
E-commerce multi-table schema with CloudEvents envelope columns
Structure-> PostgreSQL (CloudEvents)
avrotize s2sql ecommerce.struct.json --dialect postgres --emit-cloudevents-columns --out ecommerce_ce.sql
docs
Structure -> Kusto (CloudEvents)
E-commerce multi-table schema with CloudEvents envelope columns
Structure->Kusto (CloudEvents)
avrotize s2k ecommerce.struct.json --emit-cloudevents-columns --out ecommerce_ce.kql
docs
JSON Structure -> TMSL
Generate a Power BI tabular model script from JSON Structure
JSON Structure->TMSL
avrotize s2tsml inventory.struct.json --database-name InventoryModel --out inventory.tmsl.json
docs
JSON Structure → Documentation
Generate documentation from JSON Structure
Structure -> Markdown
Inventory management to Markdown documentation