Forgejo · Schema
CreateOrgOption
CreateOrgOption options for creating an organization
GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests
Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| string | ||
| full_name | string | |
| location | string | |
| repo_admin_change_team_access | boolean | |
| username | string | |
| visibility | string | possible values are `public` (default), `limited` or `private` |
| website | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateOrgOption",
"description": "CreateOrgOption options for creating an organization",
"type": "object",
"required": [
"username"
],
"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"
},
"username": {
"type": "string",
"x-go-name": "UserName"
},
"visibility": {
"description": "possible values are `public` (default), `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"
}