Secrets for GitHub Dependabot for an organization.
{ "$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" ] }