{
"$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"
]
}