Misskey · Schema

Note

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
deletedAt stringnull
text stringnull
cw stringnull
userId string
user object
replyId stringnull
renoteId stringnull
reply objectnull
renote objectnull
isHidden boolean
visibility string
mentions array
visibleUserIds array
fileIds array
files array
tags array
poll objectnull
emojis object
channelId stringnull
channel objectnull
localOnly boolean
dimension integernull
reactionAcceptance stringnull
reactionEmojis object
reactions object
reactionCount number
renoteCount number
repliesCount number
uri string
url string
reactionAndUserPairCache array
clippedCount number
myReaction stringnull
View JSON Schema on GitHub

JSON Schema

misskey-note-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/Note",
  "title": "Note",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "deletedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "text": {
      "type": [
        "string",
        "null"
      ]
    },
    "cw": {
      "type": [
        "string",
        "null"
      ]
    },
    "userId": {
      "type": "string",
      "format": "id"
    },
    "user": {
      "type": "object",
      "$ref": "#/components/schemas/UserLite"
    },
    "replyId": {
      "type": [
        "string",
        "null"
      ],
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "renoteId": {
      "type": [
        "string",
        "null"
      ],
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "reply": {
      "type": [
        "object",
        "null"
      ],
      "anyOf": [
        {
          "$ref": "#/components/schemas/Note"
        },
        {
          "type": "null"
        }
      ]
    },
    "renote": {
      "type": [
        "object",
        "null"
      ],
      "anyOf": [
        {
          "$ref": "#/components/schemas/Note"
        },
        {
          "type": "null"
        }
      ]
    },
    "isHidden": {
      "type": "boolean"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "public",
        "home",
        "followers",
        "specified"
      ]
    },
    "mentions": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "visibleUserIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "fileIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "files": {
      "type": "array",
      "items": {
        "type": "object",
        "$ref": "#/components/schemas/DriveFile"
      }
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "poll": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "expiresAt": {
          "type": [
            "string",
            "null"
          ],
          "format": "date-time"
        },
        "multiple": {
          "type": "boolean"
        },
        "choices": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "isVoted": {
                "type": "boolean"
              },
              "text": {
                "type": "string"
              },
              "votes": {
                "type": "number"
              }
            },
            "required": [
              "isVoted",
              "text",
              "votes"
            ]
          }
        }
      },
      "required": [
        "multiple",
        "choices"
      ]
    },
    "emojis": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "type": "string"
          }
        ]
      }
    },
    "channelId": {
      "type": [
        "string",
        "null"
      ],
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "channel": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "color": {
          "type": "string"
        },
        "isSensitive": {
          "type": "boolean"
        },
        "allowRenoteToExternal": {
          "type": "boolean"
        },
        "userId": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "id",
        "name",
        "color",
        "isSensitive",
        "allowRenoteToExternal",
        "userId"
      ]
    },
    "localOnly": {
      "type": "boolean"
    },
    "dimension": {
      "type": [
        "integer",
        "null"
      ]
    },
    "reactionAcceptance": {
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "likeOnly",
        "likeOnlyForRemote",
        "nonSensitiveOnly",
        "nonSensitiveOnlyForLocalLikeOnlyForRemote",
        null
      ]
    },
    "reactionEmojis": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "type": "string"
          }
        ]
      }
    },
    "reactions": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "type": "number"
          }
        ]
      }
    },
    "reactionCount": {
      "type": "number"
    },
    "renoteCount": {
      "type": "number"
    },
    "repliesCount": {
      "type": "number"
    },
    "uri": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "reactionAndUserPairCache": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "clippedCount": {
      "type": "number"
    },
    "myReaction": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "id",
    "createdAt",
    "text",
    "userId",
    "user",
    "visibility",
    "reactionAcceptance",
    "reactionEmojis",
    "reactions",
    "reactionCount",
    "renoteCount",
    "repliesCount"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/misskey-note"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.