Forgejo · Schema

QuotaUsedSizeAssetsAttachments

QuotaUsedSizeAssetsAttachments represents the size-based attachment quota usage of a user

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
issues integer Storage size used for the user's issue & comment attachments
releases integer Storage size used for the user's release attachments
View JSON Schema on GitHub

JSON Schema

quotausedsizeassetsattachments.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaUsedSizeAssetsAttachments",
  "description": "QuotaUsedSizeAssetsAttachments represents the size-based attachment quota usage of a user",
  "type": "object",
  "properties": {
    "issues": {
      "description": "Storage size used for the user's issue & comment attachments",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Issues"
    },
    "releases": {
      "description": "Storage size used for the user's release attachments",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Releases"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}