Forgejo · Schema

EditMilestoneOption

EditMilestoneOption options for editing a milestone

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
description string
due_on string
state string
title string
View JSON Schema on GitHub

JSON Schema

editmilestoneoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditMilestoneOption",
  "description": "EditMilestoneOption options for editing a milestone",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "due_on": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Deadline"
    },
    "state": {
      "type": "string",
      "x-go-name": "State"
    },
    "title": {
      "type": "string",
      "x-go-name": "Title"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}