├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── master.yaml │ ├── setup │ └── action.yaml │ └── test-pr.yaml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── FAQ.md ├── LICENSE ├── README.md ├── biome.json ├── data └── lib.d.ts ├── doc ├── CustomRenderer.md ├── PostmanCollection.schema ├── Templates.md └── Transformers.md ├── media ├── faq │ ├── disable-detect-maps.png │ └── options-panel.png └── quicktype-logo.svg ├── package.json ├── packages ├── quicktype-core │ ├── env.sh │ ├── package.json │ ├── src │ │ ├── Annotation.ts │ │ ├── ConvenienceRenderer.ts │ │ ├── CycleBreaker.ts │ │ ├── DateTime.ts │ │ ├── DeclarationIR.ts │ │ ├── EncodedMarkovChain.ts │ │ ├── GatherNames.ts │ │ ├── Graph.ts │ │ ├── GraphRewriting.ts │ │ ├── Inference.ts │ │ ├── MakeTransformations.ts │ │ ├── MarkovChain.ts │ │ ├── Messages.ts │ │ ├── Naming.ts │ │ ├── Renderer.ts │ │ ├── RendererOptions │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Run.ts │ │ ├── Source.ts │ │ ├── TargetLanguage.ts │ │ ├── Transformers.ts │ │ ├── Type │ │ │ ├── ProvenanceTypeAttributeKind.ts │ │ │ ├── TransformedStringType.ts │ │ │ ├── Type.ts │ │ │ ├── TypeBuilder.ts │ │ │ ├── TypeBuilderUtils.ts │ │ │ ├── TypeGraph.ts │ │ │ ├── TypeGraphUtils.ts │ │ │ ├── TypeRef.ts │ │ │ ├── TypeUtils.ts │ │ │ └── index.ts │ │ ├── UnifyClasses.ts │ │ ├── UnionBuilder.ts │ │ ├── attributes │ │ │ ├── AccessorNames.ts │ │ │ ├── Constraints.ts │ │ │ ├── Description.ts │ │ │ ├── EnumValues.ts │ │ │ ├── StringTypes.ts │ │ │ ├── TypeAttributes.ts │ │ │ ├── TypeNames.ts │ │ │ └── URIAttributes.ts │ │ ├── index.ts │ │ ├── input │ │ │ ├── CompressedJSON.ts │ │ │ ├── FetchingJSONSchemaStore.ts │ │ │ ├── Inference.ts │ │ │ ├── Inputs.ts │ │ │ ├── JSONSchemaInput.ts │ │ │ ├── JSONSchemaStore.ts │ │ │ ├── PathElement.ts │ │ │ ├── PostmanCollection.ts │ │ │ └── io │ │ │ │ ├── $fetch.ci.ts │ │ │ │ ├── $fetch.ts │ │ │ │ ├── NodeIO.ts │ │ │ │ └── get-stream │ │ │ │ ├── buffer-stream.ts │ │ │ │ ├── index.ts │ │ │ │ └── license │ │ ├── language │ │ │ ├── All.ts │ │ │ ├── CJSON │ │ │ │ ├── CJSONRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── CPlusPlus │ │ │ │ ├── CPlusPlusRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── CSharp │ │ │ │ ├── CSharpRenderer.ts │ │ │ │ ├── NewtonSoftCSharpRenderer.ts │ │ │ │ ├── SystemTextJsonCSharpRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Crystal │ │ │ │ ├── CrystalRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Dart │ │ │ │ ├── DartRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Elixir │ │ │ │ ├── ElixirRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Elm │ │ │ │ ├── ElmRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Golang │ │ │ │ ├── GolangRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Haskell │ │ │ │ ├── HaskellRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── JSONSchema │ │ │ │ ├── JSONSchemaRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Java │ │ │ │ ├── DateTimeProvider.ts │ │ │ │ ├── JavaJacksonRenderer.ts │ │ │ │ ├── JavaRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── JavaScript │ │ │ │ ├── JavaScriptRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── unicodeMaps.ts │ │ │ │ └── utils.ts │ │ │ ├── JavaScriptPropTypes │ │ │ │ ├── JavaScriptPropTypesRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ └── language.ts │ │ │ ├── Kotlin │ │ │ │ ├── KotlinJacksonRenderer.ts │ │ │ │ ├── KotlinKlaxonRenderer.ts │ │ │ │ ├── KotlinRenderer.ts │ │ │ │ ├── KotlinXRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Objective-C │ │ │ │ ├── ObjectiveCRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Php │ │ │ │ ├── PhpRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Pike │ │ │ │ ├── PikeRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Python │ │ │ │ ├── JSONPythonRenderer.ts │ │ │ │ ├── PythonRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Ruby │ │ │ │ ├── RubyRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Rust │ │ │ │ ├── RustRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Scala3 │ │ │ │ ├── CirceRenderer.ts │ │ │ │ ├── Scala3Renderer.ts │ │ │ │ ├── UpickleRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Smithy4s │ │ │ │ ├── Smithy4sRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── Swift │ │ │ │ ├── SwiftRenderer.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── TypeScriptEffectSchema │ │ │ │ ├── TypeScriptEffectSchemaRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ └── language.ts │ │ │ ├── TypeScriptFlow │ │ │ │ ├── FlowRenderer.ts │ │ │ │ ├── TypeScriptFlowBaseRenderer.ts │ │ │ │ ├── TypeScriptRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ └── utils.ts │ │ │ ├── TypeScriptZod │ │ │ │ ├── TypeScriptZodRenderer.ts │ │ │ │ ├── index.ts │ │ │ │ └── language.ts │ │ │ ├── index.ts │ │ │ ├── options.types.ts │ │ │ └── types.ts │ │ ├── rewrites │ │ │ ├── CombineClasses.ts │ │ │ ├── ExpandStrings.ts │ │ │ ├── FlattenStrings.ts │ │ │ ├── FlattenUnions.ts │ │ │ ├── InferMaps.ts │ │ │ ├── ReplaceObjectType.ts │ │ │ └── ResolveIntersections.ts │ │ ├── support │ │ │ ├── Acronyms.const.ts │ │ │ ├── Acronyms.ts │ │ │ ├── Chance.ts │ │ │ ├── Comments.ts │ │ │ ├── Converters.ts │ │ │ ├── Strings.ts │ │ │ └── Support.ts │ │ └── types.ts │ └── tsconfig.json ├── quicktype-graphql-input │ ├── package.json │ ├── src │ │ ├── GraphQLSchema.ts │ │ └── index.ts │ └── tsconfig.json ├── quicktype-typescript-input │ ├── package.json │ ├── src │ │ ├── EncodedDefaultTypeScriptLibrary.ts │ │ └── index.ts │ └── tsconfig.json └── quicktype-vscode │ ├── .gitignore │ ├── .vscodeignore │ ├── LICENSE │ ├── README.md │ ├── media │ ├── demo-interactive.gif │ ├── demo.gif │ └── icon.png │ ├── package.json │ ├── quicktype-23.0.122.vsix │ ├── src │ └── extension.ts │ └── tsconfig.json ├── script ├── dev ├── dev.ps1 ├── homebrew-update.sh ├── make-encoded-markov-chain.sh ├── make-encoded-ts-lib.sh ├── patch-npm-version.ts ├── publish.sh ├── quickesttype ├── quicktype ├── test └── watch ├── src ├── CompressedJSONFromStream.ts ├── GraphQLIntrospection.ts ├── TypeSource.ts ├── URLGrammar.ts └── index.ts ├── test ├── .gitignore ├── acronyms.txt ├── awesome-json-datasets ├── buildkite.ts ├── compare-all.sh ├── fixtures.ts ├── fixtures │ ├── cjson │ │ └── main.c │ ├── cplusplus │ │ ├── Generators.hpp │ │ └── main.cpp │ ├── crystal │ │ └── main.cr │ ├── csharp-SystemTextJson │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ └── test.csproj │ ├── csharp │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ └── test.csproj │ ├── dart │ │ └── parser.dart │ ├── elixir │ │ ├── .gitignore │ │ ├── main.exs │ │ ├── mix.exs │ │ └── mix.lock │ ├── elm │ │ ├── .gitignore │ │ ├── Main.elm │ │ ├── elm-package.json │ │ └── runner.js │ ├── flow │ │ ├── .flowconfig │ │ └── main.js │ ├── golang │ │ └── main.go │ ├── haskell │ │ ├── .gitignore │ │ ├── Main.hs │ │ ├── QuickType.hs │ │ ├── Setup.hs │ │ ├── package.yaml │ │ ├── stack.yaml │ │ └── stack.yaml.lock │ ├── java-lombok │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── quicktype │ │ │ ├── App.java │ │ │ ├── Converter.java │ │ │ └── TopLevel.java │ ├── java │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── quicktype │ │ │ ├── App.java │ │ │ ├── Converter.java │ │ │ └── TopLevel.java │ ├── javascript-prop-types │ │ ├── main.js │ │ ├── package-lock.json │ │ └── package.json │ ├── javascript │ │ └── main.js │ ├── kotlin-jackson │ │ ├── .gitignore │ │ ├── build.sh │ │ ├── jackson-annotations-2.9.0.jar │ │ ├── jackson-core-2.9.7.jar │ │ ├── jackson-databind-2.9.7.jar │ │ ├── jackson-module-kotlin-2.9.7.jar │ │ ├── main.kt │ │ ├── run.sh │ │ └── runfixture.sh │ ├── kotlin │ │ ├── .gitignore │ │ ├── TopLevel.kt │ │ ├── build.sh │ │ ├── klaxon-3.0.1.jar │ │ ├── main.kt │ │ ├── run.sh │ │ └── sample.json │ ├── objective-c │ │ ├── ObjectiveCFixture.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── david.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── ObjectiveCFixture.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── QTTopLevel.h │ │ ├── QTTopLevel.m │ │ ├── main.m │ │ └── sample.json │ ├── php │ │ └── main.php │ ├── pike │ │ └── main.pike │ ├── python │ │ ├── main.py │ │ └── run.sh │ ├── ruby │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ └── main.rb │ ├── rust │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── main.rs │ ├── scala3 │ │ ├── .gitignore │ │ ├── circe.scala │ │ ├── rename │ │ │ ├── debug.scala │ │ │ └── upickle.scala │ │ └── run.sh │ ├── swift │ │ ├── .gitignore │ │ ├── SwiftFixture.xcodeproj │ │ │ └── project.pbxproj │ │ ├── main.swift │ │ └── quicktype.swift │ ├── typescript-effect-schema │ │ ├── main.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── typescript-zod │ │ ├── main.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tsconfig.json │ └── typescript │ │ ├── main.ts │ │ └── tsconfig.json ├── generate-json.py ├── generate-markov-corpus.py ├── inputs │ ├── graphql │ │ ├── github.gqlschema │ │ ├── github1.1.json │ │ ├── github1.graphql │ │ ├── github2.1.json │ │ ├── github2.graphql │ │ ├── github3.1.json │ │ ├── github3.graphql │ │ ├── github4.1.json │ │ ├── github4.graphql │ │ ├── github5.1.json │ │ ├── github5.2.json │ │ ├── github5.graphql │ │ ├── github6.1.json │ │ ├── github6.graphql │ │ ├── github7.1.json │ │ ├── github7.graphql │ │ ├── github8.1.json │ │ ├── github8.graphql │ │ ├── github9.1.json │ │ └── github9.graphql │ ├── json │ │ ├── misc │ │ │ ├── 00c36.json │ │ │ ├── 00ec5.json │ │ │ ├── 010b1.json │ │ │ ├── 016af.json │ │ │ ├── 033b1.json │ │ │ ├── 050b0.json │ │ │ ├── 06bee.json │ │ │ ├── 07540.json │ │ │ ├── 0779f.json │ │ │ ├── 07c75.json │ │ │ ├── 09f54.json │ │ │ ├── 0a358.json │ │ │ ├── 0a91a.json │ │ │ ├── 0b91a.json │ │ │ ├── 0cffa.json │ │ │ ├── 0e0c2.json │ │ │ ├── 0fecf.json │ │ │ ├── 10be4.json │ │ │ ├── 112b5.json │ │ │ ├── 127a1.json │ │ │ ├── 13d8d.json │ │ │ ├── 14d38.json │ │ │ ├── 167d6.json │ │ │ ├── 16bc5.json │ │ │ ├── 176f1.json │ │ │ ├── 1a7f5.json │ │ │ ├── 1b28c.json │ │ │ ├── 1b409.json │ │ │ ├── 2465e.json │ │ │ ├── 24f52.json │ │ │ ├── 262f0.json │ │ │ ├── 26b49.json │ │ │ ├── 26c9c.json │ │ │ ├── 27332.json │ │ │ ├── 29f47.json │ │ │ ├── 2d4e2.json │ │ │ ├── 2df80.json │ │ │ ├── 31189.json │ │ │ ├── 32431.json │ │ │ ├── 32d5c.json │ │ │ ├── 337ed.json │ │ │ ├── 33d2e.json │ │ │ ├── 34702.json │ │ │ ├── 3536b.json │ │ │ ├── 3659d.json │ │ │ ├── 36d5d.json │ │ │ ├── 3a6b3.json │ │ │ ├── 3e9a3.json │ │ │ ├── 3f1ce.json │ │ │ ├── 421d4.json │ │ │ ├── 437e7.json │ │ │ ├── 43970.json │ │ │ ├── 43eaf.json │ │ │ ├── 458db.json │ │ │ ├── 4961a.json │ │ │ ├── 4a0d7.json │ │ │ ├── 4a455.json │ │ │ ├── 4c547.json │ │ │ ├── 4d6fb.json │ │ │ ├── 4e336.json │ │ │ ├── 54147.json │ │ │ ├── 54d32.json │ │ │ ├── 570ec.json │ │ │ ├── 5dd0d.json │ │ │ ├── 5eae5.json │ │ │ ├── 5eb20.json │ │ │ ├── 5f3a1.json │ │ │ ├── 5f7fe.json │ │ │ ├── 617e8.json │ │ │ ├── 61b66.json │ │ │ ├── 6260a.json │ │ │ ├── 65dec.json │ │ │ ├── 66121.json │ │ │ ├── 6617c.json │ │ │ ├── 67c03.json │ │ │ ├── 68c30.json │ │ │ ├── 6c155.json │ │ │ ├── 6de06.json │ │ │ ├── 6dec6.json │ │ │ ├── 6eb00.json │ │ │ ├── 70c77.json │ │ │ ├── 734ad.json │ │ │ ├── 75912.json │ │ │ ├── 7681c.json │ │ │ ├── 76ae1.json │ │ │ ├── 77392.json │ │ │ ├── 7d397.json │ │ │ ├── 7d722.json │ │ │ ├── 7df41.json │ │ │ ├── 7dfa6.json │ │ │ ├── 7eb30.json │ │ │ ├── 7f568.json │ │ │ ├── 7fbfb.json │ │ │ ├── 80aff.json │ │ │ ├── 82509.json │ │ │ ├── 8592b.json │ │ │ ├── 88130.json │ │ │ ├── 8a62c.json │ │ │ ├── 908db.json │ │ │ ├── 9617f.json │ │ │ ├── 96f7c.json │ │ │ ├── 9847b.json │ │ │ ├── 9929c.json │ │ │ ├── 996bd.json │ │ │ ├── 9a503.json │ │ │ ├── 9ac3b.json │ │ │ ├── 9eed5.json │ │ │ ├── a0496.json │ │ │ ├── a1eca.json │ │ │ ├── a3d8c.json │ │ │ ├── a45b0.json │ │ │ ├── a71df.json │ │ │ ├── a9691.json │ │ │ ├── ab0d1.json │ │ │ ├── abb4b.json │ │ │ ├── ac944.json │ │ │ ├── ad8be.json │ │ │ ├── ae7f0.json │ │ │ ├── ae9ca.json │ │ │ ├── af2d1.json │ │ │ ├── b4865.json │ │ │ ├── b6f2c.json │ │ │ ├── b6fe5.json │ │ │ ├── b9f64.json │ │ │ ├── bb1ec.json │ │ │ ├── be234.json │ │ │ ├── c0356.json │ │ │ ├── c0a3a.json │ │ │ ├── c3303.json │ │ │ ├── c6cfd.json │ │ │ ├── c8c7e.json │ │ │ ├── cb0cc.json │ │ │ ├── cb81e.json │ │ │ ├── ccd18.json │ │ │ ├── cd238.json │ │ │ ├── cd463.json │ │ │ ├── cda6c.json │ │ │ ├── cf0d8.json │ │ │ ├── cfbce.json │ │ │ ├── d0908.json │ │ │ ├── d23d5.json │ │ │ ├── dbfb3.json │ │ │ ├── dc44f.json │ │ │ ├── dd1ce.json │ │ │ ├── dec3a.json │ │ │ ├── df957.json │ │ │ ├── e0ac7.json │ │ │ ├── e2915.json │ │ │ ├── e2a58.json │ │ │ ├── e324e.json │ │ │ ├── e53b5.json │ │ │ ├── e64a0.json │ │ │ ├── e8a0b.json │ │ │ ├── e8b04.json │ │ │ ├── ed095.json │ │ │ ├── f22f5.json │ │ │ ├── f3139.json │ │ │ ├── f3edf.json │ │ │ ├── f466a.json │ │ │ ├── f6a65.json │ │ │ ├── f74d5.json │ │ │ ├── f82d9.json │ │ │ ├── f974d.json │ │ │ ├── faff5.json │ │ │ ├── fcca3.json │ │ │ └── fd329.json │ │ ├── priority │ │ │ ├── blns-object.json │ │ │ ├── bug427.json │ │ │ ├── bug790.json │ │ │ ├── bug855-short.json │ │ │ ├── bug863.json │ │ │ ├── coin-pairs.json │ │ │ ├── combinations1.json │ │ │ ├── combinations2.json │ │ │ ├── combinations3.json │ │ │ ├── combinations4.json │ │ │ ├── combined-enum.json │ │ │ ├── direct-recursive.json │ │ │ ├── empty-enum.json │ │ │ ├── identifiers.json │ │ │ ├── keywords.json │ │ │ ├── list.json │ │ │ ├── name-style.json │ │ │ ├── nbl-stats.json │ │ │ ├── no-classes.json │ │ │ ├── nst-test-suite.json │ │ │ ├── number-map.json │ │ │ ├── optional-union.json │ │ │ ├── recursive.json │ │ │ ├── simple-identifiers.json │ │ │ ├── union-constructor-clash.json │ │ │ ├── unions.json │ │ │ └── url.json │ │ └── samples │ │ │ ├── bitcoin-block.json │ │ │ ├── getting-started.json │ │ │ ├── github-events.json │ │ │ ├── kitchen-sink.json │ │ │ ├── null-safe.json │ │ │ ├── pokedex.json │ │ │ ├── reddit.json │ │ │ ├── simple-object.json │ │ │ ├── spotify-album.json │ │ │ ├── us-avg-temperatures.json │ │ │ └── us-senators.json │ ├── schema │ │ ├── a │ │ │ └── test2.json │ │ ├── accessors.1.json │ │ ├── accessors.schema │ │ ├── any.1.json │ │ ├── any.2.json │ │ ├── any.3.json │ │ ├── any.schema │ │ ├── b │ │ │ └── test3.json │ │ ├── bool-string.1.fail.bool-string.json │ │ ├── bool-string.1.json │ │ ├── bool-string.1.out.bool-string.json │ │ ├── bool-string.2.json │ │ ├── bool-string.3.json │ │ ├── bool-string.schema │ │ ├── camelCase.schema │ │ ├── camelCase1.json │ │ ├── class-map-union.1.fail.union.json │ │ ├── class-map-union.1.json │ │ ├── class-map-union.2.json │ │ ├── class-map-union.3.json │ │ ├── class-map-union.4.json │ │ ├── class-map-union.schema │ │ ├── class-with-additional.1.fail.union.json │ │ ├── class-with-additional.1.json │ │ ├── class-with-additional.schema │ │ ├── constructor.1.json │ │ ├── constructor.schema │ │ ├── cut-enum.1.json │ │ ├── cut-enum.schema │ │ ├── date-time-or-string.schema │ │ ├── date-time.1.fail.date-time.json │ │ ├── date-time.1.json │ │ ├── date-time.schema │ │ ├── description-with-double-quotes.json │ │ ├── description-with-double-quotes.schema │ │ ├── description.1.json │ │ ├── description.2.json │ │ ├── description.schema │ │ ├── direct-union.1.json │ │ ├── direct-union.schema │ │ ├── enum-with-null.1.json │ │ ├── enum-with-null.2.json │ │ ├── enum-with-null.schema │ │ ├── enum-with-values.schema │ │ ├── enum.1.fail.enum.json │ │ ├── enum.1.json │ │ ├── enum.2.json │ │ ├── enum.3.json │ │ ├── enum.4.json │ │ ├── enum.schema │ │ ├── go-schema-pattern-properties.1.fail.json │ │ ├── go-schema-pattern-properties.1.json │ │ ├── go-schema-pattern-properties.schema │ │ ├── id-no-address.1.json │ │ ├── id-no-address.schema │ │ ├── id-root.1.json │ │ ├── id-root.schema │ │ ├── implicit-all-of.1.json │ │ ├── implicit-all-of.schema │ │ ├── implicit-class-array-union.1.fail.union.json │ │ ├── implicit-class-array-union.1.json │ │ ├── implicit-class-array-union.2.fail.union.json │ │ ├── implicit-class-array-union.2.json │ │ ├── implicit-class-array-union.3.json │ │ ├── implicit-class-array-union.4.json │ │ ├── implicit-class-array-union.5.json │ │ ├── implicit-class-array-union.schema │ │ ├── implicit-one-of.1.json │ │ ├── implicit-one-of.2.json │ │ ├── implicit-one-of.schema │ │ ├── integer-float-union.1.json │ │ ├── integer-float-union.2.json │ │ ├── integer-float-union.schema │ │ ├── integer-string.1.fail.integer-string.json │ │ ├── integer-string.1.json │ │ ├── integer-string.1.out.integer-string.json │ │ ├── integer-string.2.json │ │ ├── integer-string.3.json │ │ ├── integer-string.schema │ │ ├── intersection-nested.schema │ │ ├── intersection.1.fail.no-defaults.json │ │ ├── intersection.1.json │ │ ├── intersection.2.json │ │ ├── intersection.schema │ │ ├── keyword-enum.1.json │ │ ├── keyword-enum.schema │ │ ├── keyword-unions.1.json │ │ ├── keyword-unions.2.json │ │ ├── keyword-unions.schema │ │ ├── list.1.json │ │ ├── list.2.json │ │ ├── list.3.json │ │ ├── list.schema │ │ ├── minmax-integer.1.fail.minmaxInteger.json │ │ ├── minmax-integer.1.json │ │ ├── minmax-integer.schema │ │ ├── minmax.1.fail.minmax.json │ │ ├── minmax.1.json │ │ ├── minmax.schema │ │ ├── minmaxlength.1.fail.minmaxlength.json │ │ ├── minmaxlength.1.json │ │ ├── minmaxlength.schema │ │ ├── multi-type-enum.1.fail.union.json │ │ ├── multi-type-enum.1.json │ │ ├── multi-type-enum.2.json │ │ ├── multi-type-enum.3.json │ │ ├── multi-type-enum.schema │ │ ├── mutually-recursive.1.json │ │ ├── mutually-recursive.2.json │ │ ├── mutually-recursive.schema │ │ ├── non-standard-ref.1.json │ │ ├── non-standard-ref.schema │ │ ├── object-type-required.1.json │ │ ├── object-type-required.2.json │ │ ├── object-type-required.schema │ │ ├── optional-any.1.json │ │ ├── optional-any.2.json │ │ ├── optional-any.schema │ │ ├── pattern.1.fail.pattern.json │ │ ├── pattern.1.json │ │ ├── pattern.schema │ │ ├── postman-collection.1.json │ │ ├── postman-collection.2.json │ │ ├── postman-collection.schema │ │ ├── ref-id-files.1.json │ │ ├── ref-id-files.schema │ │ ├── ref-remote.1.json │ │ ├── ref-remote.2.json │ │ ├── ref-remote.3.json │ │ ├── ref-remote.schema │ │ ├── renaming-bug.schema │ │ ├── required-draft3.schema │ │ ├── required-non-properties.1.json │ │ ├── required-non-properties.schema │ │ ├── required.1.fail.no-defaults.json │ │ ├── required.schema │ │ ├── simple-ref.1.json │ │ ├── simple-ref.1.ref │ │ ├── simple-ref.2.json │ │ ├── simple-ref.3.json │ │ ├── simple-ref.schema │ │ ├── strict-optional.1.fail.strict-optional.json │ │ ├── strict-optional.schema │ │ ├── top-level-enum.1.json │ │ ├── top-level-enum.schema │ │ ├── top-level-primitive.schema │ │ ├── tuple.1.json │ │ ├── tuple.schema │ │ ├── union-list.1.json │ │ ├── union-list.2.json │ │ ├── union-list.3.json │ │ ├── union-list.schema │ │ ├── union.1.json │ │ ├── union.schema │ │ ├── uuid.1.fail.uuid.json │ │ ├── uuid.1.json │ │ ├── uuid.2.json │ │ ├── uuid.schema │ │ └── vega-lite.schema │ ├── spotify-api │ │ ├── Album │ │ │ ├── She's So Unusual.json │ │ │ └── The Best of Keane (Deluxe Edition).json │ │ ├── Artist.json │ │ ├── Playlist.json │ │ ├── Track.json │ │ └── UserProfile.json │ └── urls │ │ └── github.json ├── keywords.py ├── keywords.txt ├── languages.ts ├── lib │ ├── deepEquals.ts │ └── multicore.ts ├── make-keyword-tests.sh ├── run-for-all.sh ├── test-awesome.py ├── test.ts ├── tsconfig.json └── utils.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/workflows/master.yaml -------------------------------------------------------------------------------- /.github/workflows/setup/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/workflows/setup/action.yaml -------------------------------------------------------------------------------- /.github/workflows/test-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.github/workflows/test-pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.14.0 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/biome.json -------------------------------------------------------------------------------- /data/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/data/lib.d.ts -------------------------------------------------------------------------------- /doc/CustomRenderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/doc/CustomRenderer.md -------------------------------------------------------------------------------- /doc/PostmanCollection.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/doc/PostmanCollection.schema -------------------------------------------------------------------------------- /doc/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/doc/Templates.md -------------------------------------------------------------------------------- /doc/Transformers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/doc/Transformers.md -------------------------------------------------------------------------------- /media/faq/disable-detect-maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/media/faq/disable-detect-maps.png -------------------------------------------------------------------------------- /media/faq/options-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/media/faq/options-panel.png -------------------------------------------------------------------------------- /media/quicktype-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/media/quicktype-logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/package.json -------------------------------------------------------------------------------- /packages/quicktype-core/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/env.sh -------------------------------------------------------------------------------- /packages/quicktype-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/package.json -------------------------------------------------------------------------------- /packages/quicktype-core/src/Annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Annotation.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/ConvenienceRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/ConvenienceRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/CycleBreaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/CycleBreaker.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/DateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/DateTime.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/DeclarationIR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/DeclarationIR.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/EncodedMarkovChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/EncodedMarkovChain.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/GatherNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/GatherNames.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Graph.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/GraphRewriting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/GraphRewriting.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Inference.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/MakeTransformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/MakeTransformations.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/MarkovChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/MarkovChain.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Messages.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Naming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Naming.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Renderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/RendererOptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/RendererOptions/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/RendererOptions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/RendererOptions/types.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Run.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Source.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/TargetLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/TargetLanguage.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Transformers.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/ProvenanceTypeAttributeKind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/ProvenanceTypeAttributeKind.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TransformedStringType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TransformedStringType.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/Type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/Type.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeBuilder.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeBuilderUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeBuilderUtils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeGraph.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeGraphUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeGraphUtils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeRef.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/TypeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/TypeUtils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/Type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/Type/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/UnifyClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/UnifyClasses.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/UnionBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/UnionBuilder.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/AccessorNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/AccessorNames.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/Constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/Constraints.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/Description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/Description.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/EnumValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/EnumValues.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/StringTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/StringTypes.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/TypeAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/TypeAttributes.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/TypeNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/TypeNames.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/attributes/URIAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/attributes/URIAttributes.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/CompressedJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/CompressedJSON.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/FetchingJSONSchemaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/FetchingJSONSchemaStore.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/Inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/Inference.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/Inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/Inputs.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/JSONSchemaInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/JSONSchemaInput.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/JSONSchemaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/JSONSchemaStore.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/PathElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/PathElement.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/PostmanCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/PostmanCollection.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/$fetch.ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/$fetch.ci.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/$fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/$fetch.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/NodeIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/NodeIO.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/get-stream/buffer-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/get-stream/buffer-stream.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/get-stream/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/get-stream/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/input/io/get-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/input/io/get-stream/license -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/All.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/All.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CJSON/CJSONRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CJSON/CJSONRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CJSON/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CJSON/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CJSON/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CJSON/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CJSON/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CJSON/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CJSON/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CJSON/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CPlusPlus/CPlusPlusRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CPlusPlus/CPlusPlusRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CPlusPlus/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CPlusPlus/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CPlusPlus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CPlusPlus/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CPlusPlus/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CPlusPlus/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CPlusPlus/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CPlusPlus/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/CSharpRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/CSharpRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/NewtonSoftCSharpRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/NewtonSoftCSharpRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/SystemTextJsonCSharpRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/SystemTextJsonCSharpRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/CSharp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/CSharp/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Crystal/CrystalRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Crystal/CrystalRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Crystal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Crystal/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Crystal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Crystal/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Crystal/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Crystal/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Crystal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Crystal/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Dart/DartRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Dart/DartRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Dart/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Dart/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Dart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Dart/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Dart/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Dart/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Dart/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Dart/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elixir/ElixirRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elixir/ElixirRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elixir/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elixir/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elixir/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elixir/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elixir/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elixir/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elixir/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elixir/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elm/ElmRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elm/ElmRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elm/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elm/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elm/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elm/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elm/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Elm/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Elm/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Golang/GolangRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Golang/GolangRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Golang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Golang/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Golang/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Golang/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Golang/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Golang/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Haskell/HaskellRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Haskell/HaskellRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Haskell/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Haskell/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Haskell/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Haskell/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Haskell/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Haskell/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Haskell/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Haskell/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JSONSchema/JSONSchemaRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JSONSchema/JSONSchemaRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JSONSchema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JSONSchema/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JSONSchema/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JSONSchema/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JSONSchema/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JSONSchema/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/DateTimeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/DateTimeProvider.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/JavaJacksonRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/JavaJacksonRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/JavaRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/JavaRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Java/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Java/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScript/JavaScriptRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScript/JavaScriptRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScript/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScript/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScript/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScript/unicodeMaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScript/unicodeMaps.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScript/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScript/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScriptPropTypes/JavaScriptPropTypesRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScriptPropTypes/JavaScriptPropTypesRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScriptPropTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScriptPropTypes/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/JavaScriptPropTypes/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/JavaScriptPropTypes/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/KotlinJacksonRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/KotlinJacksonRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/KotlinKlaxonRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/KotlinKlaxonRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/KotlinRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/KotlinRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/KotlinXRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/KotlinXRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Kotlin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Kotlin/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Objective-C/ObjectiveCRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Objective-C/ObjectiveCRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Objective-C/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Objective-C/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Objective-C/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Objective-C/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Objective-C/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Objective-C/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Objective-C/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Objective-C/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Php/PhpRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Php/PhpRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Php/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Php/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Php/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Php/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Php/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Php/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Pike/PikeRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Pike/PikeRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Pike/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Pike/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Pike/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Pike/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Pike/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Pike/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Pike/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Pike/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/JSONPythonRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/JSONPythonRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/PythonRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/PythonRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Python/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Python/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Ruby/RubyRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Ruby/RubyRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Ruby/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Ruby/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Ruby/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Ruby/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Ruby/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Ruby/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Ruby/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Ruby/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Rust/RustRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Rust/RustRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Rust/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Rust/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Rust/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Rust/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Rust/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Rust/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Rust/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Rust/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/CirceRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/CirceRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/Scala3Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/Scala3Renderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/UpickleRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/UpickleRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Scala3/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Scala3/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Smithy4s/Smithy4sRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Smithy4s/Smithy4sRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Smithy4s/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Smithy4s/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Smithy4s/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Smithy4s/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Smithy4s/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Smithy4s/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Smithy4s/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Smithy4s/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Swift/SwiftRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Swift/SwiftRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Swift/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Swift/constants.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Swift/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Swift/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Swift/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Swift/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/Swift/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/Swift/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptEffectSchema/TypeScriptEffectSchemaRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptEffectSchema/TypeScriptEffectSchemaRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptEffectSchema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptEffectSchema/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptEffectSchema/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptEffectSchema/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/FlowRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/FlowRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/TypeScriptFlowBaseRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/TypeScriptFlowBaseRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/TypeScriptRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/TypeScriptRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptFlow/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptFlow/utils.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptZod/TypeScriptZodRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptZod/TypeScriptZodRenderer.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptZod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptZod/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/TypeScriptZod/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/TypeScriptZod/language.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/index.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/options.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/options.types.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/language/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/language/types.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/CombineClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/CombineClasses.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/ExpandStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/ExpandStrings.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/FlattenStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/FlattenStrings.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/FlattenUnions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/FlattenUnions.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/InferMaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/InferMaps.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/ReplaceObjectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/ReplaceObjectType.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/rewrites/ResolveIntersections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/rewrites/ResolveIntersections.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Acronyms.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Acronyms.const.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Acronyms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Acronyms.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Chance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Chance.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Comments.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Converters.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Strings.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/support/Support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/support/Support.ts -------------------------------------------------------------------------------- /packages/quicktype-core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/src/types.ts -------------------------------------------------------------------------------- /packages/quicktype-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-core/tsconfig.json -------------------------------------------------------------------------------- /packages/quicktype-graphql-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-graphql-input/package.json -------------------------------------------------------------------------------- /packages/quicktype-graphql-input/src/GraphQLSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-graphql-input/src/GraphQLSchema.ts -------------------------------------------------------------------------------- /packages/quicktype-graphql-input/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-graphql-input/src/index.ts -------------------------------------------------------------------------------- /packages/quicktype-graphql-input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-graphql-input/tsconfig.json -------------------------------------------------------------------------------- /packages/quicktype-typescript-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-typescript-input/package.json -------------------------------------------------------------------------------- /packages/quicktype-typescript-input/src/EncodedDefaultTypeScriptLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-typescript-input/src/EncodedDefaultTypeScriptLibrary.ts -------------------------------------------------------------------------------- /packages/quicktype-typescript-input/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-typescript-input/src/index.ts -------------------------------------------------------------------------------- /packages/quicktype-typescript-input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-typescript-input/tsconfig.json -------------------------------------------------------------------------------- /packages/quicktype-vscode/.gitignore: -------------------------------------------------------------------------------- 1 | out -------------------------------------------------------------------------------- /packages/quicktype-vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/.vscodeignore -------------------------------------------------------------------------------- /packages/quicktype-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/LICENSE -------------------------------------------------------------------------------- /packages/quicktype-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/README.md -------------------------------------------------------------------------------- /packages/quicktype-vscode/media/demo-interactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/media/demo-interactive.gif -------------------------------------------------------------------------------- /packages/quicktype-vscode/media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/media/demo.gif -------------------------------------------------------------------------------- /packages/quicktype-vscode/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/media/icon.png -------------------------------------------------------------------------------- /packages/quicktype-vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/package.json -------------------------------------------------------------------------------- /packages/quicktype-vscode/quicktype-23.0.122.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/quicktype-23.0.122.vsix -------------------------------------------------------------------------------- /packages/quicktype-vscode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/src/extension.ts -------------------------------------------------------------------------------- /packages/quicktype-vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/packages/quicktype-vscode/tsconfig.json -------------------------------------------------------------------------------- /script/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/dev -------------------------------------------------------------------------------- /script/dev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/dev.ps1 -------------------------------------------------------------------------------- /script/homebrew-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/homebrew-update.sh -------------------------------------------------------------------------------- /script/make-encoded-markov-chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/make-encoded-markov-chain.sh -------------------------------------------------------------------------------- /script/make-encoded-ts-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/make-encoded-ts-lib.sh -------------------------------------------------------------------------------- /script/patch-npm-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/patch-npm-version.ts -------------------------------------------------------------------------------- /script/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/publish.sh -------------------------------------------------------------------------------- /script/quickesttype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/quickesttype -------------------------------------------------------------------------------- /script/quicktype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/quicktype -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/script/test -------------------------------------------------------------------------------- /script/watch: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | watch "script/quicktype $@" src packages/*/src 4 | -------------------------------------------------------------------------------- /src/CompressedJSONFromStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/src/CompressedJSONFromStream.ts -------------------------------------------------------------------------------- /src/GraphQLIntrospection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/src/GraphQLIntrospection.ts -------------------------------------------------------------------------------- /src/TypeSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/src/TypeSource.ts -------------------------------------------------------------------------------- /src/URLGrammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/src/URLGrammar.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/acronyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/acronyms.txt -------------------------------------------------------------------------------- /test/awesome-json-datasets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/awesome-json-datasets -------------------------------------------------------------------------------- /test/buildkite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/buildkite.ts -------------------------------------------------------------------------------- /test/compare-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/compare-all.sh -------------------------------------------------------------------------------- /test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures.ts -------------------------------------------------------------------------------- /test/fixtures/cjson/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/cjson/main.c -------------------------------------------------------------------------------- /test/fixtures/cplusplus/Generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/cplusplus/Generators.hpp -------------------------------------------------------------------------------- /test/fixtures/cplusplus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/cplusplus/main.cpp -------------------------------------------------------------------------------- /test/fixtures/crystal/main.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/crystal/main.cr -------------------------------------------------------------------------------- /test/fixtures/csharp-SystemTextJson/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | -------------------------------------------------------------------------------- /test/fixtures/csharp-SystemTextJson/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp-SystemTextJson/.vscode/launch.json -------------------------------------------------------------------------------- /test/fixtures/csharp-SystemTextJson/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp-SystemTextJson/.vscode/tasks.json -------------------------------------------------------------------------------- /test/fixtures/csharp-SystemTextJson/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp-SystemTextJson/Program.cs -------------------------------------------------------------------------------- /test/fixtures/csharp-SystemTextJson/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp-SystemTextJson/test.csproj -------------------------------------------------------------------------------- /test/fixtures/csharp/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | -------------------------------------------------------------------------------- /test/fixtures/csharp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp/.vscode/launch.json -------------------------------------------------------------------------------- /test/fixtures/csharp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp/.vscode/tasks.json -------------------------------------------------------------------------------- /test/fixtures/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp/Program.cs -------------------------------------------------------------------------------- /test/fixtures/csharp/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/csharp/test.csproj -------------------------------------------------------------------------------- /test/fixtures/dart/parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/dart/parser.dart -------------------------------------------------------------------------------- /test/fixtures/elixir/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elixir/.gitignore -------------------------------------------------------------------------------- /test/fixtures/elixir/main.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elixir/main.exs -------------------------------------------------------------------------------- /test/fixtures/elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elixir/mix.exs -------------------------------------------------------------------------------- /test/fixtures/elixir/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elixir/mix.lock -------------------------------------------------------------------------------- /test/fixtures/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff -------------------------------------------------------------------------------- /test/fixtures/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elm/Main.elm -------------------------------------------------------------------------------- /test/fixtures/elm/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elm/elm-package.json -------------------------------------------------------------------------------- /test/fixtures/elm/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/elm/runner.js -------------------------------------------------------------------------------- /test/fixtures/flow/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/flow/.flowconfig -------------------------------------------------------------------------------- /test/fixtures/flow/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/flow/main.js -------------------------------------------------------------------------------- /test/fixtures/golang/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/golang/main.go -------------------------------------------------------------------------------- /test/fixtures/haskell/.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | *.cabal 3 | -------------------------------------------------------------------------------- /test/fixtures/haskell/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/haskell/Main.hs -------------------------------------------------------------------------------- /test/fixtures/haskell/QuickType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/haskell/QuickType.hs -------------------------------------------------------------------------------- /test/fixtures/haskell/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /test/fixtures/haskell/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/haskell/package.yaml -------------------------------------------------------------------------------- /test/fixtures/haskell/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/haskell/stack.yaml -------------------------------------------------------------------------------- /test/fixtures/haskell/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/haskell/stack.yaml.lock -------------------------------------------------------------------------------- /test/fixtures/java-lombok/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/.classpath -------------------------------------------------------------------------------- /test/fixtures/java-lombok/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/.project -------------------------------------------------------------------------------- /test/fixtures/java-lombok/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /test/fixtures/java-lombok/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /test/fixtures/java-lombok/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/pom.xml -------------------------------------------------------------------------------- /test/fixtures/java-lombok/src/main/java/io/quicktype/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/src/main/java/io/quicktype/App.java -------------------------------------------------------------------------------- /test/fixtures/java-lombok/src/main/java/io/quicktype/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java-lombok/src/main/java/io/quicktype/Converter.java -------------------------------------------------------------------------------- /test/fixtures/java-lombok/src/main/java/io/quicktype/TopLevel.java: -------------------------------------------------------------------------------- 1 | package io.quicktype; 2 | 3 | public class TopLevel { 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/.classpath -------------------------------------------------------------------------------- /test/fixtures/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/.project -------------------------------------------------------------------------------- /test/fixtures/java/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /test/fixtures/java/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /test/fixtures/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/pom.xml -------------------------------------------------------------------------------- /test/fixtures/java/src/main/java/io/quicktype/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/src/main/java/io/quicktype/App.java -------------------------------------------------------------------------------- /test/fixtures/java/src/main/java/io/quicktype/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/java/src/main/java/io/quicktype/Converter.java -------------------------------------------------------------------------------- /test/fixtures/java/src/main/java/io/quicktype/TopLevel.java: -------------------------------------------------------------------------------- 1 | package io.quicktype; 2 | 3 | public class TopLevel { 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/javascript-prop-types/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/javascript-prop-types/main.js -------------------------------------------------------------------------------- /test/fixtures/javascript-prop-types/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/javascript-prop-types/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/javascript-prop-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/javascript-prop-types/package.json -------------------------------------------------------------------------------- /test/fixtures/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/javascript/main.js -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/.gitignore: -------------------------------------------------------------------------------- 1 | main.jar 2 | TopLevel.kt 3 | -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/build.sh -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/jackson-annotations-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/jackson-annotations-2.9.0.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/jackson-core-2.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/jackson-core-2.9.7.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/jackson-databind-2.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/jackson-databind-2.9.7.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/jackson-module-kotlin-2.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/jackson-module-kotlin-2.9.7.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/main.kt -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/run.sh -------------------------------------------------------------------------------- /test/fixtures/kotlin-jackson/runfixture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin-jackson/runfixture.sh -------------------------------------------------------------------------------- /test/fixtures/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | main.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin/TopLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin/TopLevel.kt -------------------------------------------------------------------------------- /test/fixtures/kotlin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin/build.sh -------------------------------------------------------------------------------- /test/fixtures/kotlin/klaxon-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin/klaxon-3.0.1.jar -------------------------------------------------------------------------------- /test/fixtures/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin/main.kt -------------------------------------------------------------------------------- /test/fixtures/kotlin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/kotlin/run.sh -------------------------------------------------------------------------------- /test/fixtures/kotlin/sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "David" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/ObjectiveCFixture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/ObjectiveCFixture.xcscheme -------------------------------------------------------------------------------- /test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/ObjectiveCFixture.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /test/fixtures/objective-c/QTTopLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/QTTopLevel.h -------------------------------------------------------------------------------- /test/fixtures/objective-c/QTTopLevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/QTTopLevel.m -------------------------------------------------------------------------------- /test/fixtures/objective-c/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/main.m -------------------------------------------------------------------------------- /test/fixtures/objective-c/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/objective-c/sample.json -------------------------------------------------------------------------------- /test/fixtures/php/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/php/main.php -------------------------------------------------------------------------------- /test/fixtures/pike/main.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/pike/main.pike -------------------------------------------------------------------------------- /test/fixtures/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/python/main.py -------------------------------------------------------------------------------- /test/fixtures/python/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/python/run.sh -------------------------------------------------------------------------------- /test/fixtures/ruby/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /test/fixtures/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/ruby/Gemfile -------------------------------------------------------------------------------- /test/fixtures/ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/ruby/Gemfile.lock -------------------------------------------------------------------------------- /test/fixtures/ruby/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/ruby/main.rb -------------------------------------------------------------------------------- /test/fixtures/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/rust/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/rust/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/rust/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/rust/main.rs -------------------------------------------------------------------------------- /test/fixtures/scala3/.gitignore: -------------------------------------------------------------------------------- 1 | main.jar 2 | .bsp 3 | .scala-build -------------------------------------------------------------------------------- /test/fixtures/scala3/circe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/scala3/circe.scala -------------------------------------------------------------------------------- /test/fixtures/scala3/rename/debug.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/scala3/rename/debug.scala -------------------------------------------------------------------------------- /test/fixtures/scala3/rename/upickle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/scala3/rename/upickle.scala -------------------------------------------------------------------------------- /test/fixtures/scala3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/scala3/run.sh -------------------------------------------------------------------------------- /test/fixtures/swift/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.xcuserdatad 3 | -------------------------------------------------------------------------------- /test/fixtures/swift/SwiftFixture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/swift/SwiftFixture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/fixtures/swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/swift/main.swift -------------------------------------------------------------------------------- /test/fixtures/swift/quicktype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/swift/quicktype.swift -------------------------------------------------------------------------------- /test/fixtures/typescript-effect-schema/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-effect-schema/main.ts -------------------------------------------------------------------------------- /test/fixtures/typescript-effect-schema/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-effect-schema/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/typescript-effect-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-effect-schema/package.json -------------------------------------------------------------------------------- /test/fixtures/typescript-effect-schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-effect-schema/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/typescript-zod/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-zod/main.ts -------------------------------------------------------------------------------- /test/fixtures/typescript-zod/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-zod/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/typescript-zod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-zod/package.json -------------------------------------------------------------------------------- /test/fixtures/typescript-zod/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript-zod/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/typescript/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript/main.ts -------------------------------------------------------------------------------- /test/fixtures/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/fixtures/typescript/tsconfig.json -------------------------------------------------------------------------------- /test/generate-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/generate-json.py -------------------------------------------------------------------------------- /test/generate-markov-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/generate-markov-corpus.py -------------------------------------------------------------------------------- /test/inputs/graphql/github.gqlschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github.gqlschema -------------------------------------------------------------------------------- /test/inputs/graphql/github1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github1.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github1.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github1.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github2.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github2.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github2.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github3.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github3.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github3.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github4.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github4.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github4.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github5.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github5.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github5.2.json -------------------------------------------------------------------------------- /test/inputs/graphql/github5.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github5.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github6.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github6.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github6.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github7.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github7.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github7.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github7.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github8.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github8.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github8.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github8.graphql -------------------------------------------------------------------------------- /test/inputs/graphql/github9.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github9.1.json -------------------------------------------------------------------------------- /test/inputs/graphql/github9.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/graphql/github9.graphql -------------------------------------------------------------------------------- /test/inputs/json/misc/00c36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/00c36.json -------------------------------------------------------------------------------- /test/inputs/json/misc/00ec5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/00ec5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/010b1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/010b1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/016af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/016af.json -------------------------------------------------------------------------------- /test/inputs/json/misc/033b1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/033b1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/050b0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/050b0.json -------------------------------------------------------------------------------- /test/inputs/json/misc/06bee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/06bee.json -------------------------------------------------------------------------------- /test/inputs/json/misc/07540.json: -------------------------------------------------------------------------------- 1 | { 2 | "cookies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/json/misc/0779f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0779f.json -------------------------------------------------------------------------------- /test/inputs/json/misc/07c75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/07c75.json -------------------------------------------------------------------------------- /test/inputs/json/misc/09f54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/09f54.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0a358.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0a358.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0a91a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0a91a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0b91a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0b91a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0cffa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0cffa.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0e0c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0e0c2.json -------------------------------------------------------------------------------- /test/inputs/json/misc/0fecf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/0fecf.json -------------------------------------------------------------------------------- /test/inputs/json/misc/10be4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/10be4.json -------------------------------------------------------------------------------- /test/inputs/json/misc/112b5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/112b5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/127a1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/127a1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/13d8d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/13d8d.json -------------------------------------------------------------------------------- /test/inputs/json/misc/14d38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/14d38.json -------------------------------------------------------------------------------- /test/inputs/json/misc/167d6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/167d6.json -------------------------------------------------------------------------------- /test/inputs/json/misc/16bc5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/16bc5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/176f1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/176f1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/1a7f5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/1a7f5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/1b28c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/1b28c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/1b409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/1b409.json -------------------------------------------------------------------------------- /test/inputs/json/misc/2465e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/2465e.json -------------------------------------------------------------------------------- /test/inputs/json/misc/24f52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/24f52.json -------------------------------------------------------------------------------- /test/inputs/json/misc/262f0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/262f0.json -------------------------------------------------------------------------------- /test/inputs/json/misc/26b49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/26b49.json -------------------------------------------------------------------------------- /test/inputs/json/misc/26c9c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/26c9c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/27332.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/27332.json -------------------------------------------------------------------------------- /test/inputs/json/misc/29f47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/29f47.json -------------------------------------------------------------------------------- /test/inputs/json/misc/2d4e2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/2d4e2.json -------------------------------------------------------------------------------- /test/inputs/json/misc/2df80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/2df80.json -------------------------------------------------------------------------------- /test/inputs/json/misc/31189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/31189.json -------------------------------------------------------------------------------- /test/inputs/json/misc/32431.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/32431.json -------------------------------------------------------------------------------- /test/inputs/json/misc/32d5c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/32d5c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/337ed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/337ed.json -------------------------------------------------------------------------------- /test/inputs/json/misc/33d2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/33d2e.json -------------------------------------------------------------------------------- /test/inputs/json/misc/34702.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/34702.json -------------------------------------------------------------------------------- /test/inputs/json/misc/3536b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/3536b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/3659d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/3659d.json -------------------------------------------------------------------------------- /test/inputs/json/misc/36d5d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/36d5d.json -------------------------------------------------------------------------------- /test/inputs/json/misc/3a6b3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/3a6b3.json -------------------------------------------------------------------------------- /test/inputs/json/misc/3e9a3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/3e9a3.json -------------------------------------------------------------------------------- /test/inputs/json/misc/3f1ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/3f1ce.json -------------------------------------------------------------------------------- /test/inputs/json/misc/421d4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/421d4.json -------------------------------------------------------------------------------- /test/inputs/json/misc/437e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/437e7.json -------------------------------------------------------------------------------- /test/inputs/json/misc/43970.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/43970.json -------------------------------------------------------------------------------- /test/inputs/json/misc/43eaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/43eaf.json -------------------------------------------------------------------------------- /test/inputs/json/misc/458db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/458db.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4961a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4961a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4a0d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4a0d7.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4a455.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4a455.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4c547.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4c547.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4d6fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4d6fb.json -------------------------------------------------------------------------------- /test/inputs/json/misc/4e336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/4e336.json -------------------------------------------------------------------------------- /test/inputs/json/misc/54147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/54147.json -------------------------------------------------------------------------------- /test/inputs/json/misc/54d32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/54d32.json -------------------------------------------------------------------------------- /test/inputs/json/misc/570ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/570ec.json -------------------------------------------------------------------------------- /test/inputs/json/misc/5dd0d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/5dd0d.json -------------------------------------------------------------------------------- /test/inputs/json/misc/5eae5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/5eae5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/5eb20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/5eb20.json -------------------------------------------------------------------------------- /test/inputs/json/misc/5f3a1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/5f3a1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/5f7fe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/5f7fe.json -------------------------------------------------------------------------------- /test/inputs/json/misc/617e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/617e8.json -------------------------------------------------------------------------------- /test/inputs/json/misc/61b66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/61b66.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6260a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6260a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/65dec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/65dec.json -------------------------------------------------------------------------------- /test/inputs/json/misc/66121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/66121.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6617c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6617c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/67c03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/67c03.json -------------------------------------------------------------------------------- /test/inputs/json/misc/68c30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/68c30.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6c155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6c155.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6de06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6de06.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6dec6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6dec6.json -------------------------------------------------------------------------------- /test/inputs/json/misc/6eb00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/6eb00.json -------------------------------------------------------------------------------- /test/inputs/json/misc/70c77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/70c77.json -------------------------------------------------------------------------------- /test/inputs/json/misc/734ad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/734ad.json -------------------------------------------------------------------------------- /test/inputs/json/misc/75912.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/75912.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7681c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7681c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/76ae1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/76ae1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/77392.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/77392.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7d397.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7d397.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7d722.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7d722.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7df41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7df41.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7dfa6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7dfa6.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7eb30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7eb30.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7f568.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7f568.json -------------------------------------------------------------------------------- /test/inputs/json/misc/7fbfb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/7fbfb.json -------------------------------------------------------------------------------- /test/inputs/json/misc/80aff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/80aff.json -------------------------------------------------------------------------------- /test/inputs/json/misc/82509.json: -------------------------------------------------------------------------------- 1 | { 2 | "origin": "209.58.130.210" 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/json/misc/8592b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/8592b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/88130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/88130.json -------------------------------------------------------------------------------- /test/inputs/json/misc/8a62c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/8a62c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/908db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/908db.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9617f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9617f.json -------------------------------------------------------------------------------- /test/inputs/json/misc/96f7c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/96f7c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9847b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9847b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9929c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9929c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/996bd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/996bd.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9a503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9a503.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9ac3b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9ac3b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/9eed5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/9eed5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a0496.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a0496.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a1eca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a1eca.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a3d8c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a3d8c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a45b0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a45b0.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a71df.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a71df.json -------------------------------------------------------------------------------- /test/inputs/json/misc/a9691.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/a9691.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ab0d1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ab0d1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/abb4b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/abb4b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ac944.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ac944.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ad8be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ad8be.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ae7f0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ae7f0.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ae9ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ae9ca.json -------------------------------------------------------------------------------- /test/inputs/json/misc/af2d1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/af2d1.json -------------------------------------------------------------------------------- /test/inputs/json/misc/b4865.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/b4865.json -------------------------------------------------------------------------------- /test/inputs/json/misc/b6f2c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/b6f2c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/b6fe5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/b6fe5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/b9f64.json: -------------------------------------------------------------------------------- 1 | { 2 | "user-agent": "Python-urllib/3.6" 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/json/misc/bb1ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/bb1ec.json -------------------------------------------------------------------------------- /test/inputs/json/misc/be234.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/be234.json -------------------------------------------------------------------------------- /test/inputs/json/misc/c0356.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/c0356.json -------------------------------------------------------------------------------- /test/inputs/json/misc/c0a3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/c0a3a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/c3303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/c3303.json -------------------------------------------------------------------------------- /test/inputs/json/misc/c6cfd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/c6cfd.json -------------------------------------------------------------------------------- /test/inputs/json/misc/c8c7e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/c8c7e.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cb0cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cb0cc.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cb81e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cb81e.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ccd18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ccd18.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cd238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cd238.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cd463.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cd463.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cda6c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cda6c.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cf0d8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cf0d8.json -------------------------------------------------------------------------------- /test/inputs/json/misc/cfbce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/cfbce.json -------------------------------------------------------------------------------- /test/inputs/json/misc/d0908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/d0908.json -------------------------------------------------------------------------------- /test/inputs/json/misc/d23d5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/d23d5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/dbfb3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/dbfb3.json -------------------------------------------------------------------------------- /test/inputs/json/misc/dc44f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/dc44f.json -------------------------------------------------------------------------------- /test/inputs/json/misc/dd1ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/dd1ce.json -------------------------------------------------------------------------------- /test/inputs/json/misc/dec3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/dec3a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/df957.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/df957.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e0ac7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e0ac7.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e2915.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e2915.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e2a58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e2a58.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e324e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e324e.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e53b5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e53b5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e64a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e64a0.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e8a0b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e8a0b.json -------------------------------------------------------------------------------- /test/inputs/json/misc/e8b04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/e8b04.json -------------------------------------------------------------------------------- /test/inputs/json/misc/ed095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/ed095.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f22f5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f22f5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f3139.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f3139.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f3edf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f3edf.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f466a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f466a.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f6a65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f6a65.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f74d5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f74d5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f82d9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f82d9.json -------------------------------------------------------------------------------- /test/inputs/json/misc/f974d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/f974d.json -------------------------------------------------------------------------------- /test/inputs/json/misc/faff5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/faff5.json -------------------------------------------------------------------------------- /test/inputs/json/misc/fcca3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/fcca3.json -------------------------------------------------------------------------------- /test/inputs/json/misc/fd329.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/misc/fd329.json -------------------------------------------------------------------------------- /test/inputs/json/priority/blns-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/blns-object.json -------------------------------------------------------------------------------- /test/inputs/json/priority/bug427.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/bug427.json -------------------------------------------------------------------------------- /test/inputs/json/priority/bug790.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/bug790.json -------------------------------------------------------------------------------- /test/inputs/json/priority/bug855-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/bug855-short.json -------------------------------------------------------------------------------- /test/inputs/json/priority/bug863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/bug863.json -------------------------------------------------------------------------------- /test/inputs/json/priority/coin-pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/coin-pairs.json -------------------------------------------------------------------------------- /test/inputs/json/priority/combinations1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/combinations1.json -------------------------------------------------------------------------------- /test/inputs/json/priority/combinations2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/combinations2.json -------------------------------------------------------------------------------- /test/inputs/json/priority/combinations3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/combinations3.json -------------------------------------------------------------------------------- /test/inputs/json/priority/combinations4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/combinations4.json -------------------------------------------------------------------------------- /test/inputs/json/priority/combined-enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/combined-enum.json -------------------------------------------------------------------------------- /test/inputs/json/priority/direct-recursive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/direct-recursive.json -------------------------------------------------------------------------------- /test/inputs/json/priority/empty-enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/empty-enum.json -------------------------------------------------------------------------------- /test/inputs/json/priority/identifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/identifiers.json -------------------------------------------------------------------------------- /test/inputs/json/priority/keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/keywords.json -------------------------------------------------------------------------------- /test/inputs/json/priority/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/list.json -------------------------------------------------------------------------------- /test/inputs/json/priority/name-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/name-style.json -------------------------------------------------------------------------------- /test/inputs/json/priority/nbl-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/nbl-stats.json -------------------------------------------------------------------------------- /test/inputs/json/priority/no-classes.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /test/inputs/json/priority/nst-test-suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/nst-test-suite.json -------------------------------------------------------------------------------- /test/inputs/json/priority/number-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/number-map.json -------------------------------------------------------------------------------- /test/inputs/json/priority/optional-union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/optional-union.json -------------------------------------------------------------------------------- /test/inputs/json/priority/recursive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/recursive.json -------------------------------------------------------------------------------- /test/inputs/json/priority/simple-identifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/simple-identifiers.json -------------------------------------------------------------------------------- /test/inputs/json/priority/union-constructor-clash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/union-constructor-clash.json -------------------------------------------------------------------------------- /test/inputs/json/priority/unions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/unions.json -------------------------------------------------------------------------------- /test/inputs/json/priority/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/priority/url.json -------------------------------------------------------------------------------- /test/inputs/json/samples/bitcoin-block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/bitcoin-block.json -------------------------------------------------------------------------------- /test/inputs/json/samples/getting-started.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/getting-started.json -------------------------------------------------------------------------------- /test/inputs/json/samples/github-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/github-events.json -------------------------------------------------------------------------------- /test/inputs/json/samples/kitchen-sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/kitchen-sink.json -------------------------------------------------------------------------------- /test/inputs/json/samples/null-safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/null-safe.json -------------------------------------------------------------------------------- /test/inputs/json/samples/pokedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/pokedex.json -------------------------------------------------------------------------------- /test/inputs/json/samples/reddit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/reddit.json -------------------------------------------------------------------------------- /test/inputs/json/samples/simple-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/simple-object.json -------------------------------------------------------------------------------- /test/inputs/json/samples/spotify-album.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/spotify-album.json -------------------------------------------------------------------------------- /test/inputs/json/samples/us-avg-temperatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/us-avg-temperatures.json -------------------------------------------------------------------------------- /test/inputs/json/samples/us-senators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/json/samples/us-senators.json -------------------------------------------------------------------------------- /test/inputs/schema/a/test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/a/test2.json -------------------------------------------------------------------------------- /test/inputs/schema/accessors.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/accessors.1.json -------------------------------------------------------------------------------- /test/inputs/schema/accessors.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/accessors.schema -------------------------------------------------------------------------------- /test/inputs/schema/any.1.json: -------------------------------------------------------------------------------- 1 | { "foo": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/any.2.json: -------------------------------------------------------------------------------- 1 | { "foo": [1, 2, 3] } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/any.3.json: -------------------------------------------------------------------------------- 1 | { "foo": { "bar": "abc" } } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/any.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/any.schema -------------------------------------------------------------------------------- /test/inputs/schema/b/test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/b/test3.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.1.fail.bool-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.1.fail.bool-string.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.1.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.1.out.bool-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.1.out.bool-string.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.2.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.3.json -------------------------------------------------------------------------------- /test/inputs/schema/bool-string.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/bool-string.schema -------------------------------------------------------------------------------- /test/inputs/schema/camelCase.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/camelCase.schema -------------------------------------------------------------------------------- /test/inputs/schema/camelCase1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/camelCase1.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.1.fail.union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.1.fail.union.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.1.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.2.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.3.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.4.json -------------------------------------------------------------------------------- /test/inputs/schema/class-map-union.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-map-union.schema -------------------------------------------------------------------------------- /test/inputs/schema/class-with-additional.1.fail.union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-with-additional.1.fail.union.json -------------------------------------------------------------------------------- /test/inputs/schema/class-with-additional.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-with-additional.1.json -------------------------------------------------------------------------------- /test/inputs/schema/class-with-additional.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/class-with-additional.schema -------------------------------------------------------------------------------- /test/inputs/schema/constructor.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/constructor.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/constructor.schema -------------------------------------------------------------------------------- /test/inputs/schema/cut-enum.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": 1 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/cut-enum.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/cut-enum.schema -------------------------------------------------------------------------------- /test/inputs/schema/date-time-or-string.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/date-time-or-string.schema -------------------------------------------------------------------------------- /test/inputs/schema/date-time.1.fail.date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/date-time.1.fail.date-time.json -------------------------------------------------------------------------------- /test/inputs/schema/date-time.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/date-time.1.json -------------------------------------------------------------------------------- /test/inputs/schema/date-time.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/date-time.schema -------------------------------------------------------------------------------- /test/inputs/schema/description-with-double-quotes.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": true 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/description-with-double-quotes.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/description-with-double-quotes.schema -------------------------------------------------------------------------------- /test/inputs/schema/description.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/description.1.json -------------------------------------------------------------------------------- /test/inputs/schema/description.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/description.2.json -------------------------------------------------------------------------------- /test/inputs/schema/description.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/description.schema -------------------------------------------------------------------------------- /test/inputs/schema/direct-union.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/direct-union.1.json -------------------------------------------------------------------------------- /test/inputs/schema/direct-union.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/direct-union.schema -------------------------------------------------------------------------------- /test/inputs/schema/enum-with-null.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "enum": "foo" 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/enum-with-null.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "enum": null 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/enum-with-null.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum-with-null.schema -------------------------------------------------------------------------------- /test/inputs/schema/enum-with-values.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum-with-values.schema -------------------------------------------------------------------------------- /test/inputs/schema/enum.1.fail.enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum.1.fail.enum.json -------------------------------------------------------------------------------- /test/inputs/schema/enum.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum.1.json -------------------------------------------------------------------------------- /test/inputs/schema/enum.2.json: -------------------------------------------------------------------------------- 1 | { "gve": "good" } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/enum.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum.3.json -------------------------------------------------------------------------------- /test/inputs/schema/enum.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum.4.json -------------------------------------------------------------------------------- /test/inputs/schema/enum.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/enum.schema -------------------------------------------------------------------------------- /test/inputs/schema/go-schema-pattern-properties.1.fail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/go-schema-pattern-properties.1.fail.json -------------------------------------------------------------------------------- /test/inputs/schema/go-schema-pattern-properties.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/go-schema-pattern-properties.1.json -------------------------------------------------------------------------------- /test/inputs/schema/go-schema-pattern-properties.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/go-schema-pattern-properties.schema -------------------------------------------------------------------------------- /test/inputs/schema/id-no-address.1.json: -------------------------------------------------------------------------------- 1 | { "item": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/id-no-address.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/id-no-address.schema -------------------------------------------------------------------------------- /test/inputs/schema/id-root.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "bar": 123 3 | } -------------------------------------------------------------------------------- /test/inputs/schema/id-root.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/id-root.schema -------------------------------------------------------------------------------- /test/inputs/schema/implicit-all-of.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-all-of.1.json -------------------------------------------------------------------------------- /test/inputs/schema/implicit-all-of.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-all-of.schema -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.1.fail.union.json: -------------------------------------------------------------------------------- 1 | { "foo": ["bar", "quux"] } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.1.json: -------------------------------------------------------------------------------- 1 | { "foo": [1, 2, 3] } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.2.fail.union.json: -------------------------------------------------------------------------------- 1 | { "foo": { "bar": "quux" } } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.2.json: -------------------------------------------------------------------------------- 1 | { "foo": { "bar": 123 } } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.3.json: -------------------------------------------------------------------------------- 1 | { "foo": "abc" } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.4.json: -------------------------------------------------------------------------------- 1 | { "foo": true } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.5.json: -------------------------------------------------------------------------------- 1 | { "foo": 3.141592 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/implicit-class-array-union.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-class-array-union.schema -------------------------------------------------------------------------------- /test/inputs/schema/implicit-one-of.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-one-of.1.json -------------------------------------------------------------------------------- /test/inputs/schema/implicit-one-of.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-one-of.2.json -------------------------------------------------------------------------------- /test/inputs/schema/implicit-one-of.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/implicit-one-of.schema -------------------------------------------------------------------------------- /test/inputs/schema/integer-float-union.1.json: -------------------------------------------------------------------------------- 1 | { "number": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/integer-float-union.2.json: -------------------------------------------------------------------------------- 1 | { "number": 3.141592 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/integer-float-union.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-float-union.schema -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.1.fail.integer-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.1.fail.integer-string.json -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.1.json -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.1.out.integer-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.1.out.integer-string.json -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.2.json -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.3.json -------------------------------------------------------------------------------- /test/inputs/schema/integer-string.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/integer-string.schema -------------------------------------------------------------------------------- /test/inputs/schema/intersection-nested.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/intersection-nested.schema -------------------------------------------------------------------------------- /test/inputs/schema/intersection.1.fail.no-defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "intersection": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/intersection.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/intersection.1.json -------------------------------------------------------------------------------- /test/inputs/schema/intersection.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/intersection.2.json -------------------------------------------------------------------------------- /test/inputs/schema/intersection.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/intersection.schema -------------------------------------------------------------------------------- /test/inputs/schema/keyword-enum.1.json: -------------------------------------------------------------------------------- 1 | {"enum": "weak"} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/keyword-enum.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/keyword-enum.schema -------------------------------------------------------------------------------- /test/inputs/schema/keyword-unions.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/keyword-unions.2.json: -------------------------------------------------------------------------------- 1 | { "constructor": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/keyword-unions.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/keyword-unions.schema -------------------------------------------------------------------------------- /test/inputs/schema/list.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/list.2.json: -------------------------------------------------------------------------------- 1 | {"next": {}} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/list.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/list.3.json -------------------------------------------------------------------------------- /test/inputs/schema/list.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/list.schema -------------------------------------------------------------------------------- /test/inputs/schema/minmax-integer.1.fail.minmaxInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax-integer.1.fail.minmaxInteger.json -------------------------------------------------------------------------------- /test/inputs/schema/minmax-integer.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax-integer.1.json -------------------------------------------------------------------------------- /test/inputs/schema/minmax-integer.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax-integer.schema -------------------------------------------------------------------------------- /test/inputs/schema/minmax.1.fail.minmax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax.1.fail.minmax.json -------------------------------------------------------------------------------- /test/inputs/schema/minmax.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax.1.json -------------------------------------------------------------------------------- /test/inputs/schema/minmax.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmax.schema -------------------------------------------------------------------------------- /test/inputs/schema/minmaxlength.1.fail.minmaxlength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmaxlength.1.fail.minmaxlength.json -------------------------------------------------------------------------------- /test/inputs/schema/minmaxlength.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmaxlength.1.json -------------------------------------------------------------------------------- /test/inputs/schema/minmaxlength.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/minmaxlength.schema -------------------------------------------------------------------------------- /test/inputs/schema/multi-type-enum.1.fail.union.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": [1, 2, 3] 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/multi-type-enum.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": 1 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/multi-type-enum.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": true 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/multi-type-enum.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "a" 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/multi-type-enum.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/multi-type-enum.schema -------------------------------------------------------------------------------- /test/inputs/schema/mutually-recursive.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/mutually-recursive.1.json -------------------------------------------------------------------------------- /test/inputs/schema/mutually-recursive.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/mutually-recursive.2.json -------------------------------------------------------------------------------- /test/inputs/schema/mutually-recursive.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/mutually-recursive.schema -------------------------------------------------------------------------------- /test/inputs/schema/non-standard-ref.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/non-standard-ref.1.json -------------------------------------------------------------------------------- /test/inputs/schema/non-standard-ref.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/non-standard-ref.schema -------------------------------------------------------------------------------- /test/inputs/schema/object-type-required.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/object-type-required.1.json -------------------------------------------------------------------------------- /test/inputs/schema/object-type-required.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "abc" 3 | } -------------------------------------------------------------------------------- /test/inputs/schema/object-type-required.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/object-type-required.schema -------------------------------------------------------------------------------- /test/inputs/schema/optional-any.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/optional-any.2.json: -------------------------------------------------------------------------------- 1 | { "foo": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/optional-any.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/optional-any.schema -------------------------------------------------------------------------------- /test/inputs/schema/pattern.1.fail.pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/pattern.1.fail.pattern.json -------------------------------------------------------------------------------- /test/inputs/schema/pattern.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/pattern.1.json -------------------------------------------------------------------------------- /test/inputs/schema/pattern.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/pattern.schema -------------------------------------------------------------------------------- /test/inputs/schema/postman-collection.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/postman-collection.1.json -------------------------------------------------------------------------------- /test/inputs/schema/postman-collection.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/postman-collection.2.json -------------------------------------------------------------------------------- /test/inputs/schema/postman-collection.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/postman-collection.schema -------------------------------------------------------------------------------- /test/inputs/schema/ref-id-files.1.json: -------------------------------------------------------------------------------- 1 | { "foo": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/ref-id-files.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/ref-id-files.schema -------------------------------------------------------------------------------- /test/inputs/schema/ref-remote.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/ref-remote.2.json: -------------------------------------------------------------------------------- 1 | {"next": {}} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/ref-remote.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/ref-remote.3.json -------------------------------------------------------------------------------- /test/inputs/schema/ref-remote.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/ref-remote.schema -------------------------------------------------------------------------------- /test/inputs/schema/renaming-bug.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/renaming-bug.schema -------------------------------------------------------------------------------- /test/inputs/schema/required-draft3.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/required-draft3.schema -------------------------------------------------------------------------------- /test/inputs/schema/required-non-properties.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/required-non-properties.1.json -------------------------------------------------------------------------------- /test/inputs/schema/required-non-properties.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/required-non-properties.schema -------------------------------------------------------------------------------- /test/inputs/schema/required.1.fail.no-defaults.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/required.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/required.schema -------------------------------------------------------------------------------- /test/inputs/schema/simple-ref.1.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/simple-ref.1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/simple-ref.1.ref -------------------------------------------------------------------------------- /test/inputs/schema/simple-ref.2.json: -------------------------------------------------------------------------------- 1 | {"next": {}} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/simple-ref.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/simple-ref.3.json -------------------------------------------------------------------------------- /test/inputs/schema/simple-ref.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/simple-ref.schema -------------------------------------------------------------------------------- /test/inputs/schema/strict-optional.1.fail.strict-optional.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/inputs/schema/strict-optional.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/strict-optional.schema -------------------------------------------------------------------------------- /test/inputs/schema/top-level-enum.1.json: -------------------------------------------------------------------------------- 1 | "one" -------------------------------------------------------------------------------- /test/inputs/schema/top-level-enum.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/top-level-enum.schema -------------------------------------------------------------------------------- /test/inputs/schema/top-level-primitive.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/top-level-primitive.schema -------------------------------------------------------------------------------- /test/inputs/schema/tuple.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "tuple": [123, true] 3 | } 4 | -------------------------------------------------------------------------------- /test/inputs/schema/tuple.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/tuple.schema -------------------------------------------------------------------------------- /test/inputs/schema/union-list.1.json: -------------------------------------------------------------------------------- 1 | { "list": 123 } 2 | -------------------------------------------------------------------------------- /test/inputs/schema/union-list.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/union-list.2.json -------------------------------------------------------------------------------- /test/inputs/schema/union-list.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/union-list.3.json -------------------------------------------------------------------------------- /test/inputs/schema/union-list.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/union-list.schema -------------------------------------------------------------------------------- /test/inputs/schema/union.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/union.1.json -------------------------------------------------------------------------------- /test/inputs/schema/union.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/union.schema -------------------------------------------------------------------------------- /test/inputs/schema/uuid.1.fail.uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/uuid.1.fail.uuid.json -------------------------------------------------------------------------------- /test/inputs/schema/uuid.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/uuid.1.json -------------------------------------------------------------------------------- /test/inputs/schema/uuid.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/uuid.2.json -------------------------------------------------------------------------------- /test/inputs/schema/uuid.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/uuid.schema -------------------------------------------------------------------------------- /test/inputs/schema/vega-lite.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/schema/vega-lite.schema -------------------------------------------------------------------------------- /test/inputs/spotify-api/Album/She's So Unusual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/Album/She's So Unusual.json -------------------------------------------------------------------------------- /test/inputs/spotify-api/Album/The Best of Keane (Deluxe Edition).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/Album/The Best of Keane (Deluxe Edition).json -------------------------------------------------------------------------------- /test/inputs/spotify-api/Artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/Artist.json -------------------------------------------------------------------------------- /test/inputs/spotify-api/Playlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/Playlist.json -------------------------------------------------------------------------------- /test/inputs/spotify-api/Track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/Track.json -------------------------------------------------------------------------------- /test/inputs/spotify-api/UserProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/spotify-api/UserProfile.json -------------------------------------------------------------------------------- /test/inputs/urls/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/inputs/urls/github.json -------------------------------------------------------------------------------- /test/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/keywords.py -------------------------------------------------------------------------------- /test/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/keywords.txt -------------------------------------------------------------------------------- /test/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/languages.ts -------------------------------------------------------------------------------- /test/lib/deepEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/lib/deepEquals.ts -------------------------------------------------------------------------------- /test/lib/multicore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/lib/multicore.ts -------------------------------------------------------------------------------- /test/make-keyword-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/make-keyword-tests.sh -------------------------------------------------------------------------------- /test/run-for-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/run-for-all.sh -------------------------------------------------------------------------------- /test/test-awesome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/test-awesome.py -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glideapps/quicktype/HEAD/tsconfig.json --------------------------------------------------------------------------------