UNPKG

jsonschema2ddl

Version:
32 lines 527 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Example schema", "type": "object", "comment": "the root of everything", "properties": { "UserId": { "type": "integer", "pk": true }, "UserName": { "type": "string" }, "Sex": { "type": "string" }, "Age": { "anyOf": [ { "type": "integer" }, { "type": "number" } ] }, "Address": { "type": "string" } }, "index": [] }