imiger-fork/data/test.json @ f8464192
1 |
{
|
---|---|
2 |
"vertices": [ |
3 |
{ |
4 |
"title": "Vertex 1", |
5 |
"id": 0, |
6 |
"archetype": 0, |
7 |
"text": "not used", |
8 |
"attributes": { |
9 |
"0": "Some attr value", |
10 |
"1": 52, |
11 |
"2": 12 |
12 |
} |
13 |
}, |
14 |
{ |
15 |
"title": "Vertex 2", |
16 |
"id": 1, |
17 |
"archetype": 1, |
18 |
"text": "not used", |
19 |
"attributes": { |
20 |
"1": 7, |
21 |
"2": -598 |
22 |
} |
23 |
}, |
24 |
{ |
25 |
"title": "Vertex 3", |
26 |
"id": 2, |
27 |
"archetype": 2, |
28 |
"text": "not used", |
29 |
"attributes": { |
30 |
"0": "Some attr value" |
31 |
} |
32 |
}, |
33 |
{ |
34 |
"title": "Vertex 4", |
35 |
"id": 3, |
36 |
"archetype": 0, |
37 |
"text": "not used", |
38 |
"attributes": { |
39 |
"0": "Some attr value", |
40 |
"1": 782, |
41 |
"2": -35456 |
42 |
} |
43 |
} |
44 |
], |
45 |
"edges": [ |
46 |
{ |
47 |
"from": 0, |
48 |
"to": 1, |
49 |
"id": 0, |
50 |
"archetype": 0, |
51 |
"text": "not used", |
52 |
"attributes": { |
53 |
} |
54 |
}, |
55 |
{ |
56 |
"from": 1, |
57 |
"to": 2, |
58 |
"id": 1, |
59 |
"archetype": 0, |
60 |
"text": "not used", |
61 |
"attributes": { |
62 |
} |
63 |
}, |
64 |
{ |
65 |
"from": 2, |
66 |
"to": 0, |
67 |
"id": 2, |
68 |
"archetype": 0, |
69 |
"text": "not used", |
70 |
"attributes": { |
71 |
} |
72 |
}, |
73 |
{ |
74 |
"from": 3, |
75 |
"to": 1, |
76 |
"id": 3, |
77 |
"archetype": 0, |
78 |
"text": "not used", |
79 |
"attributes": { |
80 |
} |
81 |
} |
82 |
], |
83 |
|
84 |
"vertexArchetypes": [ |
85 |
{ |
86 |
"name": "Some archetype", |
87 |
"text": "not used" |
88 |
}, |
89 |
{ |
90 |
"name": "Some different archetype", |
91 |
"text": "not used" |
92 |
}, |
93 |
{ |
94 |
"name": "Another archetype", |
95 |
"text": "not used" |
96 |
} |
97 |
], |
98 |
|
99 |
"edgeArchetypes": [ |
100 |
{ |
101 |
"name": "Edge archetype", |
102 |
"text": "not used" |
103 |
} |
104 |
], |
105 |
|
106 |
"attributeTypes": [ |
107 |
{ |
108 |
"name": "Attr 1", |
109 |
"dataType": "string", |
110 |
"text": "not used" |
111 |
}, |
112 |
{ |
113 |
"name": "Attr 2", |
114 |
"dataType": "int", |
115 |
"text": "not used" |
116 |
}, |
117 |
{ |
118 |
"name": "Attr 3", |
119 |
"dataType": "int", |
120 |
"text": "not used" |
121 |
} |
122 |
] |
123 |
}
|