Forgejo · Schema

QuotaUsedPackage

QuotaUsedPackage represents a package counting towards a user's quota

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
html_url string HTML URL to the package version
name string Name of the package
size integer Size of the package version
type string Type of the package
version string Version of the package
View JSON Schema on GitHub

JSON Schema

quotausedpackage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaUsedPackage",
  "description": "QuotaUsedPackage represents a package counting towards a user's quota",
  "type": "object",
  "properties": {
    "html_url": {
      "description": "HTML URL to the package version",
      "type": "string",
      "x-go-name": "HTMLURL"
    },
    "name": {
      "description": "Name of the package",
      "type": "string",
      "x-go-name": "Name"
    },
    "size": {
      "description": "Size of the package version",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Size"
    },
    "type": {
      "description": "Type of the package",
      "type": "string",
      "x-go-name": "Type"
    },
    "version": {
      "description": "Version of the package",
      "type": "string",
      "x-go-name": "Version"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}