Forgejo · Schema

QuotaInfo

QuotaInfo represents information about a user's quota

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
groups object
used object
View JSON Schema on GitHub

JSON Schema

quotainfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaInfo",
  "description": "QuotaInfo represents information about a user's quota",
  "type": "object",
  "properties": {
    "groups": {
      "$ref": "#/definitions/QuotaGroupList"
    },
    "used": {
      "$ref": "#/definitions/QuotaUsed"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}