featherbit UI
    Preparing search index...

    Interface SessionMeta

    Metadata envelope for one server-side session (payloads never leave the store).

    Mirrors src/sessions/mod.rs::SessionMeta; served by src/admin/sessions.rs.

    interface SessionMeta {
        created_at: number;
        expires_at: number;
        id: string;
        plugin: string;
        policy: string;
        route: string;
        subject: string;
    }
    Index
    created_at: number

    Unix seconds.

    expires_at: number

    Unix seconds.

    id: string

    The session id (the value in the browser's cookie).

    plugin: string

    Plugin type that established the session.

    policy: string

    Policy name the session was established under.

    route: string

    Route name the session was established under.

    subject: string

    Authenticated subject; may be empty (opaque token with no claims).