Misskey · Schema

EmojiDetailedAdmin

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
updatedAt stringnull
name string
host stringnull The local host is represented with `null`.
publicUrl string
originalUrl string
uri stringnull
type stringnull
aliases array
category stringnull
license stringnull
localOnly boolean
isSensitive boolean
roleIdsThatCanBeUsedThisEmojiAsReaction array
View JSON Schema on GitHub

JSON Schema

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