Forgejo · Schema

CreateWikiPageOptions

CreateWikiPageOptions form for creating wiki

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
content_base64 string content must be base64 encoded
message string optional commit message summarizing the change
title string page title. leave empty to keep unchanged
View JSON Schema on GitHub

JSON Schema

createwikipageoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateWikiPageOptions",
  "description": "CreateWikiPageOptions form for creating wiki",
  "type": "object",
  "properties": {
    "content_base64": {
      "description": "content must be base64 encoded",
      "type": "string",
      "x-go-name": "ContentBase64"
    },
    "message": {
      "description": "optional commit message summarizing the change",
      "type": "string",
      "x-go-name": "Message"
    },
    "title": {
      "description": "page title. leave empty to keep unchanged",
      "type": "string",
      "x-go-name": "Title"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}