Forgejo · Schema

SetUserQuotaGroupsOptions

SetUserQuotaGroupsOptions represents the quota groups of a user

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
groups array Quota groups the user shall have
View JSON Schema on GitHub

JSON Schema

setuserquotagroupsoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SetUserQuotaGroupsOptions",
  "description": "SetUserQuotaGroupsOptions represents the quota groups of a user",
  "type": "object",
  "required": [
    "groups"
  ],
  "properties": {
    "groups": {
      "description": "Quota groups the user shall have",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Groups"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}