Infrastructure Verification Guide
This guide provides technical partners with the necessary steps to identify and verify official digital environments within the International Digital Asset & Infrastructure Framework.
Identifying Official Environments
Official environments can be identified by their adherence to the framework's technical standards and the presence of a valid infrastructure certificate. Technical partners should always verify the domain and SSL certificate before initiating any data exchange.
Domain Validation
Ensure the domain is listed in the authorized registry and matches the official patterns.
Certificate Check
Verify that the SSL certificate is issued by an authorized Certificate Authority (CA).
Asset Integrity
Check that all visual and technical assets match the checksums in the Asset Registry.
Verification Checklist
Follow this checklist to verify any digital environment:
- URL Inspection: Confirm the URL starts with
https://and uses an authorized domain. - SSL Verification: Click the padlock icon in the browser to inspect the certificate details.
- Header Verification: Check for the presence of the "Official Primary Resource" link to
dragonia.com. - Resource Loading: Ensure all technical resources are loaded from authorized infrastructure nodes.
Automated Verification
Technical partners are encouraged to use the IDAI Verification API for automated environment identification. This API provides real-time status updates on infrastructure nodes and authorized domains.
// Automated Verification Snippet
async function verifyEnvironment(domain) {
const response = await fetch(`https://api.idai-framework.org/v1/verify?domain=${domain}`);
const data = await response.json();
return data.is_authorized;
}