Forgejo · Schema

NewIssuePinsAllowed

NewIssuePinsAllowed represents an API response that says if new Issue Pins are allowed

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
issues boolean
pull_requests boolean
View JSON Schema on GitHub

JSON Schema

newissuepinsallowed.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewIssuePinsAllowed",
  "description": "NewIssuePinsAllowed represents an API response that says if new Issue Pins are allowed",
  "type": "object",
  "properties": {
    "issues": {
      "type": "boolean",
      "x-go-name": "Issues"
    },
    "pull_requests": {
      "type": "boolean",
      "x-go-name": "PullRequests"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}