# ManagedPolicy Object

## Description

Specification for a managed policy.

## Properties

### canApplyToAccount

Indicates whether the managed policy can be attached to a user at the account-level.

Type: `bool`

### canApplyToProject

Indicates whether the managed policy can be attached to a user at the project-level.

Type: `bool`

### description

Description of the managed policy.

Type: `string`

### managedPolicyId

ID of the managed policy.

Type: `string`

### name

Name of the managed policy.

Type: `string`

## Sample JSON

```javascript
{
    "managedPolicyId": "full",
    "name": "Full Access",
    "description": "",
    
    "canApplyToAccount": true,
    "canApplyToProject": false
}
```
