Forgejo · Schema

EditIssueCommentOption

EditIssueCommentOption options for editing a comment

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
body string The body of the comment
updated_at string The time of the comment's update, needs admin or repository owner permission
View JSON Schema on GitHub

JSON Schema

editissuecommentoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditIssueCommentOption",
  "description": "EditIssueCommentOption options for editing a comment",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "body": {
      "description": "The body of the comment",
      "type": "string",
      "x-go-name": "Body"
    },
    "updated_at": {
      "description": "The time of the comment's update, needs admin or repository owner permission",
      "type": "string",
      "format": "date-time",
      "x-go-name": "Updated"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}