diggy - v1.1.1
    Preparing search index...

    Type Alias SoaRecordData

    Represents the data for a DNS SOA (Start of Authority) record.

    type SoaRecordData = {
        expire: number;
        hostmaster: string;
        minttl: number;
        nsname: string;
        refresh: number;
        retry: number;
        serial: number;
    }
    Index

    Properties

    expire: number

    The time interval (in seconds) before the zone expires if it cannot be refreshed.

    hostmaster: string

    The email address of the domain administrator (formatted as a string with a dot instead of an '@').

    minttl: number

    The minimum time-to-live (TTL) for the zone, indicating how long the record should be cached by resolvers.

    nsname: string

    The name server for the domain.

    refresh: number

    The time interval (in seconds) before the zone should be refreshed.

    retry: number

    The time interval (in seconds) before a retry should be attempted if the refresh fails.

    serial: number

    The serial number of the SOA record.