• Stars
    star
    2,922
  • Rank 15,515 (Top 0.4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 8 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Compile JSON Schema to TypeScript type declarations

json-schema-to-typescript Build Status npm mit

Compile json schema to typescript typings

Example

Input:

{
  "title": "Example Schema",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "age": {
      "description": "Age in years",
      "type": "integer",
      "minimum": 0
    },
    "hairColor": {
      "enum": ["black", "brown", "blue"],
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": ["firstName", "lastName"]
}

Output:

export interface ExampleSchema {
  firstName: string;
  lastName: string;
  /**
   * Age in years
   */
  age?: number;
  hairColor?: "black" | "brown" | "blue";
}

Installation

# Using Yarn:
yarn add json-schema-to-typescript

# Or, using NPM:
npm install json-schema-to-typescript --save

Usage

import { compile, compileFromFile } from 'json-schema-to-typescript'

// compile from file
compileFromFile('foo.json')
  .then(ts => fs.writeFileSync('foo.d.ts', ts))

// or, compile a JS object
let mySchema = {
  properties: [...]
}
compile(mySchema, 'MySchema')
  .then(ts => ...)

See server demo and browser demo for full examples.

Options

compileFromFile and compile accept options as their last argument (all keys are optional):

key type default description
additionalProperties boolean true Default value for additionalProperties, when it is not explicitly set
bannerComment string "/* eslint-disable */\n/**\n* This file was automatically generated by json-schema-to-typescript.\n* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,\n* and run json-schema-to-typescript to regenerate this file.\n*/" Disclaimer comment prepended to the top of each generated file
cwd string process.cwd() Root directory for resolving $refs
declareExternallyReferenced boolean true Declare external schemas referenced via $ref?
enableConstEnums boolean true Prepend enums with const?
format boolean true Format code? Set this to false to improve performance.
ignoreMinAndMaxItems boolean false Ignore maxItems and minItems for array types, preventing tuples being generated.
maxItems number 20 Maximum number of unioned tuples to emit when representing bounded-size array types, before falling back to emitting unbounded arrays. Increase this to improve precision of emitted types, decrease it to improve performance, or set it to -1 to ignore maxItems.
strictIndexSignatures boolean false Append all index signatures with | undefined so that they are strictly typed.
style object { bracketSpacing: false, printWidth: 120, semi: true, singleQuote: false, tabWidth: 2, trailingComma: 'none', useTabs: false } A Prettier configuration
unknownAny boolean true Use unknown instead of any where possible
unreachableDefinitions boolean false Generates code for $defs that aren't referenced by the schema.
$refOptions object {} $RefParser Options, used when resolving $refs

CLI

A CLI utility is provided with this package.

cat foo.json | json2ts > foo.d.ts
# or
json2ts foo.json > foo.d.ts
# or
json2ts foo.json foo.d.ts
# or
json2ts --input foo.json --output foo.d.ts
# or
json2ts -i foo.json -o foo.d.ts
# or (quote globs so that your shell doesn't expand them)
json2ts -i 'schemas/**/*.json'
# or
json2ts -i schemas/ -o types/

You can pass any of the options described above (including style options) as CLI flags. Boolean values can be set to false using the no- prefix.

# generate code for definitions that aren't referenced
json2ts -i foo.json -o foo.d.ts --unreachableDefinitions
# use single quotes and disable trailing semicolons
json2ts -i foo.json -o foo.d.ts --style.singleQuote --no-style.semi

Tests

npm test

Features

  • title => interface
  • Primitive types:
    • array
    • homogeneous array
    • boolean
    • integer
    • number
    • null
    • object
    • string
    • homogeneous enum
    • heterogeneous enum
  • Non/extensible interfaces
  • Custom JSON-schema extensions
  • Nested properties
  • Schema definitions
  • Schema references
  • Local (filesystem) schema references
  • External (network) schema references
  • Add support for running in browser
  • default interface name
  • infer unnamed interface name from filename
  • allOf ("intersection")
  • anyOf ("union")
  • oneOf (treated like anyOf)
  • maxItems (eg)
  • minItems (eg)
  • additionalProperties of type
  • patternProperties (partial support)
  • extends
  • required properties on objects (eg)
  • validateRequired (eg)
  • literal objects in enum (eg)
  • referencing schema by id (eg)
  • custom typescript types via tsType

Custom schema properties:

  • tsType: Overrides the type that's generated from the schema. Useful for forcing a type to any or when using non-standard JSON schema extensions (eg).
  • tsEnumNames: Overrides the names used for the elements in an enum. Can also be used to create string enums (eg).

Not expressible in TypeScript:

FAQ

JSON-Schema-to-TypeScript is crashing on my giant file. What can I do?

Prettier is known to run slowly on really big files. To skip formatting and improve performance, set the format option to false.

Further Reading

Who uses JSON-Schema-to-TypeScript?

More Repositories

1

undux

โšก๏ธ Dead simple state for React. Now with Hooks support.
TypeScript
1,493
star
2

frontend-interview-questions

Answers for https://borischerny.com/javascript/%22functional/programming%22/2017/06/09/Frontend-Interview-Questions.html
JavaScript
1,043
star
3

programming-typescript-answers

Official answers for exercises from Orielly's Programming TypeScript
TypeScript
472
star
4

flow-to-typescript

Convert Flow-annotated files to TypeScript
TypeScript
430
star
5

draggable

High performance, fully cross browser, full featured drag and drop in a tiny (2k gzipped), dependency-free package
JavaScript
184
star
6

ngimport

Easy to use ES6 imports for $http, $log, and other Angular 1 services
TypeScript
99
star
7

tslint-no-circular-imports

TSLint plugin to detect and warn about circular imports
TypeScript
86
star
8

lazy-arr

Arrays that look just like regular JavaScript arrays, but are computed lazily.
TypeScript
65
star
9

tsoption

Correct, easy to use Option type for TypeScript. ๐Ÿฆ„
TypeScript
55
star
10

json-schema-to-typescript-browser

Browser demo for json-schema-to-typescript
JavaScript
36
star
11

format-as-currency

Angular directive to format an input as a currency as the user types
JavaScript
32
star
12

india

INterface Diffing and Inspection Assistant
JavaScript
29
star
13

typed-rx-emitter

Typesafe RxJS-based EventEmitter
TypeScript
27
star
14

typed-trait

A 100% typesafe class trait util for TypeScript
TypeScript
22
star
15

css-to-matrix

A little library for converting compound CSS transforms into their matrix equivalents
JavaScript
21
star
16

penner

A library for Penner's easing equations.
JavaScript
15
star
17

redrock

Typesafe, reactive redux
TypeScript
14
star
18

uxhr

The teeny tiny cross-browser XHR library - just 493 bytes gzipped!
JavaScript
12
star
19

language-types-comparison

hierarchical diagram of various type systems
12
star
20

undux-todomvc

TypeScript
11
star
21

SASS-Base64

An automated SASS base64 inline image generator
Python
10
star
22

transform-to-matrix

A tiny library to get 2/3D matricies from CSS3 transform functions. Fully covered by unit tests, with support for AMD, CommonJS, Node, and browser globals.
JavaScript
10
star
23

better-asciidoctor-vscode

AsciiDoc VSCode plugin with live preview - makes your Asciidoc look like an Orielly book
CSS
8
star
24

angular-sticky-table-header

Sticky headers for tables
CoffeeScript
6
star
25

infinite-scroll

High performance infinite scrolling for AngularJS.
CoffeeScript
6
star
26

contributor.io

Fetch counts of a user's contributions to various platforms (Github, NPM, Gems, CPAN, Nuget, ...)
CoffeeScript
5
star
27

isbn-cover

Get a book cover from a 9, 10, or 13 digit ISBN. Works with AMD, CommonJS, Node, and browser globals.
CoffeeScript
5
star
28

undux.org

Documentation for Undux
TypeScript
4
star
29

angular2react-demos

Example usages for angular2react and react2angular
JavaScript
4
star
30

Talks

Some presentations I made or am working on
JavaScript
4
star
31

angular-butter-scroll

A plug and play angular directive for smooth scrolling that works by disabling pointer events
CoffeeScript
3
star
32

watch-dom

Angular $watch for the DOM
CoffeeScript
3
star
33

microbox

A beautiful, lightweight, cross browser lightbox.js replacement
CSS
3
star
34

promise-seq

lazy-execute promises in sequence
TypeScript
3
star
35

create-typescript-app

๐Ÿ”ฎ 1 command to create a new TypeScript Node app
JavaScript
3
star
36

matrix-utilities

Tiny (607b gzipped), high performance utilities for performing 2/3D matrix calculations. Full unit test coverage, compatible with Node/CommonJS, AMD, and browser globals.
CoffeeScript
3
star
37

-dev-null

JavaScript
3
star
38

fx

The tiny animation library - high performance, works with everthing from iOS to IE6, and dependency free. For applications where you need a lot of animation functionality without a lot of footprint
JavaScript
3
star
39

umodel

Tiny, generic, fully tested model.
CoffeeScript
3
star
40

tuple-map

ES6 Map where keys are 2-tuples
TypeScript
2
star
41

savant

A designer-friendly way to generate icon fonts from a folder of SVG icons
JavaScript
2
star
42

color-dungeon-solver

A solver for the Color Dungeon Puzzle in Zelda: Link's Awakening DX for Gameboy
JavaScript
2
star
43

programmingtypescriptbook.com

HTML
2
star
44

winston-bugsnag

A Bugsnag transport for Winston
TypeScript
2
star
45

content-type-to-ext

Map content-type to file extension (and vice-versa)
TypeScript
2
star
46

tsedit

TypeScript Notebooks
TypeScript
2
star
47

Chart

High performance CSS chart rendering from tables
JavaScript
2
star
48

wordscapes-solver

Solver for Wordscapes game
Haskell
2
star
49

auditable

Auditable data structures for modern browsers
TypeScript
2
star
50

codenam.es

https://codenam.es
JavaScript
1
star
51

undux-fb

Facebook-specific wrapper for Undux
Shell
1
star
52

skymaps

TypeScript
1
star
53

annie

A super tiny library for authoring cross-browser animations
JavaScript
1
star
54

js-math

JavaScript
1
star
55

crdt-demo

TypeScript
1
star
56

tsinit

Zero-config, opinionated generator for TypeScript+TsLint+Ava projects
JavaScript
1
star
57

concat-maps

Efficiently concatenate ES6 Maps
TypeScript
1
star
58

Flashcards

Simple flashcards app
TypeScript
1
star
59

rxjs-observable

Standalone Observable, pulled out of RxJS
TypeScript
1
star
60

node-timezone

Get server timezone
JavaScript
1
star
61

learning-scala-v2

Scala
1
star
62

tassert

High quality runtime assertions for Typescript
JavaScript
1
star
63

CT4S

Category Theory for the Sciences
1
star
64

sha1-from-file

generate a short sha1 hash from a file's contents
TypeScript
1
star
65

angular-search

A lightweight Angular search widget
CoffeeScript
1
star
66

npm-packages

Fetch a user's package count from NPM
CoffeeScript
1
star
67

bcherny.github.io

My blog
SCSS
1
star
68

typed-store

a strongly typed store with lenses and change subscription
JavaScript
1
star
69

bst-next

Find the next node in a Binary Search Tree
Haskell
1
star
70

awesome-guide-to-protractor-testing

some notes and lessons learned writing protractor tests and getting them to run on ci
1
star
71

undux-hot-module-reloading-demo

Hot module reloading demo for Undux
JavaScript
1
star