Atlassian · Schema

ProjectInsight

Additional details about a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
lastIssueUpdateTime string The last issue update time.
totalIssueCount integer Total issue count.
View JSON Schema on GitHub

JSON Schema

atlassian-projectinsight-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectInsight",
  "title": "ProjectInsight",
  "additionalProperties": false,
  "description": "Additional details about a project.",
  "properties": {
    "lastIssueUpdateTime": {
      "description": "The last issue update time.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "totalIssueCount": {
      "description": "Total issue count.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}