A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 33 lines 662 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.player.playDirectory", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Play all tracks in a directory", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "directoryId" 12 ], 13 "properties": { 14 "playerId": { 15 "type": "string" 16 }, 17 "directoryId": { 18 "type": "string" 19 }, 20 "shuffle": { 21 "type": "boolean" 22 }, 23 "recurse": { 24 "type": "boolean" 25 }, 26 "position": { 27 "type": "integer" 28 } 29 } 30 } 31 } 32 } 33}