forked from erincandescent/activitypump
-
Notifications
You must be signed in to change notification settings - Fork 78
/
activitypub-context.jsonld
51 lines (51 loc) · 1.03 KB
/
activitypub-context.jsonld
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
{"@context":
["http://www.w3.org/ns/activitystreams",
{"ap": "http://www.w3.org/ns/activitypub#",
"inbox": {
"@id": "http://www.w3.org/ns/ldp#inbox",
"@type": "@id"
},
"outbox": {
"@id": "ap:outbox",
"@type": "@id"
},
"following": {
"@id": "ap:following",
"@type": "@id"
},
"followers": {
"@id": "ap:followers",
"@type": "@id"
},
"streams": {
"@id": "ap:streams",
"@type": "@set"
},
"preferredUsername": "ap:preferredUsername",
"endpoints": {
"@id": "ap:endpoints",
"@type": "@id"
},
"uploadMedia": {
"@id": "ap:uploadMedia",
"@type": "@id"
},
"proxyUrl": {
"@id": "ap:proxyUrl",
"@type": "@id"
},
"oauthClientAuthorize": {
"@id": "ap:oauthClientAuthorize",
"@type": "@id"
},
"provideClientKey": {
"@id": "ap:provideClientKey",
"@type": "@id"
},
"authorizeClientKey": {
"@id": "ap:authorizeClientKey",
"@type": "@id"
}
}
]
}