Misskey · Schema

ChatRoom

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
ownerId string
owner object
name string
description string
isMuted boolean
View JSON Schema on GitHub

JSON Schema

misskey-chatroom-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/ChatRoom",
  "title": "ChatRoom",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "ownerId": {
      "type": "string"
    },
    "owner": {
      "type": "object",
      "$ref": "#/components/schemas/UserLite"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "isMuted": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "createdAt",
    "ownerId",
    "owner",
    "name",
    "description"
  ]
}