Misskey · Schema

Blocking

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
blockeeId string
blockee object
View JSON Schema on GitHub

JSON Schema

misskey-blocking-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/Blocking",
  "title": "Blocking",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "blockeeId": {
      "type": "string",
      "format": "id"
    },
    "blockee": {
      "type": "object",
      "$ref": "#/components/schemas/UserDetailedNotMe"
    }
  },
  "required": [
    "id",
    "createdAt",
    "blockeeId",
    "blockee"
  ]
}