-
Notifications
You must be signed in to change notification settings - Fork 0
/
heroes.json
36 lines (36 loc) · 1.76 KB
/
heroes.json
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
28
29
30
31
32
33
34
35
36
{
"nodes":[
{"id":"Batman","type":"person","state":"perm"},
{"id":"Superman","type":"person","state":"perm"},
{"id":"Green Lantern","type":"person","state":"perm"},
{"id":"Martian Manhunter","type":"person","state":"perm"},
{"id":"Wonder Woman","type":"person","state":"perm"},
{"id":"The Flash","type":"person","state":"perm"},
{"id":"Aquaman","type":"person","state":"perm"},
{"id":"Justice League","type":"project","state":"perm"},
{"id":"Captain America","type":"person","state":"perm"},
{"id":"Iron Man","type":"person","state":"perm"},
{"id":"Black Widow","type":"person","state":"perm"},
{"id":"Hawkeye","type":"person","state":"perm"},
{"id":"Hulk","type":"person","state":"perm"},
{"id":"Thor","type":"person","state":"perm"},
{"id":"Nick Fury","type":"person","state":"perm"},
{"id":"The Avengers","type":"project","state":"perm"}
],
"links":[
{"__src":"Batman","__dst":"Justice League","name":"is in"},
{"__src":"Superman","__dst":"Justice League","name":"leads"},
{"__src":"Green Lantern","__dst":"Justice League","name":"is in"},
{"__src":"Wonder Woman","__dst":"Justice League","name":"is in"},
{"__src":"The Flash","__dst":"Justice League","name":"is in"},
{"__src":"Aquaman","__dst":"Justice League","name":"is in"},
{"__src":"Martian Manhunter","__dst":"Justice League","name":"is in"},
{"__src":"Iron Man","__dst":"The Avengers","name":"is in"},
{"__src":"Captain America","__dst":"The Avengers","name":"leads"},
{"__src":"Hawkeye","__dst":"The Avengers","name":"is in"},
{"__src":"Hulk","__dst":"The Avengers","name":"is in"},
{"__src":"Black Widow","__dst":"The Avengers","name":"is in"},
{"__src":"Nick Fury","__dst":"The Avengers","name":"is in"},
{"__src":"Thor","__dst":"The Avengers","name":"is in"}
]
}