GitHubGroup

pydantic model gafaelfawr.config.GitHubGroup

An individual GitHub team.

Parameters:

data (Any)

Show JSON schema
{
   "title": "GitHubGroup",
   "description": "An individual GitHub team.",
   "type": "object",
   "properties": {
      "github": {
         "allOf": [
            {
               "$ref": "#/$defs/GitHubGroupTeam"
            }
         ],
         "title": "Details of the GitHub team"
      }
   },
   "$defs": {
      "GitHubGroupTeam": {
         "additionalProperties": false,
         "description": "Specification for a GitHub team.",
         "properties": {
            "organization": {
               "title": "Name of the organization",
               "type": "string"
            },
            "team": {
               "title": "Slug of the team",
               "type": "string"
            }
         },
         "required": [
            "organization",
            "team"
         ],
         "title": "GitHubGroupTeam",
         "type": "object"
      }
   },
   "additionalProperties": false,
   "required": [
      "github"
   ]
}

Fields:
field github: GitHubGroupTeam [Required]