summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-07-01 10:45:41 +0200
committerJoas Schilling <coding@schilljs.com>2022-07-01 17:29:26 +0200
commiteb6d6c4968e258364be500b7023890e033691744 (patch)
tree8f45ac8c69306f0f6f63e978c61bf8fc7af99f99 /docs
parent1ec6a4f40d103186632ae62ece95f0b91db3ab0c (diff)
Better document arrays
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/chat.md34
1 files changed, 17 insertions, 17 deletions
diff --git a/docs/chat.md b/docs/chat.md
index ab01949df..711dda709 100644
--- a/docs/chat.md
+++ b/docs/chat.md
@@ -35,23 +35,23 @@ Base endpoint is: `/ocs/v2.php/apps/spreed/api/v1`: since Nextcloud 13
- Data:
Array of messages, each message has at least:
-| field | type | Description |
-|---------------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `id` | int | ID of the comment |
-| `token` | string | Conversation token |
-| `actorType` | string | See [Constants - Actor types of chat messages](constants.md#actor-types-of-chat-messages) |
-| `actorId` | string | Actor id of the message author |
-| `actorDisplayName` | string | Display name of the message author |
-| `timestamp` | int | Timestamp in seconds and UTC time zone |
-| `systemMessage` | string | empty for normal chat message or the type of the system message (untranslated) |
-| `messageType` | string | Currently known types are `comment`, `comment_deleted`, `system` and `command` |
-| `isReplyable` | bool | True if the user can post a reply to this message (only available with `chat-replies` capability) |
-| `referenceId` | string | A reference string that was given while posting the message to be able to identify a sent message again (only available with `chat-reference-id` capability) |
-| `message` | string | Message string with placeholders (see [Rich Object String](https://github.com/nextcloud/server/issues/1706)) |
-| `messageParameters` | array | Message parameters for `message` (see [Rich Object String](https://github.com/nextcloud/server/issues/1706)) |
-| `parent` | array | **Optional:** See `Parent data` below |
-| `reactions` | array | **Optional:** An array map with relation between reaction emoji and total count of reactions with this emoji |
-| `reactionsSelf` | array | **Optional:** When the user reacted this is the list of emojis the user reacted with |
+| field | type | Description |
+|---------------------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| `id` | int | ID of the comment |
+| `token` | string | Conversation token |
+| `actorType` | string | See [Constants - Actor types of chat messages](constants.md#actor-types-of-chat-messages) |
+| `actorId` | string | Actor id of the message author |
+| `actorDisplayName` | string | Display name of the message author |
+| `timestamp` | int | Timestamp in seconds and UTC time zone |
+| `systemMessage` | string | empty for normal chat message or the type of the system message (untranslated) |
+| `messageType` | string | Currently known types are `comment`, `comment_deleted`, `system` and `command` |
+| `isReplyable` | bool | True if the user can post a reply to this message (only available with `chat-replies` capability) |
+| `referenceId` | string | A reference string that was given while posting the message to be able to identify a sent message again (only available with `chat-reference-id` capability) |
+| `message` | string | Message string with placeholders (see [Rich Object String](https://github.com/nextcloud/server/issues/1706)) |
+| `messageParameters` | array | Message parameters for `message` (see [Rich Object String](https://github.com/nextcloud/server/issues/1706)) |
+| `parent` | array | **Optional:** See `Parent data` below |
+| `reactions` | int[] | **Optional:** An array map with relation between reaction emoji and total count of reactions with this emoji |
+| `reactionsSelf` | string[] | **Optional:** When the user reacted this is the list of emojis the user reacted with |
#### Parent data