Forgejo · Schema

Organization

Organization represents an organization

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
avatar_url string
created string
description string
email string
full_name string
id integer
location string
name string
repo_admin_change_team_access boolean
username string deprecated
visibility string
website string
View JSON Schema on GitHub

JSON Schema

organization.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Organization",
  "description": "Organization represents an organization",
  "type": "object",
  "properties": {
    "avatar_url": {
      "type": "string",
      "x-go-name": "AvatarURL"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "email": {
      "type": "string",
      "x-go-name": "Email"
    },
    "full_name": {
      "type": "string",
      "x-go-name": "FullName"
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "location": {
      "type": "string",
      "x-go-name": "Location"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    },
    "repo_admin_change_team_access": {
      "type": "boolean",
      "x-go-name": "RepoAdminChangeTeamAccess"
    },
    "username": {
      "description": "deprecated",
      "type": "string",
      "x-go-name": "UserName"
    },
    "visibility": {
      "type": "string",
      "x-go-name": "Visibility"
    },
    "website": {
      "type": "string",
      "x-go-name": "Website"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}