Speakeasy · Schema

GithubConfigureCodeSamplesRequest

A request to configure GitHub code samples

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
org string The GitHub organization name
repo string The GitHub repository name
targetName string The target name for the code samples
View JSON Schema on GitHub

JSON Schema

speakeasy-githubconfigurecodesamplesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubConfigureCodeSamplesRequest",
  "title": "GithubConfigureCodeSamplesRequest",
  "description": "A request to configure GitHub code samples",
  "type": "object",
  "properties": {
    "org": {
      "type": "string",
      "description": "The GitHub organization name"
    },
    "repo": {
      "type": "string",
      "description": "The GitHub repository name"
    },
    "targetName": {
      "type": "string",
      "description": "The target name for the code samples"
    }
  },
  "required": [
    "org",
    "repo",
    "targetName"
  ]
}