# The GetPolicyComplianceForJobResponse object

## Attributes

- `is_compliant` (boolean)
  Whether the job is compliant with its policies or not. Jobs could be out of
   compliance if a policy they are using was updated after the job was
   last edited and some of its job clusters no longer comply with
   their updated policies.
- `violations` (object)
  An object containing key-value mappings representing the first 200 policy
   validation errors.
   The keys indicate the path where the policy validation error is occurring.
   An identifier for the job cluster is prepended to the path.
   The values indicate an error message describing the policy validation error.

## Example

```json
{
  "is_compliant": true,
  "violations": {
    "job_clusters[job_cluster_key].new_cluster.custom_tags.test_tag": "Validation failed for custom_tags.test_tag, the value cannot be present"
  }
}
```


