avrotize 0.1.1

Convert JSON Schema to Avro with Rust
Documentation
---
source: tests/cli.rs
expression: json
---
{
  "type": "record",
  "name": "document",
  "namespace": "com.example.complex_object",
  "fields": [
    {
      "name": "name",
      "type": "string"
    },
    {
      "name": "age",
      "type": "int"
    },
    {
      "name": "address",
      "type": [
        "null",
        {
          "type": "record",
          "name": "address",
          "namespace": "com.example.complex_object.document_types",
          "fields": [
            {
              "name": "street",
              "type": "string"
            },
            {
              "name": "city",
              "type": "string"
            },
            {
              "name": "state",
              "type": "string"
            },
            {
              "name": "postalCode",
              "type": "string"
            }
          ]
        }
      ]
    },
    {
      "name": "hobbies",
      "type": [
        "null",
        {
          "type": "array",
          "items": "string"
        }
      ]
    }
  ]
}