Forgejo · Schema

CreateOAuth2ApplicationOptions

CreateOAuth2ApplicationOptions holds options to create an oauth2 application

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
confidential_client boolean
name string
redirect_uris array
View JSON Schema on GitHub

JSON Schema

createoauth2applicationoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateOAuth2ApplicationOptions",
  "description": "CreateOAuth2ApplicationOptions holds options to create an oauth2 application",
  "type": "object",
  "properties": {
    "confidential_client": {
      "type": "boolean",
      "x-go-name": "ConfidentialClient"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    },
    "redirect_uris": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "RedirectURIs"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}