Loading...
Loading...
Cross-Platform Governance
Cross-platform governance that scales. Create or join governance networks, share trust signals, and coordinate enforcement across organizations. Together, the network is stronger than any single member.
Federation Pillars
Federation networks multiply the effectiveness of governance by connecting organizations that share common goals.
Create or join federated governance networks. Each network defines shared policies, trust thresholds, and enforcement standards that all members agree to uphold.
Share DRD Scores, KYC verification results, compliance status, and violation history across network members. Agents trusted by one member can be trusted by all.
When one member blocks a bad actor, the entire network can respond. Coordinated enforcement ensures that rogue agents cannot simply hop between platforms.
Trust badges, KYC verification, and compliance certifications from one member are recognized across the network. No duplicate verification for agents operating across platforms.
Network Types
Sector-specific governance for finance, healthcare, legal, and more. Shared compliance standards and industry-appropriate trust thresholds.
Jurisdiction-aligned governance networks that match local regulatory requirements. EU AI Act compliance, US state-level regulations, and more.
Build your own governance network with custom policies, trust requirements, and member admission criteria. Invite partners, customers, and vendors.
Capabilities
Democratic governance with member voting on policy changes, new member admission, and enforcement actions. Configurable quorum and voting thresholds.
Share trust signals without exposing sensitive data. Zero-knowledge proofs and selective disclosure ensure only necessary information crosses network boundaries.
Join multiple federation networks simultaneously. An organization can participate in industry-specific, geographic, and cross-sector networks at the same time.
Trust signal updates propagate across the federation in real time. When an agent's score changes or a violation occurs, all members know instantly.
Cross-organization approval workflows for high-risk agent actions. An agent acting across platforms can get coordinated approval from all relevant members.
Built on open standards: W3C DID, Verifiable Credentials, and ActivityPub. Federation works with any platform that implements the DRD Federation Protocol.
Getting Started
Create a new federation network with your governance rules, or apply to join an existing one. Each network has clear membership criteria and onboarding processes.
Define what trust signals to share, what to receive, and how external signals factor into your local trust decisions. Full control over data flow.
Participate in network governance, vote on policies, and coordinate enforcement actions. The federation amplifies the trust infrastructure of every member.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Create a federation network
const network = await drd.federation.createNetwork({
name: 'FinServ AI Governance',
description: 'Financial services AI governance network',
policies: {
minScore: 75,
requireKYC: true,
sharedEnforcement: true,
},
membership: {
approval: 'vote',
quorum: 0.66,
},
});
// Query federated trust for an agent
const trust = await drd.federation.queryTrust({
agentId: 'agent_abc123',
networks: ['finserv-governance'],
});
console.log(trust.federated_score); // 84
console.log(trust.member_reports); // 5 members reporting
// Share an enforcement action with the network
await drd.federation.shareEnforcement({
network: network.id,
agentId: 'agent_bad_actor',
action: 'block',
reason: 'Unauthorized data access',
evidence: ['audit_log_123', 'alert_456'],
});Build trust across platforms. Federation makes governance stronger for everyone. Create or join a network today.