Misskey · Schema

Clip

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
lastClippedAt stringnull
userId string
user object
name string
description stringnull
isPublic boolean
favoritedCount number
isFavorited boolean
notesCount integer
View JSON Schema on GitHub

JSON Schema

misskey-clip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/Clip",
  "title": "Clip",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "lastClippedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "userId": {
      "type": "string",
      "format": "id"
    },
    "user": {
      "type": "object",
      "$ref": "#/components/schemas/UserLite"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "isPublic": {
      "type": "boolean"
    },
    "favoritedCount": {
      "type": "number"
    },
    "isFavorited": {
      "type": "boolean"
    },
    "notesCount": {
      "type": "integer"
    }
  },
  "required": [
    "id",
    "createdAt",
    "lastClippedAt",
    "userId",
    "user",
    "name",
    "description",
    "isPublic",
    "favoritedCount"
  ]
}