# organization-actions-secret

From **GitHub v3 REST API**.

Secrets for GitHub Actions for an organization.

- Type: `object`

## Properties

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`

### `name`

- Required: true
- Type: `string`
- Example: `SECRET_TOKEN`

The name of the secret.

### `selected_repositories_url`

- Required: false
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/organizations/org/secrets/my_secret/repositories`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`

### `visibility`

- Required: true
- Type: `string`
- Allowed values: `"all"`, `"private"`, `"selected"`

Visibility of a secret

## JSON Schema

```json
{"description":"Secrets for GitHub Actions for an organization.","properties":{"created_at":{"format":"date-time","type":"string"},"name":{"description":"The name of the secret.","example":"SECRET_TOKEN","type":"string"},"selected_repositories_url":{"example":"https://api.github.com/organizations/org/secrets/my_secret/repositories","format":"uri","type":"string"},"updated_at":{"format":"date-time","type":"string"},"visibility":{"description":"Visibility of a secret","enum":["all","private","selected"],"type":"string"}},"required":["name","created_at","updated_at","visibility"],"title":"Actions Secret for an Organization","type":"object"}
```
