Forgejo · Schema

EditOrgOption

EditOrgOption options for editing an organization

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
description string
email string
full_name string
location string
repo_admin_change_team_access boolean
visibility string possible values are `public`, `limited` or `private`
website string
View JSON Schema on GitHub

JSON Schema

editorgoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditOrgOption",
  "description": "EditOrgOption options for editing an organization",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "email": {
      "type": "string",
      "x-go-name": "Email"
    },
    "full_name": {
      "type": "string",
      "x-go-name": "FullName"
    },
    "location": {
      "type": "string",
      "x-go-name": "Location"
    },
    "repo_admin_change_team_access": {
      "type": "boolean",
      "x-go-name": "RepoAdminChangeTeamAccess"
    },
    "visibility": {
      "description": "possible values are `public`, `limited` or `private`",
      "type": "string",
      "enum": [
        "public",
        "limited",
        "private"
      ],
      "x-go-name": "Visibility"
    },
    "website": {
      "type": "string",
      "x-go-name": "Website"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}