UNPKG
react-jsonschema
Version:
latest (1.0.0)
1.0.0
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.0
React forms with JSONSchema
github.com/vutran/react-jsonschema
vutran/react-jsonschema
react-jsonschema
/
docs
/
schemas
/
basic.json
20 lines
(19 loc)
•
327 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"title"
:
"Basic Demo"
,
"type"
:
"object"
,
"properties"
:
{
"firstName"
:
{
"type"
:
"string"
,
"title"
:
"First Name"
}
,
"lastName"
:
{
"type"
:
"string"
,
"title"
:
"Last Name"
}
,
"age"
:
{
"type"
:
"integer"
,
"title"
:
"Age"
,
"description"
:
"Age in years"
}
}
}