JSON Schema Definition
2025-04-11
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://docs.tdmai.org/technical-specification/json-schema-definition",
"title": "TDM·AI Usage Declaration",
"type": "object",
"required": ["version", "iscc", "intent"],
"properties": {
"version": {
"type": "string",
"description": "The version of the reservation declaration schema.",
"const": "1.0"
},
"iscc": {
"type": "string",
"description": "A unique content identifier using the ISCC standard (ISO 24138:2024)."
},
"all": {
"type": "string",
"description": "Preference for general automated processing.",
"enum": ["true", "false"]
},
"train-ai": {
"type": "string",
"description": "Preference for AI training (non-generative).",
"enum": ["true", "false"]
},
"train-genai": {
"type": "string",
"description": "Preference for generative AI training.",
"enum": ["true", "false"]
},
"ai-use": {
"type": "string",
"description": "Preference for inference-time use of the asset as input to a trained model.",
"enum": ["true", "false"]
},
"search": {
"type": "string",
"description": "Preference for inclusion in search applications.",
"enum": ["true", "false"]
},
"reference": {
"type": "string",
"description": "Reference to a prior declaration (CID) this one updates or supersedes."
},
"intent": {
"type": "string",
"description": "Type of declaration in its lifecycle.",
"enum": ["activate", "update", "supersede"],
"default": "activate"
},
"summary": {
"type": "string",
"description": "Optional human-readable summary of declared permissions or reservations."
},
"policy": {
"type": "string",
"description": "Optional human-readable reference to the targeted compliance regime (e.g. CDSM, AI Act)."
}
},
"additionalProperties": false
}Last updated