forked from pixelhumain/buildingCommons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganisation.json
58 lines (56 loc) · 1.57 KB
/
organisation.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Building Commons",
"description": "Standard Cross project initiative to follow what's happening with all participating projects",
"url": "http://youtu.be/R91kOkNgEqY",
"members": [{
"@type": "Person",
"email": "oceatoon@gmail.com",
"name": "Tibor Katelbach",
"url": "https://github.com/pixelhumain/buildingCommons/blob/master/members/tibor.katelbach.json",
"description": "",
"image": "http://2.bp.blogspot.com/-Ig3DTfUzDiM/UgNtDih5iEI/AAAAAAAAG8s/e7PP1_SwS6Y/s1600/_SL01653-2.jpg"
},]
}
based on this discussion
https://github.com/hackers4peace/plp-docs/issues/12#issuecomment-77818837
{
"@context": [
"http://schema.org",
{ "superOrganization": { "@reverse": "subOrganization" } }
],
"@graph": [
{
"@id": "https://enspiral.com/",
"@type": "Organization",
"name": "Enspiral",
"member": [
"https://www.loomio.org/u/g48DQjS5/mikey-the-human"
],
"subOrganization": [
"http://loomio.org"
]
},
{
"@id": "https://www.loomio.org/u/g48DQjS5/mikey-the-human",
"@type": "Person",
"name": "Mikey",
"memberOf": [
"https://enspiral.com",
"https://loomio.org"
]
},
{
"@id": "https://loomio.org",
"@type": "Organization",
"name": "Loomio",
"member": [
"https://www.loomio.org/u/g48DQjS5/mikey-the-human"
],
"superOrganization": [
{ "@id": "https://enspiral.com" }
]
}
]
}