--- title: StatusMessage --- This entity represents a reshare of a status message. It inherits from [Post][post]. ## Properties | Property | Type (Length) | Description | | ------------ | ---------------------------- | ------------------------------------------------------ | | `author` | [diaspora\* ID][diaspora-id] | The diaspora\* ID of the author of the status message. | | `guid` | [GUID][guid] | The GUID of the status message. | | `created_at` | [Timestamp][timestamp] | The create timestamp of the status message. | | `public` | [Boolean][boolean] | `true` if the status message is public. | | `text` | [Markdown][markdown] (65535) | The status message text. | ## Optional Properties | Property | Type (Length) | Description | | ----------------------- | ---------------------- | ----------------------------------------------------------------------------------------------------------------------- | | `provider_display_name` | [String][string] (255) | The means by which the author has posted the status message. | | `location` | [Location][location] | The Location information of the status message. | | `photo` | [Photo][photo]s | The attached Photos of the status message, the `status_message_guid` and the `author` need to match the status message. | | `poll` | [Poll][poll] | The attached Poll of the status message. | | `event` | [Event][event] | The attached Event of the status message. | ## Examples ### Minimal ~~~xml alice@example.org 17418fb029e6013487743131731751e9 2016-07-11T22:38:19Z I am a very interesting status update true ~~~ ### With [Location][location] ~~~xml alice@example.org c3893bf029e7013487753131731751e9 2016-07-11T22:50:18Z I am a very interesting status update
Vienna, Austria
48.208174 16.373819
true
~~~ ### With [Photo][photo]s ~~~xml alice@example.org e05828d029e7013487753131731751e9 2016-07-11T22:52:56Z I am a very interesting status update 0788070029e8013487753131731751e9 alice@example.org true 2016-07-11T22:52:12Z https://example.org/uploads/images/ ad7631fac432a281b185.jpg e05828d029e7013487753131731751e9 480 800 1601f9c029e8013487753131731751e9 alice@example.org true 2016-07-11T22:52:36Z https://example.org/uploads/images/ 74bef24b055bd4e6dcf3.jpg e05828d029e7013487753131731751e9 480 800 true ~~~ ### With [Poll][poll] ~~~xml alice@example.org 378473f029e9013487753131731751e9 2016-07-11T23:00:42Z I am a very interesting status update 2a22d6c029e9013487753131731751e9 Select an answer 2a22db2029e9013487753131731751e9 Yes 2a22e5e029e9013487753131731751e9 No 2a22eca029e9013487753131731751e9 Maybe true ~~~ ### With all ~~~xml alice@example.org 74139da029e9013487753131731751e9 2016-07-11T23:02:24Z mobile i am a very interesting status update 0788070029e8013487753131731751e9 alice@example.org true 2016-07-11T23:02:24Z https://example.org/uploads/images/ 520d78fbe91fbb6641f7.jpg 74139da029e9013487753131731751e9 480 800 1601f9c029e8013487753131731751e9 alice@example.org true 2016-07-11T23:02:24Z https://example.org/uploads/images/ 8cf7ca6250b4043a78d8.jpg 74139da029e9013487753131731751e9 480 800
Vienna, Austria
48.208174 16.373819
2a22d6c029e9013487753131731751e9 Select an answer 2a22db2029e9013487753131731751e9 Yes 2a22e5e029e9013487753131731751e9 No 2a22eca029e9013487753131731751e9 Maybe true
~~~ [diaspora-id]: {{ site.baseurl }}/federation/types.html#diaspora-id [guid]: {{ site.baseurl }}/federation/types.html#guid [timestamp]: {{ site.baseurl }}/federation/types.html#timestamp [boolean]: {{ site.baseurl }}/federation/types.html#boolean [markdown]: {{ site.baseurl }}/federation/types.html#markdown [string]: {{ site.baseurl }}/federation/types.html#string [post]: {{ site.baseurl }}/entities/post.html [location]: {{ site.baseurl }}/entities/location.html [photo]: {{ site.baseurl }}/entities/photo.html [poll]: {{ site.baseurl }}/entities/poll.html [event]: {{ site.baseurl }}/entities/event.html