Speakeasy · Schema

GithubConfigureTargetRequest

A request to configure a GitHub target

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
org string The GitHub organization name
repo_name string The GitHub repository name
View JSON Schema on GitHub

JSON Schema

speakeasy-githubconfiguretargetrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubConfigureTargetRequest",
  "title": "GithubConfigureTargetRequest",
  "description": "A request to configure a GitHub target",
  "type": "object",
  "properties": {
    "org": {
      "type": "string",
      "description": "The GitHub organization name"
    },
    "repo_name": {
      "type": "string",
      "description": "The GitHub repository name"
    }
  },
  "required": [
    "org",
    "repo_name"
  ]
}