GitHubGroupTeam

pydantic model gafaelfawr.config.GitHubGroupTeam

Specification for a GitHub team.

Parameters:

data (Any)

Show JSON schema
{
   "title": "GitHubGroupTeam",
   "description": "Specification for a GitHub team.",
   "type": "object",
   "properties": {
      "organization": {
         "title": "Organization",
         "type": "string"
      },
      "team": {
         "title": "Team",
         "type": "string"
      }
   },
   "required": [
      "organization",
      "team"
   ]
}

Fields:
field organization: str [Required]

Name of the organization.

field team: str [Required]

Slug of the team within that organization.