DAT Specification
Core Structure
Field
Description
ID
Each DAT is a unique token representing a specific AI asset
CLASS
Category of asset (e.g., POV, Model, Inference)
VALUE
Represents usage quota or revenue share
PROOF
Attached proof for authenticity (e.g., ZK, TEE, OP)
Sample Metadata Schema
{
"name": "Timi + Fine-Tuned Llama Model v2",
"class": "0x03",
"value": 2500,
"proof": {
"type": "ZK-SNARK",
"hash": "0xabc123...",
"verifiedBy": "0xVerifierContract"
},
"usagePolicy": {
"maxCalls": 1000,
"expiresAt": "2026-12-31"
},
"revenueShare": {
"totalShares": 10000,
"holderShare": 2500
},
"rights": {
"license": "commercial_use_allowed",
"canTransfer": true
}
}
Last updated