Forgejo · Schema

CreateOrUpdateSecretOption defines the properties of the secret to create or update.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
data string Data of the secret. 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 retained.
View JSON Schema on GitHub

JSON Schema

createorupdatesecretoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateOrUpdateSecretOption defines the properties of the secret to create or update.",
  "type": "object",
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "description": "Data of the secret. Special characters will be retained. Line endings will be normalized to LF to match the\nbehaviour of browsers. Encode the data with Base64 if line endings should be retained.",
      "type": "string",
      "x-go-name": "Data"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}