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

I would like to use a class implementation provided in the schema, not providing a mirror of it, but just reusing the one already in the dependencies. One example is...

enhancement

Bumps [yaml](https://github.com/eemeli/yaml) from 2.4.1 to 2.4.5. Release notes Sourced from yaml's releases. v2.4.5 Improve tab handling (#553, yaml-test-suite tests DK95 & Y79Y) v2.4.4 With special thanks to @​RedCMD for finding...

dependencies

## Description change - forcing dependency namespace (`"System.Collections.Generic"`) to be added for list and dictionary in cases where common namespace addition(`CSharpRenderer.emitUsings`) was skipped ## Related Issue https://github.com/glideapps/quicktype/issues/2523 ## Motivation and...

## Description Adds strict typing for language options, allowing for better Intellisense ## Related Issue ## Motivation and Context ## Previous Behaviour / Output ## New Behaviour / Output ##...

## Description - Fix code in CPlusPlusRenderer that was detecting the C++ type incorrectly, as it was doing it in a way where optional types will never have constraints applied....

When generating an output in Go, Java or Python for a JsonSchema that contains an external link reference using the $ref key, Quicktype should resolve it by fetching that URL...

bug

## Description Pending PR for improvements in user-facing typing and output ## Related Issue ## Motivation and Context ## Previous Behaviour / Output ## New Behaviour / Output ## How...

Below is my json schema ``` { "$schema": "http://json-schema.org/draft-06/schema#", "$ref": "#/definitions/ZeroToOneEnum", "definitions": { "ZeroToOneEnum": { "additionalProperties": true, "type": "string", "format": "integer", "default":0, "enum": [ "0", "1", "Not Set" ] }...

Consider the following class ```dart import 'dart:convert'; AdminModel adminModelFromJson(String str) => AdminModel.fromJson(json.decode(str)); String adminModelToJson(AdminModel data) => json.encode(data.toJson()); class AdminModel { String profilePicLink; String firstName; String lastName; String phone; String email;...

enhancement

## Description Following #2581 This PR fixed an issue with CI but re-introduced the issue with the warning for node >= 21 because instead of conditionally importing the `cross-fetch` deps...