├── .github ├── SETUP_STRUCTURIZE.md ├── dependabot.yml └── workflows │ ├── build_deploy.yml │ └── python-runtime-versions-test.yml ├── .gitignore ├── .gitmodules ├── .playwright-mcp └── gallery-tiles-issue.png ├── LICENSE ├── MANIFEST.in ├── README.md ├── analyze_coverage.py ├── assets └── css │ └── style.css ├── avrojson.md ├── avrotize ├── __init__.py ├── __main__.py ├── asn1toavro.py ├── avrotize.py ├── avrotocpp.py ├── avrotocpp │ ├── CMakeLists.txt.jinja │ ├── build.bat.jinja │ ├── build.sh.jinja │ ├── dataclass_body.jinja │ └── vcpkg.json.jinja ├── avrotocsharp.py ├── avrotocsharp │ ├── README.md.jinja │ ├── class_test.cs.jinja │ ├── dataclass_core.jinja │ ├── enum_test.cs.jinja │ ├── project.csproj.jinja │ ├── project.sln.jinja │ ├── run_coverage.ps1.jinja │ ├── run_coverage.sh.jinja │ └── testproject.csproj.jinja ├── avrotocsv.py ├── avrotodatapackage.py ├── avrotodb.py ├── avrotogo.py ├── avrotogo │ ├── go_enum.jinja │ ├── go_helpers.jinja │ ├── go_struct.jinja │ ├── go_test.jinja │ └── go_union.jinja ├── avrotographql.py ├── avrotoiceberg.py ├── avrotojava.py ├── avrotojava │ ├── class_test.java.jinja │ ├── enum_test.java.jinja │ └── testproject.pom.jinja ├── avrotojs.py ├── avrotojsons.py ├── avrotojstruct.py ├── avrotokusto.py ├── avrotomd.py ├── avrotomd │ └── README.md.jinja ├── avrotools.py ├── avrotoparquet.py ├── avrotoproto.py ├── avrotopython.py ├── avrotopython │ ├── dataclass_core.jinja │ ├── enum_core.jinja │ ├── pyproject_toml.jinja │ ├── test_class.jinja │ └── test_enum.jinja ├── avrotorust.py ├── avrotorust │ ├── dataclass_enum.rs.jinja │ ├── dataclass_struct.rs.jinja │ └── dataclass_union.rs.jinja ├── avrotots.py ├── avrotots │ ├── class_core.ts.jinja │ ├── class_test.ts.jinja │ ├── enum_core.ts.jinja │ ├── gitignore.jinja │ ├── index.ts.jinja │ ├── package.json.jinja │ └── tsconfig.json.jinja ├── avrotoxsd.py ├── cddltostructure.py ├── commands.json ├── common.py ├── constants.py ├── csvtoavro.py ├── datapackagetoavro.py ├── dependencies │ ├── cpp │ │ └── vcpkg │ │ │ └── vcpkg.json │ ├── cs │ │ └── net90 │ │ │ └── dependencies.csproj │ ├── go │ │ └── go121 │ │ │ └── go.mod │ ├── java │ │ └── jdk21 │ │ │ └── pom.xml │ ├── python │ │ └── py312 │ │ │ └── requirements.txt │ ├── rust │ │ └── stable │ │ │ └── Cargo.toml │ └── typescript │ │ └── node22 │ │ └── package.json ├── dependency_resolver.py ├── dependency_version.py ├── generic │ └── generic.avsc ├── jsonstoavro.py ├── jsonstostructure.py ├── jstructtoavro.py ├── kstructtoavro.py ├── kustotoavro.py ├── openapitostructure.py ├── parquettoavro.py ├── proto2parser.py ├── proto3parser.py ├── prototoavro.py ├── prototypes │ ├── any.avsc │ ├── api.avsc │ ├── duration.avsc │ ├── field_mask.avsc │ ├── struct.avsc │ ├── timestamp.avsc │ ├── type.avsc │ └── wrappers.avsc ├── structuretocddl.py ├── structuretocpp.py ├── structuretocpp │ ├── CMakeLists.txt.jinja │ ├── build.bat.jinja │ ├── build.sh.jinja │ ├── dataclass_body.jinja │ └── vcpkg.json.jinja ├── structuretocsharp.py ├── structuretocsharp │ ├── class_test.cs.jinja │ ├── dataclass_core.jinja │ ├── enum_test.cs.jinja │ ├── json_structure_converters.cs.jinja │ ├── program.cs.jinja │ ├── project.csproj.jinja │ ├── project.sln.jinja │ ├── testproject.csproj.jinja │ └── tuple_converter.cs.jinja ├── structuretocsv.py ├── structuretodatapackage.py ├── structuretodb.py ├── structuretogo.py ├── structuretogo │ ├── go_enum.jinja │ ├── go_helpers.jinja │ ├── go_interface.jinja │ ├── go_struct.jinja │ └── go_test.jinja ├── structuretographql.py ├── structuretoiceberg.py ├── structuretojava.py ├── structuretojava │ ├── choice_core.jinja │ ├── class_core.jinja │ ├── enum_core.jinja │ ├── equals_hashcode.jinja │ ├── pom.xml.jinja │ └── tuple_core.jinja ├── structuretojs.py ├── structuretojs │ ├── class_core.js.jinja │ ├── enum_core.js.jinja │ ├── package.json.jinja │ ├── test_class.js.jinja │ ├── test_enum.js.jinja │ └── test_runner.js.jinja ├── structuretojsons.py ├── structuretokusto.py ├── structuretomd.py ├── structuretomd │ └── README.md.jinja ├── structuretoproto.py ├── structuretopython.py ├── structuretopython │ ├── dataclass_core.jinja │ ├── enum_core.jinja │ ├── map_alias.jinja │ ├── pyproject_toml.jinja │ ├── test_class.jinja │ └── test_enum.jinja ├── structuretorust.py ├── structuretorust │ ├── dataclass_enum.rs.jinja │ ├── dataclass_struct.rs.jinja │ └── dataclass_union.rs.jinja ├── structuretots.py ├── structuretots │ ├── class_core.ts.jinja │ ├── enum_core.ts.jinja │ ├── gitignore.jinja │ ├── index.ts.jinja │ ├── package.json.jinja │ ├── test_class.ts.jinja │ └── tsconfig.json.jinja ├── structuretoxsd.py └── xsdtoavro.py ├── cddl.md ├── cli.py ├── csharpcodegen.md ├── javacodegen.md ├── jsonschema.md ├── jsonschematostructure.md ├── jsonstructure.md ├── mypy.ini ├── nosqlcodegen.md ├── pyproject.toml ├── requirements.txt ├── schemas ├── accelerator.avsc ├── kconnect.json └── test_messages_proto3.avsc ├── scripts └── build_gallery.py ├── specs ├── avro-schema-schema.json ├── avro-schema.md └── avrotize-schema.md ├── sqlcodegen.md ├── structuretojsonschema.md ├── structurize ├── .gitignore ├── MANIFEST.in ├── README.md ├── build.ps1 ├── build.sh └── pyproject.toml ├── test ├── MINIMAL_TEST_CASES.md ├── __init.py__ ├── __init__.py ├── asn1 │ ├── ldap3.asn │ ├── movie.asn │ └── person.asn ├── avsc │ ├── address-avro-ref.graphql │ ├── address-ce-dt-ref.kql │ ├── address-ce-dt-struct-ref.kql │ ├── address-ce-ref.kql │ ├── address-ce-struct-ref.kql │ ├── address-nn-ref.json │ ├── address-nn-ref.struct.json │ ├── address-nn.avsc │ ├── address-ref.graphql │ ├── address-ref.json │ ├── address-ref.kql │ ├── address-ref.struct.json │ ├── address-ref.xsd │ ├── address-struct-ref.kql │ ├── address.avsc │ ├── address.pcf │ ├── alltypes-optional.avsc │ ├── complexunion-ref.graphql │ ├── complexunion-ref.json │ ├── complexunion-ref.struct.json │ ├── complexunion.avsc │ ├── compounds-ref.graphql │ ├── compounds-ref.struct.json │ ├── enumfield-lower.avsc │ ├── enumfield-ordinals-ref.json │ ├── enumfield-ordinals-ref.struct.json │ ├── enumfield-ordinals.avsc │ ├── enumfield-ref.graphql │ ├── enumfield-ref.json │ ├── enumfield-ref.struct.json │ ├── enumfield.avsc │ ├── enums-ref.graphql │ ├── enums-ref.struct.json │ ├── extendedprimitives-ref.graphql │ ├── extendedprimitives-ref.struct.json │ ├── feeditem-ref.json │ ├── feeditem-ref.struct.json │ ├── feeditem.avsc │ ├── fileblob-ref.json │ ├── fileblob-ref.struct.json │ ├── fileblob.avsc │ ├── fixed-field.avsc │ ├── fixed-type-2-ref.json │ ├── fixed-type-2.avsc │ ├── fixed-type-ref.json │ ├── fixed-type.avsc │ ├── inheritance-test.struct.json │ ├── northwind-avro-ref.graphql │ ├── northwind-ref.graphql │ ├── northwind-ref.json │ ├── northwind-ref.struct.json │ ├── northwind-ref.xsd │ ├── northwind.avsc │ ├── primitives-ref.graphql │ ├── primitives-ref.struct.json │ ├── primitiveunion-ref.json │ ├── primitiveunion.avsc │ ├── restricted-namespace.avsc │ ├── telemetry-avro-ref.graphql │ ├── telemetry-ce-dt-ref.kql │ ├── telemetry-ce-ref.kql │ ├── telemetry-ref.graphql │ ├── telemetry-ref.json │ ├── telemetry-ref.kql │ ├── telemetry-ref.struct.json │ ├── telemetry-ref.xsd │ ├── telemetry.avsc │ ├── twotypeunion-ref.json │ ├── twotypeunion-ref.struct.json │ ├── twotypeunion.avsc │ ├── typemapunion-ref.json │ ├── typemapunion.avsc │ ├── typemapunion2-ref.json │ └── typemapunion2.avsc ├── cddl │ ├── arrays_maps-ref.struct.json │ ├── arrays_maps.cddl │ ├── choices-ref.struct.json │ ├── choices.cddl │ ├── control_operators-ref.struct.json │ ├── control_operators.cddl │ ├── cose_headers-ref.struct.json │ ├── cose_headers.cddl │ ├── cwt_claims-ref.struct.json │ ├── cwt_claims.cddl │ ├── generics-ref.struct.json │ ├── generics.cddl │ ├── iot_sensor-ref.struct.json │ ├── iot_sensor.cddl │ ├── primitives-ref.struct.json │ ├── primitives.cddl │ ├── reputon-ref.struct.json │ ├── reputon.cddl │ ├── unwrap-ref.struct.json │ └── unwrap.cddl ├── cs │ ├── twotypeunion │ │ ├── Program.cs │ │ └── twotypeunion-test.csproj │ └── typemapunion │ │ ├── Program.cs │ │ └── typemapunion-test.csproj ├── csv │ └── addresses.csv ├── gtfsrt │ └── gtfsrt.proto ├── java │ ├── complexunion │ │ ├── .gitignore │ │ ├── app │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── App.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── AppTest.java │ │ └── pom.xml │ └── twotypeunion │ │ ├── .gitignore │ │ ├── app │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── App.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── AppTest.java │ │ └── pom.xml ├── jsons │ ├── abstract-extends-ref.datapackage │ ├── abstract-extends.struct.json │ ├── addlprops1-ref.avsc │ ├── addlprops1-ref.struct.json │ ├── addlprops1.json │ ├── addlprops2-ref.avsc │ ├── addlprops2-ref.struct.json │ ├── addlprops2.json │ ├── addlprops3-ref.avsc │ ├── addlprops3-ref.struct.json │ ├── addlprops3.json │ ├── address-ref-ref.datapackage │ ├── address-ref.struct.json │ ├── address.jsons │ ├── anyof-ref-composed.struct.json │ ├── anyof-ref-flattened.struct.json │ ├── anyof-ref.avsc │ ├── anyof-ref.struct.json │ ├── anyof.json │ ├── anyof.structure-ref-composed.struct.json │ ├── anyof.structure-ref-flattened.struct.json │ ├── anyof.structure.json │ ├── arraydef-ref-ref.datapackage │ ├── arraydef-ref.avsc │ ├── arraydef-ref.struct.json │ ├── arraydef.json │ ├── avro-avsc-ref-composed.struct.json │ ├── avro-avsc-ref-flattened.struct.json │ ├── avro-avsc-ref.struct.json │ ├── avro-avsc.json │ ├── azurestorage-ref-composed.struct.json │ ├── azurestorage-ref-flattened.struct.json │ ├── azurestorage-ref.struct.json │ ├── azurestorage.jsons │ ├── circularrefs-ref-composed.struct.json │ ├── circularrefs-ref-flattened.struct.json │ ├── circularrefs-ref.avsc │ ├── circularrefs-ref.struct.json │ ├── circularrefs.json │ ├── cloudify-ref-composed.struct.json │ ├── cloudify-ref-flattened.struct.json │ ├── cloudify-ref.struct.json │ ├── cloudify.json │ ├── composition-features-ref.datapackage │ ├── composition-features.struct.json │ ├── composition-ref-composed.struct.json │ ├── composition-ref-flattened.struct.json │ ├── composition-ref.struct.json │ ├── composition.json │ ├── comprehensive-features-ref.datapackage │ ├── comprehensive-features.struct.json │ ├── comprehensive-test.struct.json │ ├── conditional-schema-patterns-ref.avsc │ ├── conditional-schema-patterns.json │ ├── databricks-asset-bundles-ref-composed.struct.json │ ├── databricks-asset-bundles-ref-flattened.struct.json │ ├── databricks-asset-bundles-ref.struct.json │ ├── databricks-asset-bundles.json │ ├── discriminated-union-array-complex-data.json │ ├── discriminated-union-array-complex.json │ ├── discriminated-union-nested-data.json │ ├── discriminated-union-nested-ref.avsc │ ├── discriminated-union-nested.json │ ├── discriminated-union-simple-data.json │ ├── discriminated-union-simple-ref.avsc │ ├── discriminated-union-simple.json │ ├── employee-ref-composed.struct.json │ ├── employee-ref-flattened.struct.json │ ├── employee-ref-ref.datapackage │ ├── employee-ref.struct.json │ ├── employee.jsons │ ├── jfrog-pipelines-ref-composed.struct.json │ ├── jfrog-pipelines-ref-flattened.struct.json │ ├── jfrog-pipelines-ref.avsc │ ├── jfrog-pipelines-ref.struct.json │ ├── jfrog-pipelines.json │ ├── jfrog-pipelines.structure-ref-composed.struct.json │ ├── jfrog-pipelines.structure-ref-flattened.struct.json │ ├── jfrog-pipelines.structure-ref.struct.json │ ├── jfrog-pipelines.structure.json │ ├── kubernetes-definitions-ref-composed.struct.json │ ├── kubernetes-definitions-ref-flattened.struct.json │ ├── kubernetes-definitions-ref.struct.json │ ├── kubernetes-definitions.json │ ├── large-schema-test.json │ ├── mixed-type-enum-ref.avsc │ ├── mixed-type-enum.json │ ├── movie-ref.struct.json │ ├── movie.jsons │ ├── oneof-with-title-data.json │ ├── oneof-with-title-ref.avsc │ ├── oneof-with-title.json │ ├── optional-nested-union-data.json │ ├── optional-nested-union.json │ ├── partial-eslint-plugins-ref-composed.struct.json │ ├── partial-eslint-plugins-ref-flattened.struct.json │ ├── partial-eslint-plugins-ref.struct.json │ ├── partial-eslint-plugins.json │ ├── patternprops1-ref.struct.json │ ├── patternprops1.json │ ├── patternprops2-ref.struct.json │ ├── patternprops2.json │ ├── person-ref-composed.struct.json │ ├── person-ref-flattened.struct.json │ ├── person-ref.avsc │ ├── person-ref.struct.json │ ├── person.jsons │ ├── rootarray-ref.avsc │ ├── rootarray-ref.struct.json │ ├── rootarray.jsons │ ├── test-abstract-validation.struct.json │ ├── test-addins.struct.json │ ├── test-additional-props-true.struct.json │ ├── test-all-primitives.struct.json │ ├── test-choice-inline.struct.json │ ├── test-choice-tagged.struct.json │ ├── test-discriminated-union-ref-composed.struct.json │ ├── test-discriminated-union-ref-flattened.struct.json │ ├── test-discriminated-union-ref.struct.json │ ├── test-discriminated-union.json │ ├── test-enum-const.struct.json │ ├── test-sealed.struct.json │ ├── test-tuple.struct.json │ ├── test-validation-attributes.struct.json │ ├── travis-ref-composed.struct.json │ ├── travis-ref-flattened.struct.json │ ├── travis-ref.struct.json │ ├── travis.json │ ├── userprofile-ref.struct.json │ ├── userprofile.jsons │ ├── usingrefs-ref-test.struct-ref.struct.json │ ├── usingrefs-ref-test.struct.json │ ├── usingrefs-ref.avsc │ ├── usingrefs-ref.struct.json │ ├── usingrefs.json │ ├── venvironment-schema-ref-composed.struct.json │ ├── venvironment-schema-ref-flattened.struct.json │ ├── venvironment-schema-ref.struct.json │ └── venvironment-schema.json ├── kstruct │ ├── cardata-ref.avsc │ ├── cardata.json │ ├── players-ref.avsc │ └── players.json ├── openapi │ ├── apis-guru │ │ ├── README.md │ │ ├── giphy-ref.struct.json │ │ ├── giphy.yaml │ │ ├── github-ref.struct.json │ │ ├── github.yaml │ │ ├── healthcare-ref.struct.json │ │ ├── healthcare.yaml │ │ ├── httpbin-ref.struct.json │ │ ├── httpbin.yaml │ │ ├── spotify-ref.struct.json │ │ ├── spotify.yaml │ │ ├── stripe-ref.struct.json │ │ ├── stripe.yaml │ │ ├── trello-ref.struct.json │ │ ├── trello.yaml │ │ ├── tvmaze-ref.struct.json │ │ ├── tvmaze.yaml │ │ ├── xkcd-ref.struct.json │ │ └── xkcd.yaml │ ├── openapi30 │ │ ├── petstore-openapi30-ref.struct.json │ │ └── petstore-openapi30.json │ ├── openapi31 │ │ ├── sample-31-ref.struct.json │ │ └── sample-31.json │ ├── petstore.json │ ├── simple.json │ ├── swagger2 │ │ ├── petstore-swagger2-ref.struct.json │ │ └── petstore-swagger2.json │ └── vehicles.json ├── parquet │ └── address.parquet ├── proto │ ├── address.proto │ ├── enum_proto3-ref.avsc │ ├── enum_proto3.proto │ ├── oneoftest.proto │ ├── twomessage.proto │ └── user.proto ├── proto_buf_test │ ├── README.md │ └── proto │ │ └── foo │ │ └── bar │ │ ├── bizz.proto │ │ └── fuzz.proto ├── run_with_stdin.ps1 ├── struct │ ├── advanced-features-ref.json │ ├── advanced-features.struct-ref.proto │ ├── advanced-features.struct.json │ ├── basic-types-csv-ref.json │ ├── basic-types-ref.json │ ├── basic-types-ref.xsd │ ├── basic-types.struct-ref.avsc │ ├── basic-types.struct-ref.iceberg │ ├── basic-types.struct-ref.md │ ├── basic-types.struct-ref.proto │ ├── basic-types.struct.json │ ├── choice-types-csv-ref.json │ ├── choice-types-ref.json │ ├── choice-types-ref.xsd │ ├── choice-types.struct-ref.avsc │ ├── choice-types.struct-ref.iceberg │ ├── choice-types.struct-ref.md │ ├── choice-types.struct-ref.proto │ ├── choice-types.struct.json │ ├── collections-csv-ref.json │ ├── collections-ref.json │ ├── collections-ref.xsd │ ├── collections.struct-ref.avsc │ ├── collections.struct-ref.iceberg │ ├── collections.struct-ref.md │ ├── collections.struct-ref.proto │ ├── collections.struct.json │ ├── complex-scenario-csv-ref.json │ ├── complex-scenario-ref.json │ ├── complex-scenario-ref.xsd │ ├── complex-scenario.struct-ref.avsc │ ├── complex-scenario.struct-ref.iceberg │ ├── complex-scenario.struct-ref.md │ ├── complex-scenario.struct.json │ ├── descriptions-test-ref.json │ ├── descriptions-test.struct-ref.md │ ├── descriptions-test.struct.json │ ├── edge-cases-csv-ref.json │ ├── edge-cases-ref.json │ ├── edge-cases-ref.xsd │ ├── edge-cases.struct-ref.avsc │ ├── edge-cases.struct-ref.iceberg │ ├── edge-cases.struct-ref.md │ ├── edge-cases.struct.json │ ├── extensions-csv-ref.json │ ├── extensions-ref.json │ ├── extensions-ref.xsd │ ├── extensions.struct-ref.avsc │ ├── extensions.struct-ref.iceberg │ ├── extensions.struct-ref.md │ ├── extensions.struct.json │ ├── inheritance-ref.json │ ├── inheritance.struct-ref.proto │ ├── inheritance.struct.json │ ├── nested-objects-csv-ref.json │ ├── nested-objects-ref.json │ ├── nested-objects-ref.xsd │ ├── nested-objects.struct-ref.avsc │ ├── nested-objects.struct-ref.iceberg │ ├── nested-objects.struct-ref.md │ ├── nested-objects.struct.json │ ├── numeric-types-csv-ref.json │ ├── numeric-types-ref.json │ ├── numeric-types-ref.xsd │ ├── numeric-types.struct-ref.avsc │ ├── numeric-types.struct-ref.iceberg │ ├── numeric-types.struct-ref.md │ ├── numeric-types.struct-ref.proto │ ├── numeric-types.struct.json │ ├── temporal-types-csv-ref.json │ ├── temporal-types-ref.json │ ├── temporal-types-ref.xsd │ ├── temporal-types.struct-ref.avsc │ ├── temporal-types.struct-ref.iceberg │ ├── temporal-types.struct-ref.md │ ├── temporal-types.struct-ref.proto │ ├── temporal-types.struct.json │ ├── tuple-test-ref.json │ ├── tuple-test.struct-ref.proto │ ├── tuple-test.struct.json │ ├── validation-constraints-csv-ref.json │ ├── validation-constraints-ref.json │ ├── validation-constraints-ref.xsd │ ├── validation-constraints.struct-ref.avsc │ ├── validation-constraints.struct-ref.iceberg │ ├── validation-constraints.struct-ref.md │ └── validation-constraints.struct.json ├── test_asn1toavro.py ├── test_avrotocpp.py ├── test_avrotocsharp.py ├── test_avrotodatapackage.py ├── test_avrotodb.py ├── test_avrotogo.py ├── test_avrotographql.py ├── test_avrotoiceberg.py ├── test_avrotojava.py ├── test_avrotojs.py ├── test_avrotojsons.py ├── test_avrotojstruct.py ├── test_avrotokusto.py ├── test_avrotomd.py ├── test_avrotoparquet.py ├── test_avrotoproto.py ├── test_avrotopython.py ├── test_avrotorust.py ├── test_avrotots.py ├── test_avrotoxsd.py ├── test_cddltostructure.py ├── test_jsonstostructure.py ├── test_jsontoavro.py ├── test_jstructtoavro.py ├── test_kstructtoavro.py ├── test_main.py ├── test_openapitostructure.py ├── test_parquettoavro.py ├── test_prototoavro.py ├── test_struct_to_schema_references.py ├── test_structuretocddl.py ├── test_structuretocpp.py ├── test_structuretocsharp.py ├── test_structuretocsv.py ├── test_structuretodatapackage.py ├── test_structuretodb.py ├── test_structuretogo.py ├── test_structuretographql.py ├── test_structuretoiceberg.py ├── test_structuretojava.py ├── test_structuretojs.py ├── test_structuretojsons.py ├── test_structuretokusto.py ├── test_structuretomd.py ├── test_structuretoproto.py ├── test_structuretopython.py ├── test_structuretorust.py ├── test_structuretots.py ├── test_structuretoxsd.py ├── test_xsdtoavro.py └── xsd │ ├── acmt.003.001.08.xsd │ ├── admi.017.001.01.xsd │ ├── crmdata-attrib.xsd │ └── crmdata.xsd ├── tools ├── editvscodeext.py ├── generate_and_validate_j2s.py ├── generate_and_validate_s2j.py ├── generate_composition_variants.py ├── json_structure_instance_validator.py ├── json_structure_schema_validator.py └── manual_validator_test.py ├── updatevsce.ps1 ├── updatevsce.sh └── vscode ├── avrotize ├── .vscode-test.mjs ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.TXT ├── README.md ├── esbuild.js ├── eslint.config.mjs ├── media │ ├── AvrotizeLogo128.png │ └── screenshot.png ├── package-lock.json ├── package.json ├── src │ ├── extension.ts │ └── test │ │ └── extension.test.ts └── tsconfig.json └── package-lock.json /.github/SETUP_STRUCTURIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.github/SETUP_STRUCTURIZE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.github/workflows/build_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/python-runtime-versions-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.github/workflows/python-runtime-versions-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.gitmodules -------------------------------------------------------------------------------- /.playwright-mcp/gallery-tiles-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/.playwright-mcp/gallery-tiles-issue.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include avrotize/prototypes *.avsc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/README.md -------------------------------------------------------------------------------- /analyze_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/analyze_coverage.py -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /avrojson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrojson.md -------------------------------------------------------------------------------- /avrotize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/__init__.py -------------------------------------------------------------------------------- /avrotize/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/__main__.py -------------------------------------------------------------------------------- /avrotize/asn1toavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/asn1toavro.py -------------------------------------------------------------------------------- /avrotize/avrotize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotize.py -------------------------------------------------------------------------------- /avrotize/avrotocpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp.py -------------------------------------------------------------------------------- /avrotize/avrotocpp/CMakeLists.txt.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp/CMakeLists.txt.jinja -------------------------------------------------------------------------------- /avrotize/avrotocpp/build.bat.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp/build.bat.jinja -------------------------------------------------------------------------------- /avrotize/avrotocpp/build.sh.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp/build.sh.jinja -------------------------------------------------------------------------------- /avrotize/avrotocpp/dataclass_body.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp/dataclass_body.jinja -------------------------------------------------------------------------------- /avrotize/avrotocpp/vcpkg.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocpp/vcpkg.json.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp.py -------------------------------------------------------------------------------- /avrotize/avrotocsharp/README.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/README.md.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/class_test.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/class_test.cs.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/dataclass_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/dataclass_core.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/enum_test.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/enum_test.cs.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/project.csproj.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/project.csproj.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/project.sln.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/project.sln.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/run_coverage.ps1.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/run_coverage.ps1.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/run_coverage.sh.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/run_coverage.sh.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsharp/testproject.csproj.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsharp/testproject.csproj.jinja -------------------------------------------------------------------------------- /avrotize/avrotocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotocsv.py -------------------------------------------------------------------------------- /avrotize/avrotodatapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotodatapackage.py -------------------------------------------------------------------------------- /avrotize/avrotodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotodb.py -------------------------------------------------------------------------------- /avrotize/avrotogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo.py -------------------------------------------------------------------------------- /avrotize/avrotogo/go_enum.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo/go_enum.jinja -------------------------------------------------------------------------------- /avrotize/avrotogo/go_helpers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo/go_helpers.jinja -------------------------------------------------------------------------------- /avrotize/avrotogo/go_struct.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo/go_struct.jinja -------------------------------------------------------------------------------- /avrotize/avrotogo/go_test.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo/go_test.jinja -------------------------------------------------------------------------------- /avrotize/avrotogo/go_union.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotogo/go_union.jinja -------------------------------------------------------------------------------- /avrotize/avrotographql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotographql.py -------------------------------------------------------------------------------- /avrotize/avrotoiceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotoiceberg.py -------------------------------------------------------------------------------- /avrotize/avrotojava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojava.py -------------------------------------------------------------------------------- /avrotize/avrotojava/class_test.java.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojava/class_test.java.jinja -------------------------------------------------------------------------------- /avrotize/avrotojava/enum_test.java.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojava/enum_test.java.jinja -------------------------------------------------------------------------------- /avrotize/avrotojava/testproject.pom.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojava/testproject.pom.jinja -------------------------------------------------------------------------------- /avrotize/avrotojs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojs.py -------------------------------------------------------------------------------- /avrotize/avrotojsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojsons.py -------------------------------------------------------------------------------- /avrotize/avrotojstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotojstruct.py -------------------------------------------------------------------------------- /avrotize/avrotokusto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotokusto.py -------------------------------------------------------------------------------- /avrotize/avrotomd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotomd.py -------------------------------------------------------------------------------- /avrotize/avrotomd/README.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotomd/README.md.jinja -------------------------------------------------------------------------------- /avrotize/avrotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotools.py -------------------------------------------------------------------------------- /avrotize/avrotoparquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotoparquet.py -------------------------------------------------------------------------------- /avrotize/avrotoproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotoproto.py -------------------------------------------------------------------------------- /avrotize/avrotopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython.py -------------------------------------------------------------------------------- /avrotize/avrotopython/dataclass_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython/dataclass_core.jinja -------------------------------------------------------------------------------- /avrotize/avrotopython/enum_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython/enum_core.jinja -------------------------------------------------------------------------------- /avrotize/avrotopython/pyproject_toml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython/pyproject_toml.jinja -------------------------------------------------------------------------------- /avrotize/avrotopython/test_class.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython/test_class.jinja -------------------------------------------------------------------------------- /avrotize/avrotopython/test_enum.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotopython/test_enum.jinja -------------------------------------------------------------------------------- /avrotize/avrotorust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotorust.py -------------------------------------------------------------------------------- /avrotize/avrotorust/dataclass_enum.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotorust/dataclass_enum.rs.jinja -------------------------------------------------------------------------------- /avrotize/avrotorust/dataclass_struct.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotorust/dataclass_struct.rs.jinja -------------------------------------------------------------------------------- /avrotize/avrotorust/dataclass_union.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotorust/dataclass_union.rs.jinja -------------------------------------------------------------------------------- /avrotize/avrotots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots.py -------------------------------------------------------------------------------- /avrotize/avrotots/class_core.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/class_core.ts.jinja -------------------------------------------------------------------------------- /avrotize/avrotots/class_test.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/class_test.ts.jinja -------------------------------------------------------------------------------- /avrotize/avrotots/enum_core.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/enum_core.ts.jinja -------------------------------------------------------------------------------- /avrotize/avrotots/gitignore.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/gitignore.jinja -------------------------------------------------------------------------------- /avrotize/avrotots/index.ts.jinja: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avrotize/avrotots/package.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/package.json.jinja -------------------------------------------------------------------------------- /avrotize/avrotots/tsconfig.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotots/tsconfig.json.jinja -------------------------------------------------------------------------------- /avrotize/avrotoxsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/avrotoxsd.py -------------------------------------------------------------------------------- /avrotize/cddltostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/cddltostructure.py -------------------------------------------------------------------------------- /avrotize/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/commands.json -------------------------------------------------------------------------------- /avrotize/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/common.py -------------------------------------------------------------------------------- /avrotize/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/constants.py -------------------------------------------------------------------------------- /avrotize/csvtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/csvtoavro.py -------------------------------------------------------------------------------- /avrotize/datapackagetoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/datapackagetoavro.py -------------------------------------------------------------------------------- /avrotize/dependencies/cpp/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/cpp/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /avrotize/dependencies/cs/net90/dependencies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/cs/net90/dependencies.csproj -------------------------------------------------------------------------------- /avrotize/dependencies/go/go121/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/go/go121/go.mod -------------------------------------------------------------------------------- /avrotize/dependencies/java/jdk21/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/java/jdk21/pom.xml -------------------------------------------------------------------------------- /avrotize/dependencies/python/py312/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/python/py312/requirements.txt -------------------------------------------------------------------------------- /avrotize/dependencies/rust/stable/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/rust/stable/Cargo.toml -------------------------------------------------------------------------------- /avrotize/dependencies/typescript/node22/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependencies/typescript/node22/package.json -------------------------------------------------------------------------------- /avrotize/dependency_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependency_resolver.py -------------------------------------------------------------------------------- /avrotize/dependency_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/dependency_version.py -------------------------------------------------------------------------------- /avrotize/generic/generic.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/generic/generic.avsc -------------------------------------------------------------------------------- /avrotize/jsonstoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/jsonstoavro.py -------------------------------------------------------------------------------- /avrotize/jsonstostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/jsonstostructure.py -------------------------------------------------------------------------------- /avrotize/jstructtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/jstructtoavro.py -------------------------------------------------------------------------------- /avrotize/kstructtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/kstructtoavro.py -------------------------------------------------------------------------------- /avrotize/kustotoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/kustotoavro.py -------------------------------------------------------------------------------- /avrotize/openapitostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/openapitostructure.py -------------------------------------------------------------------------------- /avrotize/parquettoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/parquettoavro.py -------------------------------------------------------------------------------- /avrotize/proto2parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/proto2parser.py -------------------------------------------------------------------------------- /avrotize/proto3parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/proto3parser.py -------------------------------------------------------------------------------- /avrotize/prototoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototoavro.py -------------------------------------------------------------------------------- /avrotize/prototypes/any.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/any.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/api.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/api.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/duration.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/duration.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/field_mask.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/field_mask.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/struct.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/struct.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/timestamp.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/timestamp.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/type.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/type.avsc -------------------------------------------------------------------------------- /avrotize/prototypes/wrappers.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/prototypes/wrappers.avsc -------------------------------------------------------------------------------- /avrotize/structuretocddl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocddl.py -------------------------------------------------------------------------------- /avrotize/structuretocpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp.py -------------------------------------------------------------------------------- /avrotize/structuretocpp/CMakeLists.txt.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp/CMakeLists.txt.jinja -------------------------------------------------------------------------------- /avrotize/structuretocpp/build.bat.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp/build.bat.jinja -------------------------------------------------------------------------------- /avrotize/structuretocpp/build.sh.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp/build.sh.jinja -------------------------------------------------------------------------------- /avrotize/structuretocpp/dataclass_body.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp/dataclass_body.jinja -------------------------------------------------------------------------------- /avrotize/structuretocpp/vcpkg.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocpp/vcpkg.json.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp.py -------------------------------------------------------------------------------- /avrotize/structuretocsharp/class_test.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/class_test.cs.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/dataclass_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/dataclass_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/enum_test.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/enum_test.cs.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/json_structure_converters.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/json_structure_converters.cs.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/program.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/program.cs.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/project.csproj.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/project.csproj.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/project.sln.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/project.sln.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/testproject.csproj.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/testproject.csproj.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsharp/tuple_converter.cs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsharp/tuple_converter.cs.jinja -------------------------------------------------------------------------------- /avrotize/structuretocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretocsv.py -------------------------------------------------------------------------------- /avrotize/structuretodatapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretodatapackage.py -------------------------------------------------------------------------------- /avrotize/structuretodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretodb.py -------------------------------------------------------------------------------- /avrotize/structuretogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo.py -------------------------------------------------------------------------------- /avrotize/structuretogo/go_enum.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo/go_enum.jinja -------------------------------------------------------------------------------- /avrotize/structuretogo/go_helpers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo/go_helpers.jinja -------------------------------------------------------------------------------- /avrotize/structuretogo/go_interface.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo/go_interface.jinja -------------------------------------------------------------------------------- /avrotize/structuretogo/go_struct.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo/go_struct.jinja -------------------------------------------------------------------------------- /avrotize/structuretogo/go_test.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretogo/go_test.jinja -------------------------------------------------------------------------------- /avrotize/structuretographql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretographql.py -------------------------------------------------------------------------------- /avrotize/structuretoiceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretoiceberg.py -------------------------------------------------------------------------------- /avrotize/structuretojava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava.py -------------------------------------------------------------------------------- /avrotize/structuretojava/choice_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/choice_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretojava/class_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/class_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretojava/enum_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/enum_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretojava/equals_hashcode.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/equals_hashcode.jinja -------------------------------------------------------------------------------- /avrotize/structuretojava/pom.xml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/pom.xml.jinja -------------------------------------------------------------------------------- /avrotize/structuretojava/tuple_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojava/tuple_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs.py -------------------------------------------------------------------------------- /avrotize/structuretojs/class_core.js.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/class_core.js.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs/enum_core.js.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/enum_core.js.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs/package.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/package.json.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs/test_class.js.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/test_class.js.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs/test_enum.js.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/test_enum.js.jinja -------------------------------------------------------------------------------- /avrotize/structuretojs/test_runner.js.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojs/test_runner.js.jinja -------------------------------------------------------------------------------- /avrotize/structuretojsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretojsons.py -------------------------------------------------------------------------------- /avrotize/structuretokusto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretokusto.py -------------------------------------------------------------------------------- /avrotize/structuretomd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretomd.py -------------------------------------------------------------------------------- /avrotize/structuretomd/README.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretomd/README.md.jinja -------------------------------------------------------------------------------- /avrotize/structuretoproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretoproto.py -------------------------------------------------------------------------------- /avrotize/structuretopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython.py -------------------------------------------------------------------------------- /avrotize/structuretopython/dataclass_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/dataclass_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretopython/enum_core.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/enum_core.jinja -------------------------------------------------------------------------------- /avrotize/structuretopython/map_alias.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/map_alias.jinja -------------------------------------------------------------------------------- /avrotize/structuretopython/pyproject_toml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/pyproject_toml.jinja -------------------------------------------------------------------------------- /avrotize/structuretopython/test_class.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/test_class.jinja -------------------------------------------------------------------------------- /avrotize/structuretopython/test_enum.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretopython/test_enum.jinja -------------------------------------------------------------------------------- /avrotize/structuretorust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretorust.py -------------------------------------------------------------------------------- /avrotize/structuretorust/dataclass_enum.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretorust/dataclass_enum.rs.jinja -------------------------------------------------------------------------------- /avrotize/structuretorust/dataclass_struct.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretorust/dataclass_struct.rs.jinja -------------------------------------------------------------------------------- /avrotize/structuretorust/dataclass_union.rs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretorust/dataclass_union.rs.jinja -------------------------------------------------------------------------------- /avrotize/structuretots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots.py -------------------------------------------------------------------------------- /avrotize/structuretots/class_core.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/class_core.ts.jinja -------------------------------------------------------------------------------- /avrotize/structuretots/enum_core.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/enum_core.ts.jinja -------------------------------------------------------------------------------- /avrotize/structuretots/gitignore.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/gitignore.jinja -------------------------------------------------------------------------------- /avrotize/structuretots/index.ts.jinja: -------------------------------------------------------------------------------- 1 | // Auto-generated index file 2 | -------------------------------------------------------------------------------- /avrotize/structuretots/package.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/package.json.jinja -------------------------------------------------------------------------------- /avrotize/structuretots/test_class.ts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/test_class.ts.jinja -------------------------------------------------------------------------------- /avrotize/structuretots/tsconfig.json.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretots/tsconfig.json.jinja -------------------------------------------------------------------------------- /avrotize/structuretoxsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/structuretoxsd.py -------------------------------------------------------------------------------- /avrotize/xsdtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/avrotize/xsdtoavro.py -------------------------------------------------------------------------------- /cddl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/cddl.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/cli.py -------------------------------------------------------------------------------- /csharpcodegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/csharpcodegen.md -------------------------------------------------------------------------------- /javacodegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/javacodegen.md -------------------------------------------------------------------------------- /jsonschema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/jsonschema.md -------------------------------------------------------------------------------- /jsonschematostructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/jsonschematostructure.md -------------------------------------------------------------------------------- /jsonstructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/jsonstructure.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/mypy.ini -------------------------------------------------------------------------------- /nosqlcodegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/nosqlcodegen.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas/accelerator.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/schemas/accelerator.avsc -------------------------------------------------------------------------------- /schemas/kconnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/schemas/kconnect.json -------------------------------------------------------------------------------- /schemas/test_messages_proto3.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/schemas/test_messages_proto3.avsc -------------------------------------------------------------------------------- /scripts/build_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/scripts/build_gallery.py -------------------------------------------------------------------------------- /specs/avro-schema-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/specs/avro-schema-schema.json -------------------------------------------------------------------------------- /specs/avro-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/specs/avro-schema.md -------------------------------------------------------------------------------- /specs/avrotize-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/specs/avrotize-schema.md -------------------------------------------------------------------------------- /sqlcodegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/sqlcodegen.md -------------------------------------------------------------------------------- /structuretojsonschema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structuretojsonschema.md -------------------------------------------------------------------------------- /structurize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/.gitignore -------------------------------------------------------------------------------- /structurize/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/MANIFEST.in -------------------------------------------------------------------------------- /structurize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/README.md -------------------------------------------------------------------------------- /structurize/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/build.ps1 -------------------------------------------------------------------------------- /structurize/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/build.sh -------------------------------------------------------------------------------- /structurize/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/structurize/pyproject.toml -------------------------------------------------------------------------------- /test/MINIMAL_TEST_CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/MINIMAL_TEST_CASES.md -------------------------------------------------------------------------------- /test/__init.py__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/asn1/ldap3.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/asn1/ldap3.asn -------------------------------------------------------------------------------- /test/asn1/movie.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/asn1/movie.asn -------------------------------------------------------------------------------- /test/asn1/person.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/asn1/person.asn -------------------------------------------------------------------------------- /test/avsc/address-avro-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-avro-ref.graphql -------------------------------------------------------------------------------- /test/avsc/address-ce-dt-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ce-dt-ref.kql -------------------------------------------------------------------------------- /test/avsc/address-ce-dt-struct-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ce-dt-struct-ref.kql -------------------------------------------------------------------------------- /test/avsc/address-ce-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ce-ref.kql -------------------------------------------------------------------------------- /test/avsc/address-ce-struct-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ce-struct-ref.kql -------------------------------------------------------------------------------- /test/avsc/address-nn-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-nn-ref.json -------------------------------------------------------------------------------- /test/avsc/address-nn-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-nn-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/address-nn.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-nn.avsc -------------------------------------------------------------------------------- /test/avsc/address-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ref.graphql -------------------------------------------------------------------------------- /test/avsc/address-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ref.json -------------------------------------------------------------------------------- /test/avsc/address-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ref.kql -------------------------------------------------------------------------------- /test/avsc/address-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/address-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-ref.xsd -------------------------------------------------------------------------------- /test/avsc/address-struct-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address-struct-ref.kql -------------------------------------------------------------------------------- /test/avsc/address.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address.avsc -------------------------------------------------------------------------------- /test/avsc/address.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/address.pcf -------------------------------------------------------------------------------- /test/avsc/alltypes-optional.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/alltypes-optional.avsc -------------------------------------------------------------------------------- /test/avsc/complexunion-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/complexunion-ref.graphql -------------------------------------------------------------------------------- /test/avsc/complexunion-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/complexunion-ref.json -------------------------------------------------------------------------------- /test/avsc/complexunion-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/complexunion-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/complexunion.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/complexunion.avsc -------------------------------------------------------------------------------- /test/avsc/compounds-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/compounds-ref.graphql -------------------------------------------------------------------------------- /test/avsc/compounds-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/compounds-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/enumfield-lower.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-lower.avsc -------------------------------------------------------------------------------- /test/avsc/enumfield-ordinals-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ordinals-ref.json -------------------------------------------------------------------------------- /test/avsc/enumfield-ordinals-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ordinals-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/enumfield-ordinals.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ordinals.avsc -------------------------------------------------------------------------------- /test/avsc/enumfield-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ref.graphql -------------------------------------------------------------------------------- /test/avsc/enumfield-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ref.json -------------------------------------------------------------------------------- /test/avsc/enumfield-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/enumfield.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enumfield.avsc -------------------------------------------------------------------------------- /test/avsc/enums-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enums-ref.graphql -------------------------------------------------------------------------------- /test/avsc/enums-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/enums-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/extendedprimitives-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/extendedprimitives-ref.graphql -------------------------------------------------------------------------------- /test/avsc/extendedprimitives-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/extendedprimitives-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/feeditem-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/feeditem-ref.json -------------------------------------------------------------------------------- /test/avsc/feeditem-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/feeditem-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/feeditem.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/feeditem.avsc -------------------------------------------------------------------------------- /test/avsc/fileblob-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fileblob-ref.json -------------------------------------------------------------------------------- /test/avsc/fileblob-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fileblob-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/fileblob.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fileblob.avsc -------------------------------------------------------------------------------- /test/avsc/fixed-field.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fixed-field.avsc -------------------------------------------------------------------------------- /test/avsc/fixed-type-2-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fixed-type-2-ref.json -------------------------------------------------------------------------------- /test/avsc/fixed-type-2.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fixed-type-2.avsc -------------------------------------------------------------------------------- /test/avsc/fixed-type-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fixed-type-ref.json -------------------------------------------------------------------------------- /test/avsc/fixed-type.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/fixed-type.avsc -------------------------------------------------------------------------------- /test/avsc/inheritance-test.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/inheritance-test.struct.json -------------------------------------------------------------------------------- /test/avsc/northwind-avro-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind-avro-ref.graphql -------------------------------------------------------------------------------- /test/avsc/northwind-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind-ref.graphql -------------------------------------------------------------------------------- /test/avsc/northwind-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind-ref.json -------------------------------------------------------------------------------- /test/avsc/northwind-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/northwind-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind-ref.xsd -------------------------------------------------------------------------------- /test/avsc/northwind.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/northwind.avsc -------------------------------------------------------------------------------- /test/avsc/primitives-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/primitives-ref.graphql -------------------------------------------------------------------------------- /test/avsc/primitives-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/primitives-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/primitiveunion-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/primitiveunion-ref.json -------------------------------------------------------------------------------- /test/avsc/primitiveunion.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/primitiveunion.avsc -------------------------------------------------------------------------------- /test/avsc/restricted-namespace.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/restricted-namespace.avsc -------------------------------------------------------------------------------- /test/avsc/telemetry-avro-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-avro-ref.graphql -------------------------------------------------------------------------------- /test/avsc/telemetry-ce-dt-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ce-dt-ref.kql -------------------------------------------------------------------------------- /test/avsc/telemetry-ce-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ce-ref.kql -------------------------------------------------------------------------------- /test/avsc/telemetry-ref.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ref.graphql -------------------------------------------------------------------------------- /test/avsc/telemetry-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ref.json -------------------------------------------------------------------------------- /test/avsc/telemetry-ref.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ref.kql -------------------------------------------------------------------------------- /test/avsc/telemetry-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/telemetry-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry-ref.xsd -------------------------------------------------------------------------------- /test/avsc/telemetry.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/telemetry.avsc -------------------------------------------------------------------------------- /test/avsc/twotypeunion-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/twotypeunion-ref.json -------------------------------------------------------------------------------- /test/avsc/twotypeunion-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/twotypeunion-ref.struct.json -------------------------------------------------------------------------------- /test/avsc/twotypeunion.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/twotypeunion.avsc -------------------------------------------------------------------------------- /test/avsc/typemapunion-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/typemapunion-ref.json -------------------------------------------------------------------------------- /test/avsc/typemapunion.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/typemapunion.avsc -------------------------------------------------------------------------------- /test/avsc/typemapunion2-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/typemapunion2-ref.json -------------------------------------------------------------------------------- /test/avsc/typemapunion2.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/avsc/typemapunion2.avsc -------------------------------------------------------------------------------- /test/cddl/arrays_maps-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/arrays_maps-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/arrays_maps.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/arrays_maps.cddl -------------------------------------------------------------------------------- /test/cddl/choices-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/choices-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/choices.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/choices.cddl -------------------------------------------------------------------------------- /test/cddl/control_operators-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/control_operators-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/control_operators.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/control_operators.cddl -------------------------------------------------------------------------------- /test/cddl/cose_headers-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/cose_headers-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/cose_headers.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/cose_headers.cddl -------------------------------------------------------------------------------- /test/cddl/cwt_claims-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/cwt_claims-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/cwt_claims.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/cwt_claims.cddl -------------------------------------------------------------------------------- /test/cddl/generics-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/generics-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/generics.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/generics.cddl -------------------------------------------------------------------------------- /test/cddl/iot_sensor-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/iot_sensor-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/iot_sensor.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/iot_sensor.cddl -------------------------------------------------------------------------------- /test/cddl/primitives-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/primitives-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/primitives.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/primitives.cddl -------------------------------------------------------------------------------- /test/cddl/reputon-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/reputon-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/reputon.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/reputon.cddl -------------------------------------------------------------------------------- /test/cddl/unwrap-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/unwrap-ref.struct.json -------------------------------------------------------------------------------- /test/cddl/unwrap.cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cddl/unwrap.cddl -------------------------------------------------------------------------------- /test/cs/twotypeunion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cs/twotypeunion/Program.cs -------------------------------------------------------------------------------- /test/cs/twotypeunion/twotypeunion-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cs/twotypeunion/twotypeunion-test.csproj -------------------------------------------------------------------------------- /test/cs/typemapunion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cs/typemapunion/Program.cs -------------------------------------------------------------------------------- /test/cs/typemapunion/typemapunion-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/cs/typemapunion/typemapunion-test.csproj -------------------------------------------------------------------------------- /test/csv/addresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/csv/addresses.csv -------------------------------------------------------------------------------- /test/gtfsrt/gtfsrt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/gtfsrt/gtfsrt.proto -------------------------------------------------------------------------------- /test/java/complexunion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/complexunion/.gitignore -------------------------------------------------------------------------------- /test/java/complexunion/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/complexunion/app/pom.xml -------------------------------------------------------------------------------- /test/java/complexunion/app/src/main/java/com/example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/complexunion/app/src/main/java/com/example/App.java -------------------------------------------------------------------------------- /test/java/complexunion/app/src/test/java/com/example/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/complexunion/app/src/test/java/com/example/AppTest.java -------------------------------------------------------------------------------- /test/java/complexunion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/complexunion/pom.xml -------------------------------------------------------------------------------- /test/java/twotypeunion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/twotypeunion/.gitignore -------------------------------------------------------------------------------- /test/java/twotypeunion/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/twotypeunion/app/pom.xml -------------------------------------------------------------------------------- /test/java/twotypeunion/app/src/main/java/com/example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/twotypeunion/app/src/main/java/com/example/App.java -------------------------------------------------------------------------------- /test/java/twotypeunion/app/src/test/java/com/example/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/twotypeunion/app/src/test/java/com/example/AppTest.java -------------------------------------------------------------------------------- /test/java/twotypeunion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/java/twotypeunion/pom.xml -------------------------------------------------------------------------------- /test/jsons/abstract-extends-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/abstract-extends-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/abstract-extends.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/abstract-extends.struct.json -------------------------------------------------------------------------------- /test/jsons/addlprops1-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops1-ref.avsc -------------------------------------------------------------------------------- /test/jsons/addlprops1-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops1-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/addlprops1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops1.json -------------------------------------------------------------------------------- /test/jsons/addlprops2-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops2-ref.avsc -------------------------------------------------------------------------------- /test/jsons/addlprops2-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops2-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/addlprops2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops2.json -------------------------------------------------------------------------------- /test/jsons/addlprops3-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops3-ref.avsc -------------------------------------------------------------------------------- /test/jsons/addlprops3-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops3-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/addlprops3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/addlprops3.json -------------------------------------------------------------------------------- /test/jsons/address-ref-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/address-ref-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/address-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/address-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/address.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/address.jsons -------------------------------------------------------------------------------- /test/jsons/anyof-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/anyof-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/anyof-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof-ref.avsc -------------------------------------------------------------------------------- /test/jsons/anyof-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/anyof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof.json -------------------------------------------------------------------------------- /test/jsons/anyof.structure-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof.structure-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/anyof.structure-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof.structure-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/anyof.structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/anyof.structure.json -------------------------------------------------------------------------------- /test/jsons/arraydef-ref-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/arraydef-ref-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/arraydef-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/arraydef-ref.avsc -------------------------------------------------------------------------------- /test/jsons/arraydef-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/arraydef-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/arraydef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/arraydef.json -------------------------------------------------------------------------------- /test/jsons/avro-avsc-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/avro-avsc-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/avro-avsc-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/avro-avsc-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/avro-avsc-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/avro-avsc-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/avro-avsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/avro-avsc.json -------------------------------------------------------------------------------- /test/jsons/azurestorage-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/azurestorage-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/azurestorage-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/azurestorage-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/azurestorage-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/azurestorage-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/azurestorage.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/azurestorage.jsons -------------------------------------------------------------------------------- /test/jsons/circularrefs-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/circularrefs-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/circularrefs-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/circularrefs-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/circularrefs-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/circularrefs-ref.avsc -------------------------------------------------------------------------------- /test/jsons/circularrefs-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/circularrefs-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/circularrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/circularrefs.json -------------------------------------------------------------------------------- /test/jsons/cloudify-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/cloudify-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/cloudify-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/cloudify-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/cloudify-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/cloudify-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/cloudify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/cloudify.json -------------------------------------------------------------------------------- /test/jsons/composition-features-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition-features-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/composition-features.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition-features.struct.json -------------------------------------------------------------------------------- /test/jsons/composition-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/composition-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/composition-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/composition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/composition.json -------------------------------------------------------------------------------- /test/jsons/comprehensive-features-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/comprehensive-features-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/comprehensive-features.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/comprehensive-features.struct.json -------------------------------------------------------------------------------- /test/jsons/comprehensive-test.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/comprehensive-test.struct.json -------------------------------------------------------------------------------- /test/jsons/conditional-schema-patterns-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/conditional-schema-patterns-ref.avsc -------------------------------------------------------------------------------- /test/jsons/conditional-schema-patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/conditional-schema-patterns.json -------------------------------------------------------------------------------- /test/jsons/databricks-asset-bundles-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/databricks-asset-bundles-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/databricks-asset-bundles-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/databricks-asset-bundles-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/databricks-asset-bundles-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/databricks-asset-bundles-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/databricks-asset-bundles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/databricks-asset-bundles.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-array-complex-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-array-complex-data.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-array-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-array-complex.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-nested-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-nested-data.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-nested-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-nested-ref.avsc -------------------------------------------------------------------------------- /test/jsons/discriminated-union-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-nested.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-simple-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-simple-data.json -------------------------------------------------------------------------------- /test/jsons/discriminated-union-simple-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-simple-ref.avsc -------------------------------------------------------------------------------- /test/jsons/discriminated-union-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/discriminated-union-simple.json -------------------------------------------------------------------------------- /test/jsons/employee-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/employee-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/employee-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/employee-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/employee-ref-ref.datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/employee-ref-ref.datapackage -------------------------------------------------------------------------------- /test/jsons/employee-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/employee-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/employee.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/employee.jsons -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines-ref.avsc -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines.structure-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines.structure-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines.structure-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines.structure-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines.structure-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines.structure-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/jfrog-pipelines.structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/jfrog-pipelines.structure.json -------------------------------------------------------------------------------- /test/jsons/kubernetes-definitions-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/kubernetes-definitions-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/kubernetes-definitions-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/kubernetes-definitions-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/kubernetes-definitions-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/kubernetes-definitions-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/kubernetes-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/kubernetes-definitions.json -------------------------------------------------------------------------------- /test/jsons/large-schema-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/large-schema-test.json -------------------------------------------------------------------------------- /test/jsons/mixed-type-enum-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/mixed-type-enum-ref.avsc -------------------------------------------------------------------------------- /test/jsons/mixed-type-enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/mixed-type-enum.json -------------------------------------------------------------------------------- /test/jsons/movie-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/movie-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/movie.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/movie.jsons -------------------------------------------------------------------------------- /test/jsons/oneof-with-title-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/oneof-with-title-data.json -------------------------------------------------------------------------------- /test/jsons/oneof-with-title-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/oneof-with-title-ref.avsc -------------------------------------------------------------------------------- /test/jsons/oneof-with-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/oneof-with-title.json -------------------------------------------------------------------------------- /test/jsons/optional-nested-union-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/optional-nested-union-data.json -------------------------------------------------------------------------------- /test/jsons/optional-nested-union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/optional-nested-union.json -------------------------------------------------------------------------------- /test/jsons/partial-eslint-plugins-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/partial-eslint-plugins-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/partial-eslint-plugins-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/partial-eslint-plugins-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/partial-eslint-plugins-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/partial-eslint-plugins-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/partial-eslint-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/partial-eslint-plugins.json -------------------------------------------------------------------------------- /test/jsons/patternprops1-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/patternprops1-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/patternprops1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/patternprops1.json -------------------------------------------------------------------------------- /test/jsons/patternprops2-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/patternprops2-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/patternprops2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/patternprops2.json -------------------------------------------------------------------------------- /test/jsons/person-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/person-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/person-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/person-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/person-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/person-ref.avsc -------------------------------------------------------------------------------- /test/jsons/person-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/person-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/person.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/person.jsons -------------------------------------------------------------------------------- /test/jsons/rootarray-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/rootarray-ref.avsc -------------------------------------------------------------------------------- /test/jsons/rootarray-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/rootarray-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/rootarray.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/rootarray.jsons -------------------------------------------------------------------------------- /test/jsons/test-abstract-validation.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-abstract-validation.struct.json -------------------------------------------------------------------------------- /test/jsons/test-addins.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-addins.struct.json -------------------------------------------------------------------------------- /test/jsons/test-additional-props-true.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-additional-props-true.struct.json -------------------------------------------------------------------------------- /test/jsons/test-all-primitives.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-all-primitives.struct.json -------------------------------------------------------------------------------- /test/jsons/test-choice-inline.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-choice-inline.struct.json -------------------------------------------------------------------------------- /test/jsons/test-choice-tagged.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-choice-tagged.struct.json -------------------------------------------------------------------------------- /test/jsons/test-discriminated-union-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-discriminated-union-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/test-discriminated-union-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-discriminated-union-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/test-discriminated-union-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-discriminated-union-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/test-discriminated-union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-discriminated-union.json -------------------------------------------------------------------------------- /test/jsons/test-enum-const.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-enum-const.struct.json -------------------------------------------------------------------------------- /test/jsons/test-sealed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-sealed.struct.json -------------------------------------------------------------------------------- /test/jsons/test-tuple.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-tuple.struct.json -------------------------------------------------------------------------------- /test/jsons/test-validation-attributes.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/test-validation-attributes.struct.json -------------------------------------------------------------------------------- /test/jsons/travis-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/travis-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/travis-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/travis-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/travis-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/travis-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/travis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/travis.json -------------------------------------------------------------------------------- /test/jsons/userprofile-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/userprofile-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/userprofile.jsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/userprofile.jsons -------------------------------------------------------------------------------- /test/jsons/usingrefs-ref-test.struct-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/usingrefs-ref-test.struct-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/usingrefs-ref-test.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/usingrefs-ref-test.struct.json -------------------------------------------------------------------------------- /test/jsons/usingrefs-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/usingrefs-ref.avsc -------------------------------------------------------------------------------- /test/jsons/usingrefs-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/usingrefs-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/usingrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/usingrefs.json -------------------------------------------------------------------------------- /test/jsons/venvironment-schema-ref-composed.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/venvironment-schema-ref-composed.struct.json -------------------------------------------------------------------------------- /test/jsons/venvironment-schema-ref-flattened.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/venvironment-schema-ref-flattened.struct.json -------------------------------------------------------------------------------- /test/jsons/venvironment-schema-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/venvironment-schema-ref.struct.json -------------------------------------------------------------------------------- /test/jsons/venvironment-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/jsons/venvironment-schema.json -------------------------------------------------------------------------------- /test/kstruct/cardata-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/kstruct/cardata-ref.avsc -------------------------------------------------------------------------------- /test/kstruct/cardata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/kstruct/cardata.json -------------------------------------------------------------------------------- /test/kstruct/players-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/kstruct/players-ref.avsc -------------------------------------------------------------------------------- /test/kstruct/players.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/kstruct/players.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/README.md -------------------------------------------------------------------------------- /test/openapi/apis-guru/giphy-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/giphy-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/giphy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/giphy.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/github-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/github-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/github.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/healthcare-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/healthcare-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/healthcare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/healthcare.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/httpbin-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/httpbin-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/httpbin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/httpbin.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/spotify-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/spotify-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/spotify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/spotify.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/stripe-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/stripe-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/stripe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/stripe.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/trello-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/trello-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/trello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/trello.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/tvmaze-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/tvmaze-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/tvmaze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/tvmaze.yaml -------------------------------------------------------------------------------- /test/openapi/apis-guru/xkcd-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/xkcd-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/apis-guru/xkcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/apis-guru/xkcd.yaml -------------------------------------------------------------------------------- /test/openapi/openapi30/petstore-openapi30-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/openapi30/petstore-openapi30-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/openapi30/petstore-openapi30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/openapi30/petstore-openapi30.json -------------------------------------------------------------------------------- /test/openapi/openapi31/sample-31-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/openapi31/sample-31-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/openapi31/sample-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/openapi31/sample-31.json -------------------------------------------------------------------------------- /test/openapi/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/petstore.json -------------------------------------------------------------------------------- /test/openapi/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/simple.json -------------------------------------------------------------------------------- /test/openapi/swagger2/petstore-swagger2-ref.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/swagger2/petstore-swagger2-ref.struct.json -------------------------------------------------------------------------------- /test/openapi/swagger2/petstore-swagger2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/swagger2/petstore-swagger2.json -------------------------------------------------------------------------------- /test/openapi/vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/openapi/vehicles.json -------------------------------------------------------------------------------- /test/parquet/address.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/parquet/address.parquet -------------------------------------------------------------------------------- /test/proto/address.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/address.proto -------------------------------------------------------------------------------- /test/proto/enum_proto3-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/enum_proto3-ref.avsc -------------------------------------------------------------------------------- /test/proto/enum_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/enum_proto3.proto -------------------------------------------------------------------------------- /test/proto/oneoftest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/oneoftest.proto -------------------------------------------------------------------------------- /test/proto/twomessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/twomessage.proto -------------------------------------------------------------------------------- /test/proto/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto/user.proto -------------------------------------------------------------------------------- /test/proto_buf_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto_buf_test/README.md -------------------------------------------------------------------------------- /test/proto_buf_test/proto/foo/bar/bizz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto_buf_test/proto/foo/bar/bizz.proto -------------------------------------------------------------------------------- /test/proto_buf_test/proto/foo/bar/fuzz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/proto_buf_test/proto/foo/bar/fuzz.proto -------------------------------------------------------------------------------- /test/run_with_stdin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/run_with_stdin.ps1 -------------------------------------------------------------------------------- /test/struct/advanced-features-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/advanced-features-ref.json -------------------------------------------------------------------------------- /test/struct/advanced-features.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/advanced-features.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/advanced-features.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/advanced-features.struct.json -------------------------------------------------------------------------------- /test/struct/basic-types-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types-csv-ref.json -------------------------------------------------------------------------------- /test/struct/basic-types-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types-ref.json -------------------------------------------------------------------------------- /test/struct/basic-types-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types-ref.xsd -------------------------------------------------------------------------------- /test/struct/basic-types.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/basic-types.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/basic-types.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types.struct-ref.md -------------------------------------------------------------------------------- /test/struct/basic-types.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/basic-types.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/basic-types.struct.json -------------------------------------------------------------------------------- /test/struct/choice-types-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types-csv-ref.json -------------------------------------------------------------------------------- /test/struct/choice-types-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types-ref.json -------------------------------------------------------------------------------- /test/struct/choice-types-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types-ref.xsd -------------------------------------------------------------------------------- /test/struct/choice-types.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/choice-types.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/choice-types.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types.struct-ref.md -------------------------------------------------------------------------------- /test/struct/choice-types.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/choice-types.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/choice-types.struct.json -------------------------------------------------------------------------------- /test/struct/collections-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections-csv-ref.json -------------------------------------------------------------------------------- /test/struct/collections-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections-ref.json -------------------------------------------------------------------------------- /test/struct/collections-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections-ref.xsd -------------------------------------------------------------------------------- /test/struct/collections.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/collections.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/collections.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections.struct-ref.md -------------------------------------------------------------------------------- /test/struct/collections.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/collections.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/collections.struct.json -------------------------------------------------------------------------------- /test/struct/complex-scenario-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario-csv-ref.json -------------------------------------------------------------------------------- /test/struct/complex-scenario-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario-ref.json -------------------------------------------------------------------------------- /test/struct/complex-scenario-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario-ref.xsd -------------------------------------------------------------------------------- /test/struct/complex-scenario.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/complex-scenario.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/complex-scenario.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario.struct-ref.md -------------------------------------------------------------------------------- /test/struct/complex-scenario.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/complex-scenario.struct.json -------------------------------------------------------------------------------- /test/struct/descriptions-test-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/descriptions-test-ref.json -------------------------------------------------------------------------------- /test/struct/descriptions-test.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/descriptions-test.struct-ref.md -------------------------------------------------------------------------------- /test/struct/descriptions-test.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/descriptions-test.struct.json -------------------------------------------------------------------------------- /test/struct/edge-cases-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases-csv-ref.json -------------------------------------------------------------------------------- /test/struct/edge-cases-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases-ref.json -------------------------------------------------------------------------------- /test/struct/edge-cases-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases-ref.xsd -------------------------------------------------------------------------------- /test/struct/edge-cases.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/edge-cases.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/edge-cases.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases.struct-ref.md -------------------------------------------------------------------------------- /test/struct/edge-cases.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/edge-cases.struct.json -------------------------------------------------------------------------------- /test/struct/extensions-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions-csv-ref.json -------------------------------------------------------------------------------- /test/struct/extensions-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions-ref.json -------------------------------------------------------------------------------- /test/struct/extensions-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions-ref.xsd -------------------------------------------------------------------------------- /test/struct/extensions.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/extensions.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/extensions.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions.struct-ref.md -------------------------------------------------------------------------------- /test/struct/extensions.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/extensions.struct.json -------------------------------------------------------------------------------- /test/struct/inheritance-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/inheritance-ref.json -------------------------------------------------------------------------------- /test/struct/inheritance.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/inheritance.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/inheritance.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/inheritance.struct.json -------------------------------------------------------------------------------- /test/struct/nested-objects-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects-csv-ref.json -------------------------------------------------------------------------------- /test/struct/nested-objects-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects-ref.json -------------------------------------------------------------------------------- /test/struct/nested-objects-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects-ref.xsd -------------------------------------------------------------------------------- /test/struct/nested-objects.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/nested-objects.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/nested-objects.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects.struct-ref.md -------------------------------------------------------------------------------- /test/struct/nested-objects.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/nested-objects.struct.json -------------------------------------------------------------------------------- /test/struct/numeric-types-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types-csv-ref.json -------------------------------------------------------------------------------- /test/struct/numeric-types-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types-ref.json -------------------------------------------------------------------------------- /test/struct/numeric-types-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types-ref.xsd -------------------------------------------------------------------------------- /test/struct/numeric-types.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/numeric-types.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/numeric-types.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types.struct-ref.md -------------------------------------------------------------------------------- /test/struct/numeric-types.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/numeric-types.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/numeric-types.struct.json -------------------------------------------------------------------------------- /test/struct/temporal-types-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types-csv-ref.json -------------------------------------------------------------------------------- /test/struct/temporal-types-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types-ref.json -------------------------------------------------------------------------------- /test/struct/temporal-types-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types-ref.xsd -------------------------------------------------------------------------------- /test/struct/temporal-types.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/temporal-types.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/temporal-types.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types.struct-ref.md -------------------------------------------------------------------------------- /test/struct/temporal-types.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/temporal-types.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/temporal-types.struct.json -------------------------------------------------------------------------------- /test/struct/tuple-test-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/tuple-test-ref.json -------------------------------------------------------------------------------- /test/struct/tuple-test.struct-ref.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/tuple-test.struct-ref.proto -------------------------------------------------------------------------------- /test/struct/tuple-test.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/tuple-test.struct.json -------------------------------------------------------------------------------- /test/struct/validation-constraints-csv-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints-csv-ref.json -------------------------------------------------------------------------------- /test/struct/validation-constraints-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints-ref.json -------------------------------------------------------------------------------- /test/struct/validation-constraints-ref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints-ref.xsd -------------------------------------------------------------------------------- /test/struct/validation-constraints.struct-ref.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints.struct-ref.avsc -------------------------------------------------------------------------------- /test/struct/validation-constraints.struct-ref.iceberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints.struct-ref.iceberg -------------------------------------------------------------------------------- /test/struct/validation-constraints.struct-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints.struct-ref.md -------------------------------------------------------------------------------- /test/struct/validation-constraints.struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/struct/validation-constraints.struct.json -------------------------------------------------------------------------------- /test/test_asn1toavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_asn1toavro.py -------------------------------------------------------------------------------- /test/test_avrotocpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotocpp.py -------------------------------------------------------------------------------- /test/test_avrotocsharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotocsharp.py -------------------------------------------------------------------------------- /test/test_avrotodatapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotodatapackage.py -------------------------------------------------------------------------------- /test/test_avrotodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotodb.py -------------------------------------------------------------------------------- /test/test_avrotogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotogo.py -------------------------------------------------------------------------------- /test/test_avrotographql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotographql.py -------------------------------------------------------------------------------- /test/test_avrotoiceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotoiceberg.py -------------------------------------------------------------------------------- /test/test_avrotojava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotojava.py -------------------------------------------------------------------------------- /test/test_avrotojs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotojs.py -------------------------------------------------------------------------------- /test/test_avrotojsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotojsons.py -------------------------------------------------------------------------------- /test/test_avrotojstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotojstruct.py -------------------------------------------------------------------------------- /test/test_avrotokusto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotokusto.py -------------------------------------------------------------------------------- /test/test_avrotomd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotomd.py -------------------------------------------------------------------------------- /test/test_avrotoparquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotoparquet.py -------------------------------------------------------------------------------- /test/test_avrotoproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotoproto.py -------------------------------------------------------------------------------- /test/test_avrotopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotopython.py -------------------------------------------------------------------------------- /test/test_avrotorust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotorust.py -------------------------------------------------------------------------------- /test/test_avrotots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotots.py -------------------------------------------------------------------------------- /test/test_avrotoxsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_avrotoxsd.py -------------------------------------------------------------------------------- /test/test_cddltostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_cddltostructure.py -------------------------------------------------------------------------------- /test/test_jsonstostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_jsonstostructure.py -------------------------------------------------------------------------------- /test/test_jsontoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_jsontoavro.py -------------------------------------------------------------------------------- /test/test_jstructtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_jstructtoavro.py -------------------------------------------------------------------------------- /test/test_kstructtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_kstructtoavro.py -------------------------------------------------------------------------------- /test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_main.py -------------------------------------------------------------------------------- /test/test_openapitostructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_openapitostructure.py -------------------------------------------------------------------------------- /test/test_parquettoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_parquettoavro.py -------------------------------------------------------------------------------- /test/test_prototoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_prototoavro.py -------------------------------------------------------------------------------- /test/test_struct_to_schema_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_struct_to_schema_references.py -------------------------------------------------------------------------------- /test/test_structuretocddl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretocddl.py -------------------------------------------------------------------------------- /test/test_structuretocpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretocpp.py -------------------------------------------------------------------------------- /test/test_structuretocsharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretocsharp.py -------------------------------------------------------------------------------- /test/test_structuretocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretocsv.py -------------------------------------------------------------------------------- /test/test_structuretodatapackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretodatapackage.py -------------------------------------------------------------------------------- /test/test_structuretodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretodb.py -------------------------------------------------------------------------------- /test/test_structuretogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretogo.py -------------------------------------------------------------------------------- /test/test_structuretographql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretographql.py -------------------------------------------------------------------------------- /test/test_structuretoiceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretoiceberg.py -------------------------------------------------------------------------------- /test/test_structuretojava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretojava.py -------------------------------------------------------------------------------- /test/test_structuretojs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretojs.py -------------------------------------------------------------------------------- /test/test_structuretojsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretojsons.py -------------------------------------------------------------------------------- /test/test_structuretokusto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretokusto.py -------------------------------------------------------------------------------- /test/test_structuretomd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretomd.py -------------------------------------------------------------------------------- /test/test_structuretoproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretoproto.py -------------------------------------------------------------------------------- /test/test_structuretopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretopython.py -------------------------------------------------------------------------------- /test/test_structuretorust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretorust.py -------------------------------------------------------------------------------- /test/test_structuretots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretots.py -------------------------------------------------------------------------------- /test/test_structuretoxsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_structuretoxsd.py -------------------------------------------------------------------------------- /test/test_xsdtoavro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/test_xsdtoavro.py -------------------------------------------------------------------------------- /test/xsd/acmt.003.001.08.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/xsd/acmt.003.001.08.xsd -------------------------------------------------------------------------------- /test/xsd/admi.017.001.01.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/xsd/admi.017.001.01.xsd -------------------------------------------------------------------------------- /test/xsd/crmdata-attrib.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/xsd/crmdata-attrib.xsd -------------------------------------------------------------------------------- /test/xsd/crmdata.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/test/xsd/crmdata.xsd -------------------------------------------------------------------------------- /tools/editvscodeext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/editvscodeext.py -------------------------------------------------------------------------------- /tools/generate_and_validate_j2s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/generate_and_validate_j2s.py -------------------------------------------------------------------------------- /tools/generate_and_validate_s2j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/generate_and_validate_s2j.py -------------------------------------------------------------------------------- /tools/generate_composition_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/generate_composition_variants.py -------------------------------------------------------------------------------- /tools/json_structure_instance_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/json_structure_instance_validator.py -------------------------------------------------------------------------------- /tools/json_structure_schema_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/json_structure_schema_validator.py -------------------------------------------------------------------------------- /tools/manual_validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/tools/manual_validator_test.py -------------------------------------------------------------------------------- /updatevsce.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/updatevsce.ps1 -------------------------------------------------------------------------------- /updatevsce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/updatevsce.sh -------------------------------------------------------------------------------- /vscode/avrotize/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/.vscode-test.mjs -------------------------------------------------------------------------------- /vscode/avrotize/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/.vscodeignore -------------------------------------------------------------------------------- /vscode/avrotize/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/avrotize/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/LICENSE.TXT -------------------------------------------------------------------------------- /vscode/avrotize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/README.md -------------------------------------------------------------------------------- /vscode/avrotize/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/esbuild.js -------------------------------------------------------------------------------- /vscode/avrotize/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/eslint.config.mjs -------------------------------------------------------------------------------- /vscode/avrotize/media/AvrotizeLogo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/media/AvrotizeLogo128.png -------------------------------------------------------------------------------- /vscode/avrotize/media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/media/screenshot.png -------------------------------------------------------------------------------- /vscode/avrotize/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/package-lock.json -------------------------------------------------------------------------------- /vscode/avrotize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/package.json -------------------------------------------------------------------------------- /vscode/avrotize/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/src/extension.ts -------------------------------------------------------------------------------- /vscode/avrotize/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/src/test/extension.test.ts -------------------------------------------------------------------------------- /vscode/avrotize/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/avrotize/tsconfig.json -------------------------------------------------------------------------------- /vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemensv/avrotize/HEAD/vscode/package-lock.json --------------------------------------------------------------------------------