Secrets for GitHub Actions for an organization.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/organization-actions-secret", "title": "Actions Secret for an Organization", "description": "Secrets for GitHub Actions 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/secrets/my_secret/repositories" } }, "required": [ "name", "created_at", "updated_at", "visibility" ] }