Atlassian · Schema

Comment Resolution

The resolution object for a Comment.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
user object
created_on string The ISO8601 timestamp the resolution was created.
View JSON Schema on GitHub

JSON Schema

atlassian-comment-resolution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/comment_resolution",
  "title": "Comment Resolution",
  "type": "object",
  "description": "The resolution object for a Comment.",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "user": {
      "$ref": "#/components/schemas/account"
    },
    "created_on": {
      "type": "string",
      "description": "The ISO8601 timestamp the resolution was created.",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": true
}