Forgejo · Schema

ActionVariable

ActionVariable return value of the query API

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
data string the value of the variable
name string the name of the variable
owner_id integer the owner to which the variable belongs
repo_id integer the repository to which the variable belongs
View JSON Schema on GitHub

JSON Schema

actionvariable.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActionVariable",
  "description": "ActionVariable return value of the query API",
  "type": "object",
  "properties": {
    "data": {
      "description": "the value of the variable",
      "type": "string",
      "x-go-name": "Data"
    },
    "name": {
      "description": "the name of the variable",
      "type": "string",
      "x-go-name": "Name"
    },
    "owner_id": {
      "description": "the owner to which the variable belongs",
      "type": "integer",
      "format": "int64",
      "x-go-name": "OwnerID"
    },
    "repo_id": {
      "description": "the repository to which the variable belongs",
      "type": "integer",
      "format": "int64",
      "x-go-name": "RepoID"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}