Forgejo · Schema

QuotaGroup

QuotaGroup represents a quota group

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
name string Name of the group
rules array Rules associated with the group
View JSON Schema on GitHub

JSON Schema

quotagroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaGroup",
  "description": "QuotaGroup represents a quota group",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the group",
      "type": "string",
      "x-go-name": "Name"
    },
    "rules": {
      "description": "Rules associated with the group",
      "type": "array",
      "items": {
        "$ref": "#/definitions/QuotaRuleInfo"
      },
      "x-go-name": "Rules"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}