Hello,
Based on the feedback received, I have improved the format by:
- Adding timestamps
- Grouping querysets and results
- Saving errors
The documentation is available at: https://www.merklemap.com/documentation/dns-records-database
The data file remains accessible at the previous location: https://www.merklemap.com/dns-records-database
It's basically a https://jsonlines.org/ file with on each line a structure that looks like:
{
"hostname": "example.com",
"results": [
{
"success": {
"query": "example.com IN A",
"query_timestamp": "2024-10-22T21:48:45.415226364Z",
"records": {
"A": ["192.0.2.1", "192.0.2.2"]
}
}
}
]
}
Best regards,
Pierre Barre