Forgejo · Schema

Note

Note contains information related to a git note

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
commit object
message string
View JSON Schema on GitHub

JSON Schema

note.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Note",
  "description": "Note contains information related to a git note",
  "type": "object",
  "properties": {
    "commit": {
      "$ref": "#/definitions/Commit"
    },
    "message": {
      "type": "string",
      "x-go-name": "Message"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}