@iocium/rdap-lite - v1.0.1
    Preparing search index...

    Interface RDAPResult

    The final normalized result returned by RDAP lookups.

    interface RDAPResult {
        country?: string;
        created?: string;
        entities?: RDAPEntity[];
        handle?: string;
        name?: string;
        networkRange?: string;
        org?: string;
        raw?: any;
        registrar?: string;
        type: "domain" | "ip" | "autnum";
        updated?: string;
    }
    Index

    Properties

    country?: string
    created?: string
    entities?: RDAPEntity[]
    handle?: string
    name?: string
    networkRange?: string
    org?: string
    raw?: any
    registrar?: string
    type: "domain" | "ip" | "autnum"

    Type of RDAP resource: domain name, IP address, or ASN (autnum)

    updated?: string