Atlassian · Schema

diffstat

A diffstat object that includes a summary of changes made to a file between two commits.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
status string
lines_added integer
lines_removed integer
View JSON Schema on GitHub

JSON Schema

atlassian-bitbucket-repositories-diffstat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "diffstat",
  "type": "object",
  "description": "A diffstat object that includes a summary of changes made to a file between two commits.",
  "properties": {
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "lines_added": {
      "type": "integer"
    },
    "lines_removed": {
      "type": "integer"
    }
  }
}