Misskey · Schema

ChatRoomInvitation

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
userId string
user object
roomId string
room object
View JSON Schema on GitHub

JSON Schema

misskey-chatroominvitation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/ChatRoomInvitation",
  "title": "ChatRoomInvitation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "userId": {
      "type": "string"
    },
    "user": {
      "type": "object",
      "$ref": "#/components/schemas/UserLite"
    },
    "roomId": {
      "type": "string"
    },
    "room": {
      "type": "object",
      "$ref": "#/components/schemas/ChatRoom"
    }
  },
  "required": [
    "id",
    "createdAt",
    "userId",
    "user",
    "roomId",
    "room"
  ]
}