quicktype

Generate types and converters from JSON, Schema, and GraphQL

brewmacoslinux
Try with needOr install directly
Source

About

Generate types and converters from JSON, Schema, and GraphQL

Commands

quicktype

Examples

Generate TypeScript types from a JSON file$ quicktype -l typescript input.json -o types.ts
Generate Python classes from a JSON schema$ quicktype -l python schema.json -o models.py
Generate Go structs from JSON with custom package name$ quicktype -l go -p mypackage input.json -o types.go