pub mod core {
pub const OBJECT: &str = "Object";
pub const LINK: &str = "Link";
pub const ACTIVITY: &str = "Activity";
pub const INTRANSITIVE_ACTIVITY: &str = "IntransitiveActivity";
pub const COLLECTION: &str = "Collection";
pub const ORDERED_COLLECTION: &str = "OrderedCollection";
pub const COLLECTION_PAGE: &str = "CollectionPage";
pub const ORDERED_COLLECTION_PAGE: &str = "OrderedCollectionPage";
}
pub mod actor {
pub const APPLICATION: &str = "Application";
pub const GROUP: &str = "Group";
pub const ORGANIZATION: &str = "Organization";
pub const PERSON: &str = "Person";
pub const SERVICE: &str = "Service";
}
pub mod activity {
pub const ACCEPT: &str = "Accept";
pub const ADD: &str = "Add";
pub const ANNOUNCE: &str = "Announce";
pub const ARRIVE: &str = "Arrive";
pub const BLOCK: &str = "Block";
pub const CREATE: &str = "Create";
pub const DELETE: &str = "Delete";
pub const DISLIKE: &str = "Dislike";
pub const FLAG: &str = "Flag";
pub const FOLLOW: &str = "Follow";
pub const IGNORE: &str = "Ignore";
pub const INVITE: &str = "Invite";
pub const JOIN: &str = "Join";
pub const LEAVE: &str = "Leave";
pub const LIKE: &str = "Like";
pub const LISTEN: &str = "Listen";
pub const MOVE: &str = "Move";
pub const OFFER: &str = "Offer";
pub const QUESTION: &str = "Question";
pub const REJECT: &str = "Reject";
pub const READ: &str = "Read";
pub const REMOVE: &str = "Remove";
pub const TENTATIVE_ACCEPT: &str = "TentativeAccept";
pub const TENTATIVE_REJECT: &str = "TentativeReject";
pub const TRAVEL: &str = "Travel";
pub const UNDO: &str = "Undo";
pub const UPDATE: &str = "Update";
pub const VIEW: &str = "View";
}
pub mod object {
pub const ARTICLE: &str = "Article";
pub const AUDIO: &str = "Audio";
pub const DOCUMENT: &str = "Document";
pub const EVENT: &str = "Event";
pub const IMAGE: &str = "Image";
pub const NOTE: &str = "Note";
pub const PAGE: &str = "Page";
pub const PLACE: &str = "Place";
pub const PROFILE: &str = "Profile";
pub const RELATIONSHIP: &str = "Relationship";
pub const TOMBSTONE: &str = "Tombstone";
pub const VIDEO: &str = "Video";
}
pub mod link {
pub const MENTION: &str = "Mention";
pub const HASHTAG: &str = "Hashtag";
pub const EMOJI: &str = "Emoji";
}