Forgejo · Schema

StopWatch

StopWatch represent a running stopwatch

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
created string
duration string
issue_index integer
issue_title string
repo_name string
repo_owner_name string
seconds integer
View JSON Schema on GitHub

JSON Schema

stopwatch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StopWatch",
  "description": "StopWatch represent a running stopwatch",
  "type": "object",
  "properties": {
    "created": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "duration": {
      "type": "string",
      "x-go-name": "Duration"
    },
    "issue_index": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "IssueIndex"
    },
    "issue_title": {
      "type": "string",
      "x-go-name": "IssueTitle"
    },
    "repo_name": {
      "type": "string",
      "x-go-name": "RepoName"
    },
    "repo_owner_name": {
      "type": "string",
      "x-go-name": "RepoOwnerName"
    },
    "seconds": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Seconds"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}