UNPKG

typescript-json-schema

Version:

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

20 lines (19 loc) 368 B
{ "type": "object", "properties": { "foo": { "$ref": "#/definitions/Enum" } }, "required": [ "foo" ], "definitions": { "Enum": { "type": "string", "enum": [ "x", "y" ] } }, "$schema": "http://json-schema.org/draft-04/schema#" }