"Fossies" - the Fresh Open Source Software Archive 
Member "horizon-16.0.0/openstack_dashboard/contrib/developer/static/dashboard/developer/form-builder/example-forms/array.json" (16 Oct 2019, 572 Bytes) of package /linux/misc/openstack/horizon-16.0.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) JSON source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 {
2 "schema": {
3 "title": "Array",
4 "type": "object",
5 "properties": {
6 "arrayKey": {
7 "type": "array",
8 "title": "Array Item",
9 "items": {
10 "type": "object",
11 "properties": {
12 "one": {
13 "type": "string"
14 },
15 "two": {
16 "type": "string"
17 }
18 }
19 }
20 }
21 }
22 },
23 "form": [
24 {
25 "key": "arrayKey",
26 "type": "array",
27 "title": "The 'array' title",
28 "description": "This is the 'array' description"
29 }
30 ]
31 }