A Matadisco record
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"created",
"metadata"
],
"properties": {
"created": {
"type": "string",
"format": "datetime",
"description": "The time the metadata record was created"
},
"preview": {
"type": "object",
"required": [
"mimeType"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The URL to the preview"
},
"mimeType": {
"type": "string",
"description": "The media type the preview has"
}
},
"description": "Preview of the data"
},
"metadata": {
"type": "string",
"format": "uri",
"description": "A URI containing metadata"
}
}
},
"description": "A Matadisco record"
}