@archastro/sdk
    Preparing search index...

    Variable userSSHKeySchemaConst

    userSSHKeySchema: ZodObject<
        {
            algorithm: ZodString;
            created_at: ZodString;
            fingerprint: ZodString;
            id: ZodString;
            label: ZodString;
            revoked_at: ZodOptional<ZodNullable<ZodString>>;
        },
        "strip",
        ZodTypeAny,
        {
            algorithm: string;
            created_at: string;
            fingerprint: string;
            id: string;
            label: string;
            revoked_at?: string
            | null;
        },
        {
            algorithm: string;
            created_at: string;
            fingerprint: string;
            id: string;
            label: string;
            revoked_at?: string
            | null;
        },
    > = ...

    Runtime validator for UserSSHKey.