Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface AMCTrustToken

    AMC Trust Token — portable, verifiable trust credential. Designed to be exchangeable across platforms.

    interface AMCTrustToken {
        claims: TrustClaim[];
        expiresAt: number;
        issuedAt: number;
        issuer: { platform: string; publicKeyHash: string; workspaceId: string };
        signature: string;
        subject: { agentId: string; displayName?: string; passportId?: string };
        tokenId: string;
        version: "1.0";
    }
    Index
    claims: TrustClaim[]
    expiresAt: number
    issuedAt: number
    issuer: { platform: string; publicKeyHash: string; workspaceId: string }
    signature: string
    subject: { agentId: string; displayName?: string; passportId?: string }
    tokenId: string
    version: "1.0"