From 0dec2d15f941a114cc5383d5f1e98e6c957291e8 Mon Sep 17 00:00:00 2001 From: Aleks Date: Wed, 9 Jul 2025 21:02:46 +0200 Subject: [PATCH] Clarify owner and parent field descriptions in response/request models --- modules/structs/issue.go | 8 +- modules/structs/issue_stopwatch.go | 15 +- modules/structs/package.go | 3 +- modules/structs/repo.go | 28 +- modules/structs/user_key.go | 11 +- templates/swagger/v1_json.tmpl | 537 +++++++++++++++-------------- 6 files changed, 308 insertions(+), 294 deletions(-) diff --git a/modules/structs/issue.go b/modules/structs/issue.go index df0be8f9ec..8fe1676716 100644 --- a/modules/structs/issue.go +++ b/modules/structs/issue.go @@ -35,8 +35,9 @@ type PullRequestMeta struct { // RepositoryMeta basic repository information type RepositoryMeta struct { - ID int64 `json:"id"` - Name string `json:"name"` + ID int64 `json:"id"` + Name string `json:"name"` + // username of the user or organization owning the repository Owner string `json:"owner"` FullName string `json:"full_name"` } @@ -264,7 +265,8 @@ func (it IssueTemplate) Type() IssueTemplateType { type IssueMeta struct { Index int64 `json:"index"` Owner string `json:"owner"` - Name string `json:"repo"` + // name of the repo + Name string `json:"repo"` } // LockIssueOption options to lock an issue diff --git a/modules/structs/issue_stopwatch.go b/modules/structs/issue_stopwatch.go index ceade1ddd2..f4ca84ec24 100644 --- a/modules/structs/issue_stopwatch.go +++ b/modules/structs/issue_stopwatch.go @@ -10,13 +10,14 @@ import ( // StopWatch represent a running stopwatch type StopWatch struct { // swagger:strfmt date-time - Created time.Time `json:"created"` - Seconds int64 `json:"seconds"` - Duration string `json:"duration"` - IssueIndex int64 `json:"issue_index"` - IssueTitle string `json:"issue_title"` - RepoOwnerName string `json:"repo_owner_name"` - RepoName string `json:"repo_name"` + Created time.Time `json:"created"` + Seconds int64 `json:"seconds"` + Duration string `json:"duration"` + IssueIndex int64 `json:"issue_index"` + IssueTitle string `json:"issue_title"` + // username of the user or organization owning the repository + RepoOwnerName string `json:"repo_owner_name"` + RepoName string `json:"repo_name"` } // StopWatches represent a list of stopwatches diff --git a/modules/structs/package.go b/modules/structs/package.go index 1973f925a5..25ffd8bec0 100644 --- a/modules/structs/package.go +++ b/modules/structs/package.go @@ -9,7 +9,8 @@ import ( // Package represents a package type Package struct { - ID int64 `json:"id"` + ID int64 `json:"id"` + // username of the user or organization owning the package Owner *User `json:"owner"` Repository *Repository `json:"repository"` Creator *User `json:"creator"` diff --git a/modules/structs/repo.go b/modules/structs/repo.go index abc8076387..46177d0204 100644 --- a/modules/structs/repo.go +++ b/modules/structs/repo.go @@ -48,15 +48,17 @@ type ExternalWiki struct { // Repository represents a repository type Repository struct { - ID int64 `json:"id"` - Owner *User `json:"owner"` - Name string `json:"name"` - FullName string `json:"full_name"` - Description string `json:"description"` - Empty bool `json:"empty"` - Private bool `json:"private"` - Fork bool `json:"fork"` - Template bool `json:"template"` + ID int64 `json:"id"` + // username of the user or organization owning the repository + Owner *User `json:"owner"` + Name string `json:"name"` + FullName string `json:"full_name"` + Description string `json:"description"` + Empty bool `json:"empty"` + Private bool `json:"private"` + Fork bool `json:"fork"` + Template bool `json:"template"` + // the original repository if the repository in the parameter is a fork; else empty Parent *Repository `json:"parent"` Mirror bool `json:"mirror"` Size int `json:"size"` @@ -228,11 +230,11 @@ type EditRepoOption struct { // GenerateRepoOption options when creating repository using a template // swagger:model type GenerateRepoOption struct { - // The organization or person who will own the new repository + // username of the user or organization who will own the repository // // required: true Owner string `json:"owner"` - // Name of the repository to create + // name of the repository to create // // required: true // unique: true @@ -293,6 +295,7 @@ type UpdateBranchRepoOption struct { // TransferRepoOption options when transfer a repository's ownership // swagger:model type TransferRepoOption struct { + // username of the user or organization who will own the repository // required: true NewOwner string `json:"new_owner"` // ID of the team or teams to add to the repository. Teams can only be added to organization-owned repositories. @@ -354,8 +357,9 @@ type MigrateRepoOptions struct { CloneAddr string `json:"clone_addr" binding:"Required"` // deprecated (only for backwards compatibility) RepoOwnerID int64 `json:"uid"` - // Name of User or Organisation who will own Repo after migration + // username of the user or organization who will own the repository after migration RepoOwner string `json:"repo_owner"` + // name of the repo // required: true RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"` diff --git a/modules/structs/user_key.go b/modules/structs/user_key.go index 16225a852a..9debbbf81d 100644 --- a/modules/structs/user_key.go +++ b/modules/structs/user_key.go @@ -15,9 +15,10 @@ type PublicKey struct { Title string `json:"title,omitempty"` Fingerprint string `json:"fingerprint,omitempty"` // swagger:strfmt date-time - Created time.Time `json:"created_at"` - Updated time.Time `json:"last_used_at"` - Owner *User `json:"user,omitempty"` - ReadOnly bool `json:"read_only,omitempty"` - KeyType string `json:"key_type,omitempty"` + Created time.Time `json:"created_at"` + Updated time.Time `json:"last_used_at"` + // username of the user or organization owning the key + Owner *User `json:"user,omitempty"` + ReadOnly bool `json:"read_only,omitempty"` + KeyType string `json:"key_type,omitempty"` } diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 6cf2810baf..b656e7b2a7 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -686,7 +686,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -723,7 +723,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -3744,7 +3744,7 @@ "parameters": [ { "type": "string", - "description": "owner of the packages", + "description": "username of the user or organization owning the packages", "name": "owner", "in": "path", "required": true @@ -3820,7 +3820,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -3875,7 +3875,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -3915,7 +3915,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -3962,7 +3962,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -4005,7 +4005,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -4050,7 +4050,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -4100,7 +4100,7 @@ "parameters": [ { "type": "string", - "description": "owner of the package", + "description": "username of the user or organization owning the package", "name": "owner", "in": "path", "required": true @@ -4464,7 +4464,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4498,7 +4498,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to delete", + "description": "username of the user or organization owning the repository to delete", "name": "owner", "in": "path", "required": true @@ -4535,7 +4535,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to edit", + "description": "username of the user or organization owning the repository to edit", "name": "owner", "in": "path", "required": true @@ -4585,7 +4585,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4630,7 +4630,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4674,7 +4674,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4720,7 +4720,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4869,7 +4869,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4915,7 +4915,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4954,7 +4954,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -4985,7 +4985,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5018,7 +5018,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5062,7 +5062,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5233,7 +5233,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5279,7 +5279,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5395,7 +5395,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repository", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5446,7 +5446,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repository", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5503,7 +5503,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repository", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5549,7 +5549,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5609,7 +5609,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5660,7 +5660,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5704,7 +5704,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5758,7 +5758,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5812,7 +5812,7 @@ "parameters": [ { "type": "string", - "description": "name of the owner", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5864,7 +5864,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5912,7 +5912,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -5967,7 +5967,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6019,7 +6019,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6078,7 +6078,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6133,7 +6133,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6188,7 +6188,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6231,7 +6231,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6267,7 +6267,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6308,7 +6308,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6344,7 +6344,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6378,7 +6378,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6433,7 +6433,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6482,7 +6482,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6523,7 +6523,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6567,7 +6567,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6623,7 +6623,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6669,7 +6669,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6721,7 +6721,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6762,7 +6762,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6812,7 +6812,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6868,7 +6868,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6916,7 +6916,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -6960,7 +6960,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7014,7 +7014,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7060,7 +7060,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7106,7 +7106,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7207,7 +7207,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7265,7 +7265,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7349,7 +7349,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7392,7 +7392,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7436,7 +7436,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7479,7 +7479,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7589,7 +7589,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7639,7 +7639,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7700,7 +7700,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7761,7 +7761,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7827,7 +7827,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7874,7 +7874,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7924,7 +7924,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -7972,7 +7972,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8022,7 +8022,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8068,7 +8068,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to fork", + "description": "username of the user or organization owning the repository to fork", "name": "owner", "in": "path", "required": true @@ -8120,7 +8120,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8166,7 +8166,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8230,7 +8230,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8284,7 +8284,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8342,7 +8342,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8378,7 +8378,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8421,7 +8421,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8467,7 +8467,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8531,7 +8531,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8580,7 +8580,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8623,7 +8623,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8659,7 +8659,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8700,7 +8700,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8741,7 +8741,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8791,7 +8791,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8833,7 +8833,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8875,7 +8875,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8926,7 +8926,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -8976,7 +8976,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9012,7 +9012,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9048,7 +9048,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9084,7 +9084,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9204,7 +9204,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9259,7 +9259,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9324,7 +9324,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9369,7 +9369,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9417,7 +9417,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9477,7 +9477,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9522,7 +9522,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9591,7 +9591,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9641,7 +9641,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9697,7 +9697,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9765,7 +9765,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9813,7 +9813,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9871,7 +9871,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9925,7 +9925,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -9961,7 +9961,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10000,7 +10000,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10048,7 +10048,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10105,7 +10105,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10150,7 +10150,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10216,7 +10216,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10266,7 +10266,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10322,7 +10322,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10387,7 +10387,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10440,7 +10440,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10488,7 +10488,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10538,7 +10538,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10597,7 +10597,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10652,7 +10652,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10708,7 +10708,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10775,7 +10775,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10829,7 +10829,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10882,7 +10882,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10933,7 +10933,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -10986,7 +10986,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11031,7 +11031,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11086,7 +11086,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11138,7 +11138,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11185,7 +11185,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11246,7 +11246,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11301,7 +11301,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11345,7 +11345,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11387,7 +11387,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11431,7 +11431,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11489,7 +11489,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11549,7 +11549,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11607,7 +11607,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11664,7 +11664,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11717,7 +11717,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11770,7 +11770,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11823,7 +11823,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11882,7 +11882,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11929,7 +11929,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -11987,7 +11987,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12044,7 +12044,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12114,7 +12114,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12191,7 +12191,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12249,7 +12249,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12302,7 +12302,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12360,7 +12360,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12421,7 +12421,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12467,7 +12467,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12506,7 +12506,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12553,7 +12553,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12602,7 +12602,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12648,7 +12648,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12687,7 +12687,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12732,7 +12732,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12786,7 +12786,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12822,7 +12822,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12858,7 +12858,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12910,7 +12910,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -12956,7 +12956,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13017,7 +13017,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13060,7 +13060,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13098,7 +13098,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13142,7 +13142,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13192,7 +13192,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to sync", + "description": "username of the user or organization owning the repository to sync", "name": "owner", "in": "path", "required": true @@ -13231,7 +13231,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13270,7 +13270,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13362,7 +13362,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13424,7 +13424,7 @@ "parameters": [ { "type": "string", - "description": "Owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13536,7 +13536,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13591,7 +13591,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13627,7 +13627,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13677,7 +13677,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13722,7 +13722,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13785,7 +13785,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13846,7 +13846,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13914,7 +13914,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -13988,7 +13988,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14030,7 +14030,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14088,7 +14088,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14138,7 +14138,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14191,7 +14191,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14249,7 +14249,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14303,7 +14303,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14358,7 +14358,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14408,7 +14408,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14469,7 +14469,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14524,7 +14524,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14576,7 +14576,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14642,7 +14642,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14700,7 +14700,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14763,7 +14763,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14818,7 +14818,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14867,7 +14867,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to sync", + "description": "username of the user or organization owning the repository to sync", "name": "owner", "in": "path", "required": true @@ -14909,7 +14909,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -14956,7 +14956,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15002,7 +15002,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15054,7 +15054,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15115,7 +15115,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15164,7 +15164,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15200,7 +15200,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15238,7 +15238,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15284,7 +15284,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15323,7 +15323,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15371,7 +15371,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15422,7 +15422,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15468,7 +15468,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15527,7 +15527,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15577,7 +15577,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15630,7 +15630,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15692,7 +15692,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15728,7 +15728,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15764,7 +15764,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15800,7 +15800,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15851,7 +15851,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15933,7 +15933,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -15986,7 +15986,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16031,7 +16031,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16062,7 +16062,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16096,7 +16096,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16132,7 +16132,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16166,7 +16166,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16218,7 +16218,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16259,7 +16259,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16303,7 +16303,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16359,7 +16359,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16405,7 +16405,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16460,7 +16460,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16501,7 +16501,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16556,7 +16556,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16592,7 +16592,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16636,7 +16636,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16683,7 +16683,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16732,7 +16732,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16807,7 +16807,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16856,7 +16856,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16902,7 +16902,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16948,7 +16948,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -16992,7 +16992,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17038,7 +17038,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to transfer", + "description": "username of the user or organization owning the repository to transfer", "name": "owner", "in": "path", "required": true @@ -17089,7 +17089,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to transfer", + "description": "username of the user or organization owning the repository to transfer", "name": "owner", "in": "path", "required": true @@ -17128,7 +17128,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to transfer", + "description": "username of the user or organization owning the repository to transfer", "name": "owner", "in": "path", "required": true @@ -17167,7 +17167,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17219,7 +17219,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17257,7 +17257,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17304,7 +17304,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17363,7 +17363,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17411,7 +17411,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -17463,7 +17463,7 @@ "parameters": [ { "type": "string", - "description": "name of the template repository owner", + "description": "username of the user or organization to own the template repository", "name": "template_owner", "in": "path", "required": true @@ -19814,7 +19814,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo", + "description": "username of the user or organization owning the repository", "name": "owner", "in": "path", "required": true @@ -19848,7 +19848,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to star", + "description": "username of the user or organization owning the repository to star", "name": "owner", "in": "path", "required": true @@ -19882,7 +19882,7 @@ "parameters": [ { "type": "string", - "description": "owner of the repo to unstar", + "description": "username of the user or organization owning the repository to unstar", "name": "owner", "in": "path", "required": true @@ -25006,13 +25006,13 @@ "x-go-name": "Labels" }, "name": { - "description": "Name of the repository to create", + "description": "name of the repository to create", "type": "string", "uniqueItems": true, "x-go-name": "Name" }, "owner": { - "description": "The organization or person who will own the new repository", + "description": "username of the user or organization who will own the repository", "type": "string", "x-go-name": "Owner" }, @@ -25549,6 +25549,7 @@ "x-go-name": "Owner" }, "repo": { + "description": "name of the repo", "type": "string", "x-go-name": "Name" } @@ -25925,11 +25926,12 @@ "x-go-name": "Releases" }, "repo_name": { + "description": "name of the repo", "type": "string", "x-go-name": "RepoName" }, "repo_owner": { - "description": "Name of User or Organisation who will own Repo after migration", + "description": "username of the user or organization who will own the repository after migration", "type": "string", "x-go-name": "RepoOwner" }, @@ -27567,6 +27569,7 @@ "x-go-name": "Name" }, "owner": { + "description": "username of the user or organization owning the repository", "type": "string", "x-go-name": "Owner" } @@ -27661,6 +27664,7 @@ "x-go-name": "RepoName" }, "repo_owner_name": { + "description": "username of the user or organization owning the repository", "type": "string", "x-go-name": "RepoOwnerName" }, @@ -28054,6 +28058,7 @@ ], "properties": { "new_owner": { + "description": "username of the user or organization who will own the repository", "type": "string", "x-go-name": "NewOwner" },