Misskey · Schema

EmojiDetailed

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
updatedAt stringnull
aliases array
name string
category stringnull
host stringnull The local host is represented with `null`.
url string
license stringnull
isSensitive boolean
localOnly boolean
requestedBy stringnull
memo stringnull
roleIdsThatCanBeUsedThisEmojiAsReaction array
roleIdsThatCanNotBeUsedThisEmojiAsReaction array
View JSON Schema on GitHub

JSON Schema

misskey-emojidetailed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/EmojiDetailed",
  "title": "EmojiDetailed",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "aliases": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "name": {
      "type": "string"
    },
    "category": {
      "type": [
        "string",
        "null"
      ]
    },
    "host": {
      "type": [
        "string",
        "null"
      ],
      "description": "The local host is represented with `null`."
    },
    "url": {
      "type": "string"
    },
    "license": {
      "type": [
        "string",
        "null"
      ]
    },
    "isSensitive": {
      "type": "boolean"
    },
    "localOnly": {
      "type": "boolean"
    },
    "requestedBy": {
      "type": [
        "string",
        "null"
      ]
    },
    "memo": {
      "type": [
        "string",
        "null"
      ]
    },
    "roleIdsThatCanBeUsedThisEmojiAsReaction": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "roleIdsThatCanNotBeUsedThisEmojiAsReaction": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    }
  },
  "required": [
    "id",
    "aliases",
    "name",
    "category",
    "host",
    "url",
    "license",
    "isSensitive",
    "localOnly"
  ]
}