Result of parsing and looking up media links across supported music streaming providers.
any
Any valid record key
Properties
lookedUpAt
string
datetime
Required
ISO8601 timestamp of when this lookup was performed.
results
array
of
ref
#providerResult
Required
Collection of lookup results from each provider that returned a match.
maxLength: 10 itemsminLength: 1 itemsView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"results",
"lookedUpAt"
],
"properties": {
"results": {
"type": "array",
"items": {
"ref": "#providerResult",
"type": "ref"
},
"maxLength": 10,
"minLength": 1,
"description": "Collection of lookup results from each provider that returned a match."
},
"lookedUpAt": {
"type": "string",
"format": "datetime",
"description": "ISO8601 timestamp of when this lookup was performed."
}
}
},
"description": "Result of parsing and looking up media links across supported music streaming providers."
}