GitHubAccess

Access to GitHub repository content

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type string
repoUrl string Repository URL
ref string Git reference
commit string Commit SHA
View JSON Schema on GitHub

JSON Schema

application-research-githubaccess-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitHubAccess",
  "title": "GitHubAccess",
  "type": "object",
  "description": "Access to GitHub repository content",
  "required": [
    "type",
    "repoUrl"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "github",
        "gitHub"
      ]
    },
    "repoUrl": {
      "type": "string",
      "description": "Repository URL"
    },
    "ref": {
      "type": "string",
      "description": "Git reference"
    },
    "commit": {
      "type": "string",
      "description": "Commit SHA"
    }
  }
}