Forgejo · Schema

QuotaUsedSizeGit

QuotaUsedSizeGit represents the size-based git (lfs) quota usage of a user

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
LFS integer Storage size of the user's Git LFS objects
View JSON Schema on GitHub

JSON Schema

quotausedsizegit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaUsedSizeGit",
  "description": "QuotaUsedSizeGit represents the size-based git (lfs) quota usage of a user",
  "type": "object",
  "properties": {
    "LFS": {
      "description": "Storage size of the user's Git LFS objects",
      "type": "integer",
      "format": "int64"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}