quicktype icon indicating copy to clipboard operation
quicktype copied to clipboard

Generate types and converters from JSON, Schema, and GraphQL

Results 406 quicktype issues
Sort by recently updated
recently updated
newest added

This would seem like a bug: ```typescript // test.ts export type InputData = Uint8Array; ``` ```shell quicktype -o test.go test.ts ``` ```go // test.go type InputData []float64 ```

Hello, I ran into an issue with the generation of the class code. The generator indicated a field value of 0.0 as an int instead of a float. I was...

Hello, I wanted to use json schemas and quicktype to generate code in two languages and I quickly noticed that the generated types do not necessarily match the schema I...

First off, thanks for a very useful tool! For many code generators it is customary to add a header comment that indicates that the file is a generated one and,...

Hi, Quick question that confused me, Someone knows why this repository is not listed under the search results: https://github.com/search?q=quicktype%2Fquicktype&type= Also tried with the github sdk. 👻

R is one of the leading statistical programming languages and processing JSON files is just one of the many data formats it might ingest. Could we get R support eventually...

I am facing a problem when generating kotlinX code from json schema. Quicktype generates a custom serializer for each enum, looking like this: ```kotlin @Serializable enum class MessageFunction(val value: String)...

Hi there! I have found your service pretty useful. Thank you! Working with typescript and converting massive JSONs to TS types I have found the following issue: JSON keys that...

Hi, I wanted to convert the [JSON](https://pkgstore.datahub.io/core/top-level-domain-names/top-level-domain-names.csv_json/data/c46b1be79158543bed1031ec074e6c16/top-level-domain-names.csv_json.json) from https://datahub.io/core/top-level-domain-names to some C# code. However I got the above error when pasting the JSON into https://app.quicktype.io/. It appears that Unicode data...

C#

This is (most definitely!) a work in progress. I have a use case where I wish to be able to parse the vega schema into scala3 case classses. This app...