22 Emoji

https://w3id.org/class/redaktor/Emoji

JSON

Inbox

Definition

Mastodon unterstützt beliebige Emojis, d.h. kleine Bilder, die von Administratoren hochgeladen und über Shortcodes aufgerufen werden können. Hierfür wird ein Emoji-Typ verwendet. Diese Emojis werden in der Tag-Eigenschaft aufgeführt, genau wie Mention- und Hashtag-Objekte, da sie Entitäten sind, die die Darstellung des Textes beeinflussen.
siehe mastodon documentation 'Custom emojis'

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "Emoji": ":Emoji"
    }
  ],

  "id": "https://example.com/@alice/hello-world",
  "type": "Note",
  "content": "Hello world :kappa:",
  "tag": [
    {
      "id": "https://example.com/emoji/123",
      "type": "Emoji",
      "name": ":kappa:",
      "icon": {
        "type": "Image",
        "mediaType": "image/png",
        "url": "https://example.com/files/kappa.png"
      }
    }
  ]
}