Forgejo · Schema

IssueMeta

IssueMeta basic issue information

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
index integer
owner string
repo string
View JSON Schema on GitHub

JSON Schema

issuemeta.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IssueMeta",
  "description": "IssueMeta basic issue information",
  "type": "object",
  "properties": {
    "index": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Index"
    },
    "owner": {
      "type": "string",
      "x-go-name": "Owner"
    },
    "repo": {
      "type": "string",
      "x-go-name": "Name"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}