Notion · Schema

Emoji

An emoji icon object.

CollaborationDatabaseIdeasNotesProductivityProjectsT1TasksWikiWorkspace

Properties

Name Type Description
type string Always "emoji".
emoji string The emoji character.
View JSON Schema on GitHub

JSON Schema

notion-emoji-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Emoji",
  "title": "Emoji",
  "type": "object",
  "description": "An emoji icon object.",
  "properties": {
    "type": {
      "type": "string",
      "const": "emoji",
      "description": "Always \"emoji\"."
    },
    "emoji": {
      "type": "string",
      "description": "The emoji character."
    }
  },
  "required": [
    "type",
    "emoji"
  ]
}