Misskey · Schema

UserDetailedNotMeOnly

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
url stringnull
uri stringnull
movedTo stringnull
alsoKnownAs arraynull
createdAt string
updatedAt stringnull
lastFetchedAt stringnull
bannerUrl stringnull
bannerBlurhash stringnull
isLocked boolean
isSilenced boolean
isLimited boolean
isSuspended boolean
description stringnull
location stringnull
birthday stringnull
lang stringnull
fields array
verifiedLinks array
followersCount number
followingCount number
notesCount number
pinnedNoteIds array
pinnedNotes array
pinnedPageId stringnull
pinnedPage objectnull
publicReactions boolean
followingVisibility string
followersVisibility string
chatScope string
canChat boolean
roles array
followedMessage stringnull
memo stringnull
moderationNote string
twoFactorEnabled boolean
usePasswordLessLogin boolean
securityKeys boolean
mutualLinkSections array
isFollowing boolean
isFollowed boolean
hasPendingFollowRequestFromYou boolean
hasPendingFollowRequestToYou boolean
isBlocking boolean
isBlocked boolean
isMuted boolean
isRenoteMuted boolean
notify string
withReplies boolean
View JSON Schema on GitHub

JSON Schema

misskey-userdetailednotmeonly-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/UserDetailedNotMeOnly",
  "title": "UserDetailedNotMeOnly",
  "type": "object",
  "properties": {
    "url": {
      "type": [
        "string",
        "null"
      ],
      "format": "url"
    },
    "uri": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "movedTo": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "alsoKnownAs": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "lastFetchedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "bannerUrl": {
      "type": [
        "string",
        "null"
      ],
      "format": "url"
    },
    "bannerBlurhash": {
      "type": [
        "string",
        "null"
      ]
    },
    "isLocked": {
      "type": "boolean"
    },
    "isSilenced": {
      "type": "boolean"
    },
    "isLimited": {
      "type": "boolean"
    },
    "isSuspended": {
      "type": "boolean",
      "example": false
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "example": "Hi masters, I am Ai!"
    },
    "location": {
      "type": [
        "string",
        "null"
      ]
    },
    "birthday": {
      "type": [
        "string",
        "null"
      ],
      "example": "2018-03-12"
    },
    "lang": {
      "type": [
        "string",
        "null"
      ],
      "example": "ja-JP"
    },
    "fields": {
      "type": "array",
      "maxItems": 16,
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "value"
        ]
      }
    },
    "verifiedLinks": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "url"
      }
    },
    "followersCount": {
      "type": "number"
    },
    "followingCount": {
      "type": "number"
    },
    "notesCount": {
      "type": "number"
    },
    "pinnedNoteIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "pinnedNotes": {
      "type": "array",
      "items": {
        "type": "object",
        "$ref": "#/components/schemas/Note"
      }
    },
    "pinnedPageId": {
      "type": [
        "string",
        "null"
      ]
    },
    "pinnedPage": {
      "type": [
        "object",
        "null"
      ],
      "anyOf": [
        {
          "$ref": "#/components/schemas/Page"
        },
        {
          "type": "null"
        }
      ]
    },
    "publicReactions": {
      "type": "boolean"
    },
    "followingVisibility": {
      "type": "string",
      "enum": [
        "public",
        "followers",
        "private"
      ]
    },
    "followersVisibility": {
      "type": "string",
      "enum": [
        "public",
        "followers",
        "private"
      ]
    },
    "chatScope": {
      "type": "string",
      "enum": [
        "everyone",
        "following",
        "followers",
        "mutual",
        "none"
      ]
    },
    "canChat": {
      "type": "boolean"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "object",
        "$ref": "#/components/schemas/RoleLite"
      }
    },
    "followedMessage": {
      "type": [
        "string",
        "null"
      ]
    },
    "memo": {
      "type": [
        "string",
        "null"
      ]
    },
    "moderationNote": {
      "type": "string"
    },
    "twoFactorEnabled": {
      "type": "boolean"
    },
    "usePasswordLessLogin": {
      "type": "boolean"
    },
    "securityKeys": {
      "type": "boolean"
    },
    "mutualLinkSections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": [
              "string",
              "null"
            ]
          },
          "mutualLinks": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "format": "misskey:id"
                },
                "url": {
                  "type": "string",
                  "format": "url"
                },
                "fileId": {
                  "type": "string",
                  "format": "misskey:id"
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "imgSrc": {
                  "type": "string"
                }
              },
              "required": [
                "id",
                "url",
                "fileId",
                "description",
                "imgSrc"
              ]
            }
          }
        },
        "required": [
          "name",
          "mutualLinks"
        ]
      }
    },
    "isFollowing": {
      "type": "boolean"
    },
    "isFollowed": {
      "type": "boolean"
    },
    "hasPendingFollowRequestFromYou": {
      "type": "boolean"
    },
    "hasPendingFollowRequestToYou": {
      "type": "boolean"
    },
    "isBlocking": {
      "type": "boolean"
    },
    "isBlocked": {
      "type": "boolean"
    },
    "isMuted": {
      "type": "boolean"
    },
    "isRenoteMuted": {
      "type": "boolean"
    },
    "notify": {
      "type": "string",
      "enum": [
        "normal",
        "none"
      ]
    },
    "withReplies": {
      "type": "boolean"
    }
  },
  "required": [
    "url",
    "uri",
    "movedTo",
    "alsoKnownAs",
    "createdAt",
    "updatedAt",
    "lastFetchedAt",
    "bannerUrl",
    "bannerBlurhash",
    "isLocked",
    "isSilenced",
    "isLimited",
    "isSuspended",
    "description",
    "location",
    "birthday",
    "lang",
    "fields",
    "verifiedLinks",
    "followersCount",
    "followingCount",
    "notesCount",
    "pinnedNoteIds",
    "pinnedNotes",
    "pinnedPageId",
    "pinnedPage",
    "publicReactions",
    "followingVisibility",
    "followersVisibility",
    "chatScope",
    "canChat",
    "roles",
    "memo",
    "mutualLinkSections"
  ]
}

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-userdetailednotmeonly"
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.