Forgejo · Schema

UserHeatmapData

UserHeatmapData represents the data needed to create a heatmap

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
contributions integer
timestamp object
View JSON Schema on GitHub

JSON Schema

userheatmapdata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserHeatmapData",
  "description": "UserHeatmapData represents the data needed to create a heatmap",
  "type": "object",
  "properties": {
    "contributions": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Contributions"
    },
    "timestamp": {
      "$ref": "#/definitions/TimeStamp"
    }
  },
  "x-go-package": "forgejo.org/models/activities"
}