The full internal state of one domain: its registration, its event history, its job log, its certificate state, and its last verification result.
Parameters
Output
Encoding
application/jsondomain
reflol.dids.defs#domainView
Required
No description available.
events
array
Required
No description available.
jobs
array
Required
No description available.
tls
reflol.dids.defs#tlsView
Required
No description available.
verification
reflol.dids.defs#verificationView
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"events",
"jobs",
"tls",
"verification"
],
"properties": {
"tls": {
"ref": "lol.dids.defs#tlsView",
"type": "ref"
},
"jobs": {
"type": "array",
"items": {
"ref": "lol.dids.defs#jobView",
"type": "ref"
}
},
"domain": {
"ref": "lol.dids.defs#domainView",
"type": "ref"
},
"events": {
"type": "array",
"items": {
"ref": "lol.dids.defs#domainEvent",
"type": "ref"
}
},
"verification": {
"ref": "lol.dids.defs#verificationView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "The hostname."
}
}
},
"description": "The full internal state of one domain: its registration, its event history, its job log, its certificate state, and its last verification result."
}