Forgejo · Schema

EditReleaseOption

EditReleaseOption options when editing a release

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
body string
draft boolean
hide_archive_links boolean
name string
prerelease boolean
tag_name string
target_commitish string
View JSON Schema on GitHub

JSON Schema

editreleaseoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditReleaseOption",
  "description": "EditReleaseOption options when editing a release",
  "type": "object",
  "properties": {
    "body": {
      "type": "string",
      "x-go-name": "Note"
    },
    "draft": {
      "type": "boolean",
      "x-go-name": "IsDraft"
    },
    "hide_archive_links": {
      "type": "boolean",
      "x-go-name": "HideArchiveLinks"
    },
    "name": {
      "type": "string",
      "x-go-name": "Title"
    },
    "prerelease": {
      "type": "boolean",
      "x-go-name": "IsPrerelease"
    },
    "tag_name": {
      "type": "string",
      "x-go-name": "TagName"
    },
    "target_commitish": {
      "type": "string",
      "x-go-name": "Target"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}