Forgejo · Schema

FileLinksResponse

FileLinksResponse contains the links for a repo's file

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
git string
html string
self string
View JSON Schema on GitHub

JSON Schema

filelinksresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FileLinksResponse",
  "description": "FileLinksResponse contains the links for a repo's file",
  "type": "object",
  "properties": {
    "git": {
      "type": "string",
      "x-go-name": "GitURL"
    },
    "html": {
      "type": "string",
      "x-go-name": "HTMLURL"
    },
    "self": {
      "type": "string",
      "x-go-name": "Self"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}