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": "Name of the organization", "type": "string" }, "team": { "title": "Slug of the team", "type": "string" } }, "additionalProperties": false, "required": [ "organization", "team" ] }
- Fields:
- field organization: str [Required]¶
- field team: str [Required]¶