Forgejo · Schema

QuotaUsedSizeRepos

QuotaUsedSizeRepos represents the size-based repository quota usage of a user

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
private integer Storage size of the user's private repositories
public integer Storage size of the user's public repositories
View JSON Schema on GitHub

JSON Schema

quotausedsizerepos.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaUsedSizeRepos",
  "description": "QuotaUsedSizeRepos represents the size-based repository quota usage of a user",
  "type": "object",
  "properties": {
    "private": {
      "description": "Storage size of the user's private repositories",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Private"
    },
    "public": {
      "description": "Storage size of the user's public repositories",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Public"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}