Gitea · Schema
Organization
Organization represents an organization
GitSource ControlDevOpsCI/CDCode HostingOpen SourceSelf HostedPackage RegistryIssue TrackingPull Requests
Properties
| Name | Type | Description |
|---|---|---|
| avatar_url | string | The URL of the organization's avatar |
| description | string | The description of the organization |
| string | The email address of the organization | |
| full_name | string | The full display name of the organization |
| id | integer | The unique identifier of the organization |
| location | string | The location of the organization |
| name | string | The name of the organization |
| repo_admin_change_team_access | boolean | Whether repository administrators can change team access |
| username | string | username of the organization deprecated |
| visibility | string | The visibility level of the organization (public, limited, private) |
| website | string | The website URL of the organization |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/gitea/main/json-schema/gitea-rest-api-organization-schema.json",
"title": "Organization",
"description": "Organization represents an organization",
"type": "object",
"properties": {
"avatar_url": {
"description": "The URL of the organization's avatar",
"type": "string",
"x-go-name": "AvatarURL"
},
"description": {
"description": "The description of the organization",
"type": "string",
"x-go-name": "Description"
},
"email": {
"description": "The email address of the organization",
"type": "string",
"x-go-name": "Email"
},
"full_name": {
"description": "The full display name of the organization",
"type": "string",
"x-go-name": "FullName"
},
"id": {
"description": "The unique identifier of the organization",
"type": "integer",
"format": "int64",
"x-go-name": "ID"
},
"location": {
"description": "The location of the organization",
"type": "string",
"x-go-name": "Location"
},
"name": {
"description": "The name of the organization",
"type": "string",
"x-go-name": "Name"
},
"repo_admin_change_team_access": {
"description": "Whether repository administrators can change team access",
"type": "boolean",
"x-go-name": "RepoAdminChangeTeamAccess"
},
"username": {
"description": "username of the organization\ndeprecated",
"type": "string",
"x-go-name": "UserName"
},
"visibility": {
"description": "The visibility level of the organization (public, limited, private)",
"type": "string",
"x-go-name": "Visibility"
},
"website": {
"description": "The website URL of the organization",
"type": "string",
"x-go-name": "Website"
}
},
"x-go-package": "code.gitea.io/gitea/modules/structs"
}