- What is this?
- How does this work?
- How do I use this with my code?
- No code appears when I paste my JSON
- I think I found a bug!
- When will you support my favorite language?
- Why do my types have weird names?
- I'd like the output to be a little different.
- Am I allowed to use the generated code in my software?
- This map/dictionary should be a class!
- This class should be a map/dictionary!
- Where can I learn more about JSON Schema?
- I'd like to customize the output for my particular application.
- quicktype is awesome, I'd like to support it!
quicktype produces nice types and JSON (de)serializers for many programming languages. It can infer types from JSON but also takes types from JSON Schema, TypeScript, and GraphQL.
You paste JSON on the left, and code appears on the right. This video gives a quick demonstration.
The generated code has comments at the start with a short code sample that shows how to convert a JSON string to instances of the generated types. You can also go the other way, which is very easy, too, but you'll have to look at the generated code to see how it works.
This is probably because your JSON is invalid. The most common issues we're seeing are
-
Trailing commas in arrays and objects:
[1, 2, 3]
is valid JSON, while[1, 2, 3,]
is not. -
Unquoted property keys in objects:
{ "name": "Mark" }
is valid JSON, while{ name: "Mark" }
is not. -
Comments: JSON does not support comments.
If you're unsure whether your JSON is valid, please use JSONLint.
Please file an issue on GitHub. Give as much context as you can so that we can reproduce it. Assume we know nothing about what you're trying to do (because we don't).
Please check whether there is a pull request that adds support for your language. If there is, please consider helping it along. If there isn't, please consider contributing one.
Sometimes quicktype has trouble giving names to your types. There are a couple of causes for this:
-
The name quicktype would like to give to your type conflicts with a name that's already used in the target language, such as
String
in C#. -
Two or more types in your data have the same name.
-
A type has so many potential names that quicktype can't find a commonality between them.
If you're using JSON Schema, you can use the title
property to give a type a name that quicktype tries hard to use.
Check out the "Language" and "Other" tabs in the options panel. What you're looking for might just be there:
If it isn't, then depending on your coding skills, you might be able to customize the output.
Yes, there are no intellectual property restrictions on the code that quicktype generates.
quicktype has advanced heuristics to decide whether a JSON object should be represented by a class or a map, but sometimes it gets it wrong. If it generates a map, but you'd rather have a class, you can disable map detection in the options panel:
quicktype has advanced heuristics to decide whether a JSON object should be represented by a class or a map, but sometimes it gets it wrong. If it generates a class, but you need a map, first make sure that you have the "Detect maps" option set in the options panel. Also, check that all properties in the object have the same exact type because quicktype only makes a map if that's the case. If that still doesn't do it, you have two options:
-
Duplicate some of the properties and/or change the property names to look more random.
-
Output JSON Schema, modify it to produce a map, and then use the schema as the input to quicktype.
The JSON Schema homepage contains many links and resources.
We have a blog post on that very topic.
There are many ways you can support quicktype:
-
Tell all your friends about it! Show it around, tweet about it, write a blog post, present it at a lightning talk.
-
quicktype is open source - please contribute! We need documentation at least as much as code, so you don't need strong coding skills to make an impact. If you do, we have lots of open issues that need resolving, almost all of our target languages can be improved, and there are many, many programming languages that quicktype doesn't support yet. Talk to us on Slack if you're interested - we're always happy to help.