validate_track_ids
Check the validity of a list of track IDs by identifying which are valid and invalid. Designed for use with the rekordbox DJ database for accurate track management.
Instructions
Validate a list of track IDs and show which are valid/invalid.
Args: track_ids: List of track IDs to validate
Returns: Validation results with valid and invalid IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
track_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"track_ids": {
"items": {
"type": "string"
},
"title": "Track Ids",
"type": "array"
}
},
"required": [
"track_ids"
],
"type": "object"
}