A FreeMix license grant defining permissions for a track or stem
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Record creation timestamp
maxLength: 100 bytesgrants
ref
#grants
Required
Machine-readable permissions granted by this license
legalText
string
uri
Optional
URI to the full license legal text
maxLength: 3000 bytesmodifiers
ref
#modifiers
Required
Optional license modifiers
requires
ref
#requires
Required
Obligations required when using this content
restrictions
ref
#restrictions
Required
Restrictions on use
tier
string
Required
License tier: open (public domain), remix (full rights), noncommercial (NC use), stems (stems for creative use), dj (DJ edits/performance), samples (sample packs, 0% royalty)
maxLength: 100 bytesopen, remix, noncommercial, stems, dj, samplesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"tier",
"modifiers",
"grants",
"requires",
"restrictions",
"createdAt"
],
"properties": {
"tier": {
"type": "string",
"maxLength": 100,
"description": "License tier: open (public domain), remix (full rights), noncommercial (NC use), stems (stems for creative use), dj (DJ edits/performance), samples (sample packs, 0% royalty)",
"knownValues": [
"open",
"remix",
"noncommercial",
"stems",
"dj",
"samples"
]
},
"grants": {
"ref": "#grants",
"type": "ref",
"description": "Machine-readable permissions granted by this license"
},
"requires": {
"ref": "#requires",
"type": "ref",
"description": "Obligations required when using this content"
},
"createdAt": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Record creation timestamp"
},
"legalText": {
"type": "string",
"format": "uri",
"maxLength": 3000,
"description": "URI to the full license legal text"
},
"modifiers": {
"ref": "#modifiers",
"type": "ref",
"description": "Optional license modifiers"
},
"restrictions": {
"ref": "#restrictions",
"type": "ref",
"description": "Restrictions on use"
}
}
},
"description": "A FreeMix license grant defining permissions for a track or stem"
}