UNPKG

typescript-json-schema

Version:

typescript-json-schema generates JSON Schema files from your Typescript sources

21 lines (19 loc) 363 B
{ "type": "object", "properties": { "foo": { "$ref": "#/definitions/Enum" } }, "required": [ "foo" ], "definitions": { "Enum": { "type": "number", "enum": [ 1, 2 ] } }, "$schema": "http://json-schema.org/draft-04/schema#" }