Forgejo · Schema

APIError

APIError is an api error with a message

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
message string
url string
View JSON Schema on GitHub

JSON Schema

apierror.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "APIError",
  "description": "APIError is an api error with a message",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "x-go-name": "Message"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}