Atlassian · Schema

commit_comment

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-commit-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/commit_comment",
  "title": "commit_comment",
  "allOf": [
    {
      "$ref": "#/components/schemas/comment"
    },
    {
      "type": "object",
      "title": "Commit Comment",
      "description": "A commit comment.",
      "properties": {
        "commit": {
          "$ref": "#/components/schemas/commit"
        }
      },
      "additionalProperties": true
    }
  ]
}