2021-08-13 15:48:38 +00:00
# Feed
2021-08-11 17:17:55 +00:00
This schema defines the Thread entity. A Thread is a collection of posts made by the users. The first post that starts a thread is **about** a data asset **from** a user. Other users can respond to this post by creating new posts in the thread. Note that bot users can also interact with a thread. A post can contains links that mention Users or other Data Assets.
2021-08-13 15:48:38 +00:00
**$id:** [**https://open-metadata.org/schema/entity/feed/thread.json** ](https://open-metadata.org/schema/entity/feed/thread.json )
2021-08-11 17:17:55 +00:00
Type: `object`
## Properties
2021-08-13 15:48:38 +00:00
* **id** `required`
* Unique identifier that identifies an entity instance.
2021-08-16 05:20:54 +00:00
* $ref: [../../type/basic.json\#/definitions/uuid ](../types/basic.md#types-definitions-in-this-schema )
2021-08-13 15:48:38 +00:00
* **href**
* Link to the resource corresponding to this entity.
2021-08-16 05:20:54 +00:00
* $ref: [../../type/basic.json\#/definitions/href ](../types/basic.md#types-definitions-in-this-schema )
2021-08-13 15:48:38 +00:00
* **threadTs**
* Timestamp of the when the first post created the thread.
* **about** `required`
* Data asset about which this thread is created for with format < \#E/{enties}/{entityName}/{field}/{fieldValue}.
2021-08-16 05:20:54 +00:00
* $ref: [../../type/basic.json\#/definitions/entityLink ](../types/basic.md#types-definitions-in-this-schema )
2021-08-13 15:48:38 +00:00
* **addressedTo**
* User or team this thread is addressed to in format < \#E/{enties}/{entityName}/{field}/{fieldValue}.
2021-08-16 05:20:54 +00:00
* $ref: [../../type/basic.json\#/definitions/entityLink ](../types/basic.md#types-definitions-in-this-schema )
2021-08-13 15:48:38 +00:00
* **posts** `required`
* Type: `array`
* **Items**
2021-08-16 05:20:54 +00:00
* $ref: [\#/definitions/post ](thread.md#types-definitions-in-this-schema )
2021-08-11 17:17:55 +00:00
## Types definitions in this schema
2021-08-13 15:48:38 +00:00
**post**
2021-08-13 08:26:20 -07:00
2021-08-13 15:48:38 +00:00
* Post within a feed.
* Type: `object`
* **Properties**
* **message** `required`
* Message in markdown format. See markdown support for more details.
* Type: `string`
* **postTs**
* Timestamp of the post.
* Type: `string`
* String format must be a "date-time"
* **from** `required`
* ID of User \(regular user or a bot\) posting the message.
2021-08-16 05:20:54 +00:00
* $ref: [../../type/basic.json\#/definitions/uuid ](../types/basic.md#types-definitions-in-this-schema )
2021-08-11 17:17:55 +00:00