]> git.mxchange.org Git - friendica.git/blob - src/Protocol/Activity/Namespaces.php
92955c3ada063fa4000357a29f1c86496162750c
[friendica.git] / src / Protocol / Activity / Namespaces.php
1 <?php
2
3 namespace Friendica\Protocol\Activity;
4
5 /**
6  * Activity namespaces constants
7  */
8 final class Namespaces
9 {
10         const ZOT             = 'http://purl.org/zot';
11         const DFRN            = 'http://purl.org/macgirvin/dfrn/1.0';
12         const THREAD          = 'http://purl.org/syndication/thread/1.0';
13         const TOMB            = 'http://purl.org/atompub/tombstones/1.0';
14         const ACTIVITY2       = 'https://www.w3.org/ns/activitystreams#';
15         const ACTIVITY        = 'http://activitystrea.ms/spec/1.0/';
16         const ACTIVITY_SCHEMA = 'http://activitystrea.ms/schema/1.0/';
17         const MEDIA           = 'http://purl.org/syndication/atommedia';
18         const SALMON_ME       = 'http://salmon-protocol.org/ns/magic-env';
19         const OSTATUSSUB      = 'http://ostatus.org/schema/1.0/subscribe';
20         const GEORSS          = 'http://www.georss.org/georss';
21         const POCO            = 'http://portablecontacts.net/spec/1.0';
22         const FEED            = 'http://schemas.google.com/g/2010#updates-from';
23         const OSTATUS         = 'http://ostatus.org/schema/1.0';
24         const STATUSNET       = 'http://status.net/schema/api/1/';
25         const ATOM1           = 'http://www.w3.org/2005/Atom';
26         const MASTODON        = 'http://mastodon.social/schema/1.0';
27 }