All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.api.feed.threadCount.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/api/feed/threadCount.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Count of threads related to an entity",
  "description": "This schema defines the type for reporting the count of threads related to an entity.",
  "type": "object",
  "javaType": "org.openmetadata.schema.api.feed.ThreadCount",
  "properties": {
    "conversationCount": {
      "description": "Total count of all the threads of type Conversation.",
      "type": "integer",
      "minimum": 0
    },
    "openTaskCount": {
      "description": "Total count of all the open tasks.",
      "type": "integer",
      "minimum": 0
    },
    "closedTaskCount": {
      "description": "Total count of all the tasks.",
      "type": "integer",
      "minimum": 0
    },
    "totalTaskCount": {
      "description": "Total count of all the tasks.",
      "type": "integer",
      "minimum": 0
    },
    "mentionCount": {
      "description": "Total count of all the mentions of a user.",
      "type": "integer",
      "minimum": 0
    },
    "entityLink": {
      "$ref": "../../type/basic.json#/definitions/entityLink"
    }
  },
  "additionalProperties": false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy