jsonschema2ddl
Version:
Convert JSON Schema to DDL
32 lines • 527 B
JSON
{
"$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": []
}