quicktype
quicktype copied to clipboard
Generate types and converters from JSON, Schema, and GraphQL
Run via `npm exec quick type`  If no specify lang work fine 
The python code generator for 3.6 and 3.7 puts the property descriptions as docstrings before the respective properties in the classes. This is incorrect because the first docstring after the...
First things first. What an amazing tool you built! I really love it especially since I've moved to typed languages like Typescript. This is such a time saver and quality...
This is @RmondJone PR, with added fix for enums and bumped elm. Please start working again on dart issues and make null-safety reality
1、适配Dart空安全代码生成不对的问题 2、删除Dart生成冗余代码 3、修改Dart字段注释不对的问题 4、适配required-props属性生成代码@required不对的问题 1、The problem of incorrect generation of Dart empty security code 2、 Delete Dart to generate redundant code 3、Modify the problem of incorrect Dart field annotations 4、The...
I would like to generate kotlin classes from the [FHIR Schema](https://hl7.org/fhir/definitions.json.zip). The problem is that quicktype crashes with `Error: Maximum call stack size exceeded.` When I set a higher stack...
Given the following input JSON schema: ```json { "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/Example", "definitions": { "Example": { "type": "object", "additionalProperties": false, "properties": { "d": { "type": "string", "format": "date" }, "t":...
Because I do not need most of the generated code I switched to "Attributes Only" and with that the auto generated comment went away as well. I checked it only...
how can i set up interfaces only when json 2 ts
if List is not one of the Java keywords, following json will create conflict when using List as array. ```json [ { "list": { "a": [ 1 ] } }...