Forgejo · Schema

GeneralAPISettings

GeneralAPISettings contains global api settings exposed by it

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
default_git_trees_per_page integer
default_max_blob_size integer
default_paging_num integer
max_response_items integer
View JSON Schema on GitHub

JSON Schema

generalapisettings.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GeneralAPISettings",
  "description": "GeneralAPISettings contains global api settings exposed by it",
  "type": "object",
  "properties": {
    "default_git_trees_per_page": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "DefaultGitTreesPerPage"
    },
    "default_max_blob_size": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "DefaultMaxBlobSize"
    },
    "default_paging_num": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "DefaultPagingNum"
    },
    "max_response_items": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "MaxResponseItems"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}