Forgejo · Schema

CreateTagOption

CreateTagOption options when creating a tag

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
message string
tag_name string
target string
View JSON Schema on GitHub

JSON Schema

createtagoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateTagOption",
  "description": "CreateTagOption options when creating a tag",
  "type": "object",
  "required": [
    "tag_name"
  ],
  "properties": {
    "message": {
      "type": "string",
      "x-go-name": "Message"
    },
    "tag_name": {
      "type": "string",
      "x-go-name": "TagName"
    },
    "target": {
      "type": "string",
      "x-go-name": "Target"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}