Pere Miquel Brull 34fbe5d64c
Docs - Prepare 1.7 docs and 1.8 snapshot (#20882)
* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT

* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
2025-04-18 12:12:17 +05:30

7.9 KiB

title slug
thread /main-concepts/metadata-standard/schemas/entity/feed/thread

Thread

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.

Properties

  • id: Unique identifier that identifies an entity instance. Refer to ../../type/basic.json#/definitions/uuid.
  • type: Refer to #/definitions/threadType.
  • href: Link to the resource corresponding to this entity. Refer to ../../type/basic.json#/definitions/href.
  • threadTs: Timestamp of the first post created the thread in Unix epoch time milliseconds. Refer to ../../type/basic.json#/definitions/timestamp.
  • about: Data asset about which this thread is created for with format <#E::{entities}::{entityName}::{field}::{fieldValue}. Refer to ../../type/basic.json#/definitions/entityLink.
  • entityRef: Reference to the entity in about that the thread belongs to. Refer to ../../type/entityReference.json.
  • entityUrlLink (string): Link to the entity in about that the thread belongs to.
  • domain: Domain the entity belongs to. Refer to ../../type/basic.json#/definitions/uuid.
  • generatedBy (string): User or team that generated the thread. Must be one of: ["user", "system"]. Default: "user".
  • cardStyle (string): Card style for the thread. Must be one of: ["default", "logicalTestCaseAdded", "entityCreated", "entityDeleted", "entitySoftDeleted", "description", "tags", "owner", "testCaseResult", "customProperties", "assets", "domain"]. Default: "default".
  • fieldOperation (string): Operation on thread, whether the field was added, or updated or deleted. Must be one of: ["added", "updated", "deleted", "none"]. Default: "updated".
  • feedInfo (object): Entity Id of the entity in about that the thread belongs to. Cannot contain additional properties.
  • addressedTo: User or team this thread is addressed to in format <#E::{entities}::{entityName}::{field}::{fieldValue}. Refer to ../../type/basic.json#/definitions/entityLink.
  • createdBy (string): User who created the thread.
  • updatedAt: Last update time corresponding to the new version of the entity in Unix epoch time milliseconds. Refer to ../../type/basic.json#/definitions/timestamp.
  • updatedBy (string): User who made the update.
  • resolved (boolean): When true indicates the thread has been resolved. Default: false.
  • message (string): The main message of the thread in Markdown format.
  • postsCount (integer): The total count of posts in the thread. Default: 0.
  • posts (array)
  • reactions: Reactions for the thread. Refer to ../../type/reaction.json#/definitions/reactionList.
  • task: Details about the task. This is only applicable if thread is of type task. Refer to #/definitions/taskDetails.
  • announcement: Details about the announcement. This is only applicable if thread is of type announcement. Refer to #/definitions/announcementDetails.
  • chatbot: Details about the Chatbot conversation. This is only applicable if thread is of type Chatbot. Refer to #/definitions/chatbotDetails.

Definitions

  • taskType (string): Type of a task. Must be one of: ["RequestDescription", "UpdateDescription", "RequestTag", "UpdateTag", "RequestApproval", "RequestTestCaseFailureResolution", "Generic"].
  • taskDetails (object): Details about the task. This is only applicable if thread is of type task. Cannot contain additional properties.
  • threadTaskStatus (string): Status of a task. Must be one of: ["Open", "Closed"]. Default: "Open".
  • threadType (string): Type of thread. Must be one of: ["Conversation", "Task", "Announcement", "Chatbot"]. Default: "Conversation".
  • announcementDetails (object): Details about the announcement. This is only applicable if thread is of type announcement. Cannot contain additional properties.
  • chatbotDetails (object): Details about the Chatbot conversation. This is only applicable if thread is of type Chatbot.
    • query (string): The query being discussed with the Chatbot.
  • post (object): Post within a feed. Cannot contain additional properties.

Documentation file automatically generated at 2025-01-15 09:05:41.923720+00:00.