example-data-cols.json - jscancer - Javascript crap (relatively small) | |
git clone git://git.codemadness.org/jscancer | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
example-data-cols.json (1426B) | |
--- | |
1 { | |
2 "columns" : | |
3 [ | |
4 { | |
5 "name" : "name", | |
6 "label" : "Name" | |
7 }, { | |
8 "name" : "type", | |
9 "label" : "Type" | |
10 }, { | |
11 "name" : "proprietary", | |
12 "label" : "Proprietary?", | |
13 "fn" : "item_bool" | |
14 } | |
15 ], | |
16 "items" : [ | |
17 { | |
18 "label" : "DragonflyBSD", | |
19 "value" : "DragonflyBSD", | |
20 "name" : "DragonflyBSD", | |
21 "type" : "BSD", | |
22 "proprietary" : "No" | |
23 }, { | |
24 "label" : "GNU/Hurd", | |
25 "value" : "GNU/Hurd", | |
26 "name" : "GNU/Hurd", | |
27 "type" : "BSD-like", | |
28 "proprietary" : "No" | |
29 }, { | |
30 "label" : "GNU/Linux", | |
31 "value" : "GNU/Linux", | |
32 "name" : "GNU/Linux", | |
33 "type" : "Linux", | |
34 "proprietary" : "No" | |
35 }, { | |
36 "label" : "FreeBSD", | |
37 "value" : "FreeBSD", | |
38 "name" : "FreeBSD", | |
39 "type" : "BSD", | |
40 "proprietary" : "No" | |
41 }, { | |
42 "label" : "MS-DOS 6.11", | |
43 "value" : "MS-DOS 6.11", | |
44 "name" : "MS-DOS 6.11", | |
45 "type" : "DOS", | |
46 "proprietary" : "Yes" | |
47 }, { | |
48 "label" : "OpenBSD", | |
49 "value" : "OpenBSD", | |
50 "name" : "OpenBSD", | |
51 "type" : "BSD", | |
52 "proprietary" : "No" | |
53 }, { | |
54 "label" : "OpenSolaris", | |
55 "value" : "OpenSolaris", | |
56 "name" : "OpenSolaris", | |
57 "type" : "BSD-like", | |
58 "proprietary" : "No" | |
59 }, { | |
60 "label" : "NetBSD", | |
61 "value" : "NetBSD", | |
62 "name" : "NetBSD", | |
63 "type" : "BSD", | |
64 "proprietary" : "No" | |
65 }, { | |
66 "label" : "Plan9", | |
67 "value" : "Plan9", | |
68 "name" : "Plan9", | |
69 "type" : "Plan9", | |
70 "proprietary" : "No" | |
71 }, { | |
72 "label" : "Windows", | |
73 "value" : "Windows", | |
74 "name" : "Windows", | |
75 "type" : "Windows", | |
76 "proprietary" : "Yes" | |
77 } | |
78 ] | |
79 } |