fedimovies/src/activitypub/vocabulary.rs

25 lines
649 B
Rust

/// https://www.w3.org/TR/activitystreams-vocabulary/
// Activity types
pub const ACCEPT: &str = "Accept";
pub const CREATE: &str = "Create";
pub const DELETE: &str = "Delete";
pub const FOLLOW: &str = "Follow";
pub const LIKE: &str = "Like";
pub const REJECT: &str = "Reject";
pub const UNDO: &str = "Undo";
pub const UPDATE: &str = "Update";
// Actor types
pub const PERSON: &str = "Person";
pub const SERVICE: &str = "Service";
// Object types
pub const DOCUMENT: &str = "Document";
pub const IMAGE: &str = "Image";
pub const MENTION: &str = "Mention";
pub const NOTE: &str = "Note";
// Misc
pub const PROPERTY_VALUE: &str = "PropertyValue";