Forgejo · Schema

Label

Label a label to an issue or a pr

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
color string
description string
exclusive boolean
id integer
is_archived boolean
name string
url string
View JSON Schema on GitHub

JSON Schema

label.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Label",
  "description": "Label a label to an issue or a pr",
  "type": "object",
  "properties": {
    "color": {
      "type": "string",
      "x-go-name": "Color",
      "example": "00aabb"
    },
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "exclusive": {
      "type": "boolean",
      "x-go-name": "Exclusive",
      "example": false
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "is_archived": {
      "type": "boolean",
      "x-go-name": "IsArchived",
      "example": false
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}