UNPKG
jsonschema2ddl
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Convert JSON Schema to DDL
github.com/promptstore/jsonschema2ddl
promptstore/jsonschema2ddl
jsonschema2ddl
/
test
/
schema_time.json
19 lines
•
320 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"
$schema
"
:
"https://json-schema.org/draft/2019-09/schema"
,
"type"
:
"object"
,
"definitions"
: {
"date"
: {
"type"
:
"string"
,
"format"
:
"date"
} },
"properties"
: {
"ts"
: {
"type"
:
"string"
,
"format"
:
"date-time"
},
"d"
: {
"
$ref
"
:
"#/definitions/date"
} } }