# Governance Interpreter Sample
```javascript=
g = governance.load("mygovernancefile.json")
// this will return true, as bob is approved for someschema
result = g.isApprovedIssuer(issuer="did:example:bob", schema="someschema")
console.log(result, ' because...')
// this will return false, as bob is not approved for otherschema
g.isApprovedIssuer(issuer="did:example:bob", schema="otherschema")
// this will return false, as lameschema is not listed in our governance file
g.isApprovedIssuer(issuer="did:example:bob", schema="lameschema")
// this will return false, as malory is not listed in our governance file
g.isApprovedIssuer(issuer="did:example:malory", schema="someschema")
```