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