Forgejo · Schema

PullRequestMeta

PullRequestMeta PR info if an issue is a PR

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
draft boolean
html_url string
merged boolean
merged_at string
View JSON Schema on GitHub

JSON Schema

pullrequestmeta.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PullRequestMeta",
  "description": "PullRequestMeta PR info if an issue is a PR",
  "type": "object",
  "properties": {
    "draft": {
      "type": "boolean",
      "x-go-name": "IsWorkInProgress"
    },
    "html_url": {
      "type": "string",
      "x-go-name": "HTMLURL"
    },
    "merged": {
      "type": "boolean",
      "x-go-name": "HasMerged"
    },
    "merged_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Merged"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}