A response to configure GitHub code samples
{ "$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" ] }