Forgejo · Schema

PullReviewRequestOptions

PullReviewRequestOptions are options to add or remove pull review requests

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
reviewers array
team_reviewers array
View JSON Schema on GitHub

JSON Schema

pullreviewrequestoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PullReviewRequestOptions",
  "description": "PullReviewRequestOptions are options to add or remove pull review requests",
  "type": "object",
  "properties": {
    "reviewers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Reviewers"
    },
    "team_reviewers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "TeamReviewers"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}