# The PolicyFamily object

## Attributes

- `policy_family_id` (string)
  Unique identifier for the policy family.
- `name` (string)
  Name of the policy family.
- `description` (string)
  Human-readable description of the purpose of the policy family.
  Constraints: `<= 1000 characters`
- `definition` (string)
  Policy definition document expressed in [Databricks Cluster Policy Definition Language](https://docs.databricks.com/administration-guide/clusters/policy-definition.html).

## Example

```json
{
  "policy_family_id": "string",
  "name": "string",
  "description": "string",
  "definition": {
    "custom_tags.test_tag": {
      "type": "fixed",
      "value": "test_value"
    }
  }
}
```


