From 8282bf4c3e992d1f72d70e126353b8dbd15fc3a3 Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 10 Jan 2018 19:53:04 +0100 Subject: [PATCH] Add docs for NS and SOA rrtypes --- README.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59e7566..9bd4782 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,14 @@ Currently the different available records are } ``` +#### `NS` + +``` js +{ + data: nameServer +} +``` + #### `NULL` ``` js @@ -141,6 +149,23 @@ Currently the different available records are } ``` +#### `SOA` + +``` js +{ + data: + { + mname: domainName, + rname: mailbox, + serial: zoneSerial, + refresh: refreshInterval, + retry: retryInterval, + expire: expireInterval, + minimum: minimumTTL + } +} +``` + #### `SRV` ``` js @@ -203,4 +228,4 @@ If you need another one, open an issue and we'll try to add it. ## License -MIT \ No newline at end of file +MIT