Misskey · Schema

UserList

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
name string
userIds array
isPublic boolean
View JSON Schema on GitHub

JSON Schema

misskey-userlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/UserList",
  "title": "UserList",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "id",
      "example": "xxxxxxxxxx"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string"
    },
    "userIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "id"
      }
    },
    "isPublic": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "createdAt",
    "name",
    "isPublic"
  ]
}