Forgejo · Schema

ChangedFile

ChangedFile store information about files affected by the pull request

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
additions integer
changes integer
contents_url string
deletions integer
filename string
html_url string
previous_filename string
raw_url string
status string
View JSON Schema on GitHub

JSON Schema

changedfile.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChangedFile",
  "description": "ChangedFile store information about files affected by the pull request",
  "type": "object",
  "properties": {
    "additions": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Additions"
    },
    "changes": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Changes"
    },
    "contents_url": {
      "type": "string",
      "x-go-name": "ContentsURL"
    },
    "deletions": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Deletions"
    },
    "filename": {
      "type": "string",
      "x-go-name": "Filename"
    },
    "html_url": {
      "type": "string",
      "x-go-name": "HTMLURL"
    },
    "previous_filename": {
      "type": "string",
      "x-go-name": "PreviousFilename"
    },
    "raw_url": {
      "type": "string",
      "x-go-name": "RawURL"
    },
    "status": {
      "type": "string",
      "x-go-name": "Status"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}