Conversation

This entity represents a private conversation between persons.

Properties

Property Type (Length) Description
author diaspora* ID The diaspora* ID of the author of the conversation.
guid GUID The GUID of the conversation.
subject String (255) The subject of the conversation.
created_at Timestamp The create timestamp of the conversation.
participants diaspora* IDs diaspora* IDs of all participants of this conversation, including the author, seperated by ;.
message Message The first Message in the conversation, needs to be the same author.

Example

<conversation>
  <author>alice@example.org</author>
  <guid>9b1376a029eb013487753131731751e9</guid>
  <subject>this is a very informative subject</subject>
  <created_at>2016-07-11T23:17:48Z</created_at>
  <participants>alice@example.org;bob@example.com</participants>
  <message>
    <guid>5cc5692029eb013487753131731751e9</guid>
    <text>this is a very informative text</text>
    <created_at>2016-07-11T23:17:48Z</created_at>
    <author>alice@example.org</author>
    <conversation_guid>9b1376a029eb013487753131731751e9</conversation_guid>
  </message>
</conversation>