quicktype
quicktype copied to clipboard
Generate types and converters from JSON, Schema, and GraphQL
Make all properties optional not working for dart
Map toJson() => { "category_id": categoryId, "category_name": categoryName, "category_image": categoryImage }; error: Missing type arguments for map literal. (implicit_dynamic_map_literal)
Please add an option in the Options list that let me replace `"` by `'`. This is the recommended notation by Dart. For instance, this is [the code generated by...
I use quicktype to generate c++ classes from the OCI runtime spec. And I got some types that cannot be compiled without include Generators.hpp. for examples ```cpp #pragma once #include...
As shown in the image below:  Enums will always be sorted on their name alphabetically. This will lead to unexpected behaviour with values being swapped. ``` enum RandomDay{ Monday,...
Can you add an entry to https://github.com/quicktype/quicktype/tags for future versions published on https://www.npmjs.com/package/quicktype?activeTab=versions ? That lets Linux distros build quicktype from source.
Some JSON i pasted recently generated this: | Screenshot from browser | |-| |  | I'm using STJ but `JsonToken` belongs to NewtonSoft. I believe the equivalent is `JsonTokenType`...
Where there is an object type defined in a definitions section, whether in the same file or in an external one, every usage of that shared object definitions gets a...
I would like to output a graphql schema (input is jsonschema).