Misskey · Schema

NoteFavorite

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
note object
noteId string
View JSON Schema on GitHub

JSON Schema

misskey-notefavorite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/NoteFavorite",
  "title": "NoteFavorite",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "note": {
      "type": "object",
      "$ref": "#/components/schemas/Note"
    },
    "noteId": {
      "type": "string",
      "format": "id"
    }
  },
  "required": [
    "id",
    "createdAt",
    "note",
    "noteId"
  ]
}