changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "domain": {
+ "description": "Domain name that was queried",
+ "type": "string"
+ },
+ "record_count": {
+ "description": "Number of records returned",
+ "type": "number"
+ },
+ "records": {
+ "description": "Array of DNS records found",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Full domain name of the record",
+ "type": "string"
+ },
+ "ttl_seconds": {
+ "description": "Time-to-live in seconds",
+ "type": "number"
+ },
+ "type": {
+ "description": "DNS record type (A, AAAA, MX, etc.)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Record data value",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "ttl_seconds",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "DNS status code name (NOERROR, NXDOMAIN, etc.)",
+ "type": "string"
+ },
+ "type": {
+ "description": "DNS record type that was queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "domain",
+ "type",
+ "status",
+ "records",
+ "record_count"
+ ],
+ "type": "object"
+}