{
"$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."
}
}
}