{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransferRepoOption", "description": "TransferRepoOption options when transfer a repository's ownership", "type": "object", "required": [ "new_owner" ], "properties": { "new_owner": { "type": "string", "x-go-name": "NewOwner" }, "team_ids": { "description": "ID of the team or teams to add to the repository. Teams can only be added to organization-owned repositories.", "type": "array", "items": { "type": "integer", "format": "int64" }, "x-go-name": "TeamIDs" } }, "x-go-package": "forgejo.org/modules/structs" }