Attribution record linking a derivative work to its source, forming the remix tree graph
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Record creation timestamp
maxLength: 100 bytesderivativeTrack
string
at-uri
Required
AT URI of the remix/derivative track
maxLength: 3000 bytesderivativeTrackCid
string
cid
Optional
CID of the derivative track record at time of attribution
maxLength: 200 bytesderivativeType
string
Required
Type of derivative work
maxLength: 100 bytesKnown values:
remix, sample, edit, mashup, coverdescription
string
Optional
Description of how the source was used in the derivative
maxLength: 1000 bytessourceArtist
string
did
Required
DID of the original artist
maxLength: 2048 bytessourceTrack
string
at-uri
Required
AT URI of the original/source track
maxLength: 3000 bytessourceTrackCid
string
cid
Optional
CID of the source track record at time of attribution (pins to exact version)
maxLength: 200 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"sourceTrack",
"sourceArtist",
"derivativeTrack",
"derivativeType",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Record creation timestamp"
},
"description": {
"type": "string",
"maxLength": 1000,
"description": "Description of how the source was used in the derivative"
},
"sourceTrack": {
"type": "string",
"format": "at-uri",
"maxLength": 3000,
"description": "AT URI of the original/source track"
},
"sourceArtist": {
"type": "string",
"format": "did",
"maxLength": 2048,
"description": "DID of the original artist"
},
"derivativeType": {
"type": "string",
"maxLength": 100,
"description": "Type of derivative work",
"knownValues": [
"remix",
"sample",
"edit",
"mashup",
"cover"
]
},
"sourceTrackCid": {
"type": "string",
"format": "cid",
"maxLength": 200,
"description": "CID of the source track record at time of attribution (pins to exact version)"
},
"derivativeTrack": {
"type": "string",
"format": "at-uri",
"maxLength": 3000,
"description": "AT URI of the remix/derivative track"
},
"derivativeTrackCid": {
"type": "string",
"format": "cid",
"maxLength": 200,
"description": "CID of the derivative track record at time of attribution"
}
}
},
"description": "Attribution record linking a derivative work to its source, forming the remix tree graph"
}