Created
November 20, 2023 20:21
-
-
Save dontpaniclabsgists/04df1efd58860d055fd7e2fc0f3b29df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "play_notes", | |
"parameters": { | |
"type": "object", | |
"properties": { | |
"notes": { | |
"type": "array", | |
"description": "The ordered notes and pauses to play", | |
"items": { | |
"type": "object", | |
"properties": { | |
"octave": { | |
"type": "integer" | |
}, | |
"note": { | |
"type": "string" | |
}, | |
"duration": { | |
"type": "number", | |
"minimum": 0 | |
} | |
}, | |
"required": [ | |
"duration" | |
], | |
"additionalProperties": false | |
} | |
} | |
}, | |
"required": [ | |
"notes" | |
] | |
}, | |
"description": "Play notes at octaves for a duration or pause for a duration between notes" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment