{ "$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" ] }