Atlassian · Schema

commit_file

A file object, representing a file at a commit in a repository

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
path string The path in the repository
attributes string
escaped_path string The escaped version of the path as it appears in a diff. If the path does not require escaping this will be the same as path.
View JSON Schema on GitHub

JSON Schema

atlassian-bitbucket-workspaces-commit_file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "commit_file",
  "type": "object",
  "description": "A file object, representing a file at a commit in a repository",
  "properties": {
    "type": {
      "type": "string"
    },
    "path": {
      "type": "string",
      "description": "The path in the repository"
    },
    "attributes": {
      "type": "string"
    },
    "escaped_path": {
      "type": "string",
      "description": "The escaped version of the path as it appears in a diff. If the path does not require escaping this will be the same as path."
    }
  }
}