UNPKG
@datalayer/primer-rjsf
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.8
0.0.7
React JSON Schema Form (RJSF) for Primer
datalayer.github.io/primer-rjsf
datalayer/primer-addons
@datalayer/primer-rjsf
/
lib
/
playground
/
samples
/
allOf.js
27 lines
(26 loc)
•
596 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export default { schema: { type:
"object"
, allOf: [ { properties: { lorem: { type: [
"string"
,
"boolean"
], default: true, }, }, }, { properties: { lorem: { type:
"boolean"
, }, ipsum: { type:
"string"
, }, }, }, ], }, formData: {}, };