changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "domain": {
+ "description": "Domain name queried",
+ "type": "string"
+ },
+ "error": {
+ "description": "Error message when domain not found",
+ "type": "string"
+ },
+ "registered": {
+ "description": "Domain registration status",
+ "enum": [
+ false
+ ],
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "domain",
+ "registered",
+ "error"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "dnssec": {
+ "description": "DNSSEC delegation signed status",
+ "type": "boolean"
+ },
+ "domain": {
+ "description": "Domain name (LDH form)",
+ "type": "string"
+ },
+ "expiration_date": {
+ "description": "ISO 8601 expiration date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_changed": {
+ "description": "ISO 8601 last change/update date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nameservers": {
+ "description": "Authoritative nameserver hostnames",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "registered": {
+ "description": "Domain is registered",
+ "enum": [
+ true
+ ],
+ "type": "boolean"
+ },
+ "registrant": {
+ "description": "Registrant name or organization",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "registrar": {
+ "description": "Registrar name or organization",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "registration_date": {
+ "description": "ISO 8601 registration date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Domain status flags (e.g., active, clientHold)",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "unicode_name": {
+ "description": "Unicode/IDN representation of domain",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "domain",
+ "unicode_name",
+ "registered",
+ "status",
+ "registrar",
+ "registrant",
+ "registration_date",
+ "expiration_date",
+ "last_changed",
+ "nameservers",
+ "dnssec"
+ ],
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}