AgentOS Extensions API - v1.0.3
    Preparing search index...

    JWT token payload structure

    interface JWTPayload {
        email?: string;
        exp?: number;
        iat?: number;
        mode?: string;
        roles?: string[];
        sub: string;
        tier?: string;
        username?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    email?: string
    exp?: number
    iat?: number
    mode?: string
    roles?: string[]
    sub: string
    tier?: string
    username?: string