Misskey · Schema

EmojiSimple

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
aliases array
name string
category stringnull
url string
localOnly boolean
isSensitive boolean
roleIdsThatCanBeUsedThisEmojiAsReaction array
roleIdsThatCanNotBeUsedThisEmojiAsReaction array
View JSON Schema on GitHub

JSON Schema

misskey-emojisimple-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/EmojiSimple",
  "title": "EmojiSimple",
  "type": "object",
  "properties": {
    "aliases": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "name": {
      "type": "string"
    },
    "category": {
      "type": [
        "string",
        "null"
      ]
    },
    "url": {
      "type": "string"
    },
    "localOnly": {
      "type": "boolean"
    },
    "isSensitive": {
      "type": "boolean"
    },
    "roleIdsThatCanBeUsedThisEmojiAsReaction": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "roleIdsThatCanNotBeUsedThisEmojiAsReaction": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    }
  },
  "required": [
    "aliases",
    "name",
    "category",
    "url"
  ]
}