Atlassian · Schema

pullrequest_comment

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pullrequest-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pullrequest_comment",
  "title": "pullrequest_comment",
  "allOf": [
    {
      "$ref": "#/components/schemas/comment"
    },
    {
      "type": "object",
      "title": "Pull Request Comment",
      "description": "A pullrequest comment.",
      "properties": {
        "pullrequest": {
          "$ref": "#/components/schemas/pullrequest"
        },
        "resolution": {
          "$ref": "#/components/schemas/comment_resolution"
        },
        "pending": {
          "type": "boolean"
        }
      },
      "additionalProperties": true
    }
  ]
}