Properties
| Name | Type | Description |
|---|---|---|
| enabled_organizations | object | |
| selected_organizations_url | string | The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`. |
| allowed_actions | object | |
| selected_actions_url | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/actions-enterprise-permissions",
"title": "actions-enterprise-permissions",
"type": "object",
"properties": {
"enabled_organizations": {
"$ref": "#/components/schemas/enabled-organizations"
},
"selected_organizations_url": {
"type": "string",
"description": "The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`."
},
"allowed_actions": {
"$ref": "#/components/schemas/allowed-actions"
},
"selected_actions_url": {
"$ref": "#/components/schemas/selected-actions-url"
}
},
"required": [
"enabled_organizations"
]
}