2021-11-15 21:35:54 +05:30
# Thread
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-11-15 21:35:54 +05:30
**$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`
2021-10-12 14:28:29 +05:30
2021-12-09 18:19:32 +05:30
This schema < u > does not< / u > accept additional properties.
2021-08-11 17:17:55 +00:00
## Properties
2022-01-25 22:19:15 +05:30
- **id** `required`
- Unique identifier that identifies an entity instance.
- $ref: [../../type/basic.json#/definitions/uuid ](../types/basic.md#uuid )
- **href**
- Link to the resource corresponding to this entity.
- $ref: [../../type/basic.json#/definitions/href ](../types/basic.md#href )
- **threadTs**
- Timestamp of the when the first post created the thread in Unix epoch time milliseconds.
- $ref: [../../type/basic.json#/definitions/timestamp ](../types/basic.md#timestamp )
- **about** `required`
- Data asset about which this thread is created for with format < #E/ {entities}/{entityType}/{field}/{fieldValue}.
- $ref: [../../type/basic.json#/definitions/entityLink ](../types/basic.md#entitylink )
- **addressedTo**
- User or team this thread is addressed to in format < #E/ {entities}/{entityType}/{field}/{fieldValue}.
- $ref: [../../type/basic.json#/definitions/entityLink ](../types/basic.md#entitylink )
- **posts** `required`
- Type: `array`
- **Items**
- $ref: [#/definitions/post ](#post )
2021-08-26 13:33:44 +05:30
2021-11-13 23:03:20 +05:30
2022-01-25 22:19:15 +05:30
## Type definitions in this schema
2021-08-29 21:24:50 +00:00
### post
2021-08-26 13:33:44 +05:30
2022-01-25 22:19:15 +05:30
- 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 in Unix epoch time milliseconds.
- $ref: [../../type/basic.json#/definitions/timestamp ](../types/basic.md#timestamp )
- **from** `required`
- ID of User (regular user or a bot) posting the message.
- $ref: [../../type/basic.json#/definitions/uuid ](../types/basic.md#uuid )
_This document was updated on: Tuesday, January 25, 2022_