Speakeasy · Schema

GithubConfigureCodeSamplesResponse

A response to configure GitHub code samples

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
source object
codeSampleOverlayRegistryURL string The URL of the code sample overlay registry
ghActionID string The ID of the GitHub action that was dispatched
View JSON Schema on GitHub

JSON Schema

speakeasy-githubconfigurecodesamplesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubConfigureCodeSamplesResponse",
  "title": "GithubConfigureCodeSamplesResponse",
  "description": "A response to configure GitHub code samples",
  "type": "object",
  "properties": {
    "source": {
      "$ref": "#/components/schemas/WorkflowDocument"
    },
    "codeSampleOverlayRegistryURL": {
      "type": "string",
      "description": "The URL of the code sample overlay registry"
    },
    "ghActionID": {
      "type": "string",
      "description": "The ID of the GitHub action that was dispatched"
    }
  },
  "required": [
    "source",
    "codeSampleOverlayRegistryURL"
  ]
}