Forgejo · Schema

AddTimeOption

AddTimeOption options for adding time to an issue

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
created string
time integer time in seconds
user_name string User who spent the time (optional)
View JSON Schema on GitHub

JSON Schema

addtimeoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddTimeOption",
  "description": "AddTimeOption options for adding time to an issue",
  "type": "object",
  "required": [
    "time"
  ],
  "properties": {
    "created": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "time": {
      "description": "time in seconds",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Time"
    },
    "user_name": {
      "description": "User who spent the time (optional)",
      "type": "string",
      "x-go-name": "User"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}