Forgejo · Schema

EditQuotaRuleOptions

EditQuotaRuleOptions represents the options for editing a quota rule

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
limit integer The limit set by the rule
subjects array The subjects affected by the rule
View JSON Schema on GitHub

JSON Schema

editquotaruleoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditQuotaRuleOptions",
  "description": "EditQuotaRuleOptions represents the options for editing a quota rule",
  "type": "object",
  "properties": {
    "limit": {
      "description": "The limit set by the rule",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Limit"
    },
    "subjects": {
      "description": "The subjects affected by the rule",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Subjects"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}