quicktype icon indicating copy to clipboard operation
quicktype copied to clipboard

Generate types and converters from JSON, Schema, and GraphQL

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

Like the title says, is the VSCode extension still maintained or is all focus on the web app these days? Last update was in 2018...

Title pretty much says it all. Are there any plans to update the VS Code extension? Community attempts have been made to provide updated versions of the extension, however due...

This is more of a request than an `issue`, but almost in all of my use case scenarios (at least in python) I've noticed that the classes being made are...

enhancement
Python

We are changing from **JSON Type Definition** to **JSON Schema** and are now using Quicktype to convert the JSON Schemas to TypeScript Types. For the most part, Quicktype is doing...

I would like to report an issue concerning the generation of JSON Schema, which appears to differ between Python and other programming languages such as Rust, Dart, and Kotlin. The...

It would be super cool if for swift there could be a default init option where it would add a default init() to be able to convert the following ```...

customization
Swift
rendering
input:JSON Schema

Struct definitions are restrictive and a PITA. There should be a flag to change the code generation to use typedefs instead of structs. I may try to tackle adding this...

When trying to generate TypeScript types from our json schemas (that follow [jsonapi](https://jsonapi.org/) design), I noticed that ambiguous type names are resolved using the parent's name, but not the grandparent's....

We want enum with json order input as, but after we give input source: ``` { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Test", "type": "object", "properties": { "errorCode": { "type": "string", "enum": [...

I've an issue when trying to convert a JSON schema file to Typescript types. The JSON schema comes from a [Rust models](https://github.com/okp4/contracts/blob/f2afc6349a654cb6ffa1771cb0f750bd68f0b7c1/contracts/okp4-cognitarium/src/msg.rs#L110) that has been converted to [JSON Schema](https://github.com/okp4/okp4-contract-schema/blob/30b9686d9f946563d8ca60c53df388ee75186ec7/schema/okp4-cognitarium/query.json#L55-L66). Given...

bug
naming
input:JSON Schema