Forgejo · Schema

CreateVariableOption defines the properties of the variable to create.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
value string Value of the variable to create. Special characters will be retained. Line endings will be normalized to LF to match the behaviour of browsers. Encode the data with Base64 if line endings should be re
View JSON Schema on GitHub

JSON Schema

createvariableoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateVariableOption defines the properties of the variable to create.",
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "description": "Value of the variable to create. Special characters will be retained. Line endings will be normalized to LF to\nmatch the behaviour of browsers. Encode the data with Base64 if line endings should be retained.",
      "type": "string",
      "x-go-name": "Value"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}