Forgejo · Schema

IssueFormField

IssueFormField represents a form field

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
attributes object
id string
type object
validations object
visible array
View JSON Schema on GitHub

JSON Schema

issueformfield.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IssueFormField",
  "description": "IssueFormField represents a form field",
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "additionalProperties": {},
      "x-go-name": "Attributes"
    },
    "id": {
      "type": "string",
      "x-go-name": "ID"
    },
    "type": {
      "$ref": "#/definitions/IssueFormFieldType"
    },
    "validations": {
      "type": "object",
      "additionalProperties": {},
      "x-go-name": "Validations"
    },
    "visible": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/IssueFormFieldVisible"
      },
      "x-go-name": "Visible"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}