## Directory Structure
```
policies/
    _schemas/
        *.json
    *.yml
conf.default.yaml
```
* policies are stored under `policies/` directory
* validation schemas are stored under `policies/_schemas/` directory
* `conf.default.yaml` describes the configurations to use for cerbos server
* `Dockerfile` is the Dockerfile for our Cerbos image

## Testing Policies

From the `ows-pdp/cerbos/` directory, run:

```
docker run -i \
    -v $PWD/policies:/policies \
    -v $PWD/tests:/tests \
    ghcr.io/cerbos/cerbos:latest compile --tests=/tests /policies
```
Documentation [here](https://docs.cerbos.dev/cerbos/latest/policies/compile.html).
