Forgejo · Schema

Milestone

Milestone milestone is a collection of issues on one repository

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
closed_at string
closed_issues integer
created_at string
description string
due_on string
id integer
open_issues integer
state object
title string
updated_at string
View JSON Schema on GitHub

JSON Schema

milestone.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Milestone",
  "description": "Milestone milestone is a collection of issues on one repository",
  "type": "object",
  "properties": {
    "closed_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Closed"
    },
    "closed_issues": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ClosedIssues"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "due_on": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Deadline"
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "open_issues": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "OpenIssues"
    },
    "state": {
      "$ref": "#/definitions/StateType"
    },
    "title": {
      "type": "string",
      "x-go-name": "Title"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Updated"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}