Forgejo · Schema

RepoTopicOptions

RepoTopicOptions a collection of repo topic names

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
topics array list of topic names
View JSON Schema on GitHub

JSON Schema

repotopicoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RepoTopicOptions",
  "description": "RepoTopicOptions a collection of repo topic names",
  "type": "object",
  "properties": {
    "topics": {
      "description": "list of topic names",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Topics"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}