Verify the registry

const { verifyRevocationDocument } = require('./lib/revocation');
const document = await fetch('https://revoked.aifeed.md/revocation/suspended.json').then(r => r.text());
const result = verifyRevocationDocument(document, {
  domain: 'revoked.aifeed.md',
  governanceKeys: ['ed25519:...', 'ed25519:...']
});
console.log(result.result, result.status); // valid suspended

The verifier checks the threshold, fingerprints, expiry, and domain binding before reporting a status.