Full Team

Groups of organization members that gives permissions on specified repositories.

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer Unique identifier of the team
node_id string
url string URL for the team
html_url string
name string Name of the team
slug string
description string
privacy string The level of privacy this team should have
permission string Permission that the team will have for its repositories
members_url string
repositories_url string
parent object
members_count integer
repos_count integer
created_at string
updated_at string
organization object
ldap_dn string Distinguished Name (DN) that team maps to within LDAP environment
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-team-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/team-full",
  "title": "Full Team",
  "description": "Groups of organization members that gives permissions on specified repositories.",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique identifier of the team",
      "example": 42,
      "type": "integer"
    },
    "node_id": {
      "type": "string",
      "example": "MDQ6VGVhbTE="
    },
    "url": {
      "description": "URL for the team",
      "example": "https://api.github.com/organizations/1/team/1",
      "type": "string",
      "format": "uri"
    },
    "html_url": {
      "type": "string",
      "format": "uri",
      "example": "https://github.com/orgs/rails/teams/core"
    },
    "name": {
      "description": "Name of the team",
      "example": "Developers",
      "type": "string"
    },
    "slug": {
      "type": "string",
      "example": "justice-league"
    },
    "description": {
      "type": "string",
      "example": "A great team.",
      "nullable": true
    },
    "privacy": {
      "description": "The level of privacy this team should have",
      "type": "string",
      "enum": [
        "closed",
        "secret"
      ],
      "example": "closed"
    },
    "permission": {
      "description": "Permission that the team will have for its repositories",
      "example": "push",
      "type": "string"
    },
    "members_url": {
      "type": "string",
      "example": "https://api.github.com/organizations/1/team/1/members{/member}"
    },
    "repositories_url": {
      "type": "string",
      "format": "uri",
      "example": "https://api.github.com/organizations/1/team/1/repos"
    },
    "parent": {
      "$ref": "#/components/schemas/nullable-team-simple"
    },
    "members_count": {
      "type": "integer",
      "example": 3
    },
    "repos_count": {
      "type": "integer",
      "example": 10
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2017-07-14T16:53:42Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "example": "2017-08-17T12:37:15Z"
    },
    "organization": {
      "$ref": "#/components/schemas/team-organization"
    },
    "ldap_dn": {
      "description": "Distinguished Name (DN) that team maps to within LDAP environment",
      "example": "uid=example,ou=users,dc=github,dc=com",
      "type": "string"
    }
  },
  "required": [
    "id",
    "node_id",
    "url",
    "members_url",
    "name",
    "description",
    "permission",
    "html_url",
    "repositories_url",
    "slug",
    "created_at",
    "updated_at",
    "members_count",
    "repos_count",
    "organization"
  ]
}