Dependabot Secret for an Organization

Secrets for GitHub Dependabot for an organization.

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string The name of the secret.
created_at string
updated_at string
visibility string Visibility of a secret
selected_repositories_url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-organization-dependabot-secret-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/organization-dependabot-secret",
  "title": "Dependabot Secret for an Organization",
  "description": "Secrets for GitHub Dependabot for an organization.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the secret.",
      "example": "SECRET_TOKEN",
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "visibility": {
      "description": "Visibility of a secret",
      "enum": [
        "all",
        "private",
        "selected"
      ],
      "type": "string"
    },
    "selected_repositories_url": {
      "type": "string",
      "format": "uri",
      "example": "https://api.github.com/organizations/org/dependabot/secrets/my_secret/repositories"
    }
  },
  "required": [
    "name",
    "created_at",
    "updated_at",
    "visibility"
  ]
}