From 059b605121645b7fa192474c7104a46606274f83 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 6 Oct 2017 14:39:54 -0600 Subject: [PATCH] all properties listed --- README.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/README.md b/README.md index 627a476..9aa115f 100644 --- a/README.md +++ b/README.md @@ -353,6 +353,51 @@ Used for mDNS/DNS-SD type discoveries and anti-spam reverse lookup verification } ``` +All Properties +--------- + +For simplicity, here's a list of all properties, just for fun: + +```js +{ + // All RRs + "name": "example.com", + "type": 1, + "typeName": "A", + "class": 1, + "className": "IN", + "ttl": 600, + + // SOA + "primary": "ns1.yahoo.com", + "admin": "hostmaster.yahoo-inc.com", + "serial": 2017092539, + "refresh": 3600, + "retry": 300, + "expiration": 1814400, + "minimum": 600, + + // A, AAAA + "address": "72.14.191.202", + + // CNAME, NS, PTR + "data": "ns3.google.com", + + // TXT + // "data": [ "v=spf1 ptr:mx.aol.com ?all" ], + + // MX + "priority": 10, + "exchange": "microsoft-com.mail.protection.outlook.com", + + // SRV + "priority": 5, + "weight": 0, + "port": 5269, + "target": "xmpp-server.l.google.com" +} +``` + Contributing and Development ============================