Forgejo · Schema

CommitAffectedFiles

CommitAffectedFiles store information about files affected by the commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
filename string
status string
View JSON Schema on GitHub

JSON Schema

commitaffectedfiles.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CommitAffectedFiles",
  "description": "CommitAffectedFiles store information about files affected by the commit",
  "type": "object",
  "properties": {
    "filename": {
      "type": "string",
      "x-go-name": "Filename"
    },
    "status": {
      "type": "string",
      "x-go-name": "Status"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}