Forgejo · Schema

IssueLabelsOption

IssueLabelsOption a collection of labels

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
labels array Labels can be a list of integers representing label IDs or a list of strings representing label names
updated_at string
View JSON Schema on GitHub

JSON Schema

issuelabelsoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IssueLabelsOption",
  "description": "IssueLabelsOption a collection of labels",
  "type": "object",
  "properties": {
    "labels": {
      "description": "Labels can be a list of integers representing label IDs\nor a list of strings representing label names",
      "type": "array",
      "items": {},
      "x-go-name": "Labels"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Updated"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}