A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 29 lines 607 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.feed.search", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Search for content in the feed", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "query" 12 ], 13 "properties": { 14 "query": { 15 "type": "string", 16 "description": "The search query string" 17 } 18 } 19 }, 20 "output": { 21 "encoding": "application/json", 22 "schema": { 23 "type": "ref", 24 "ref": "app.rocksky.feed.defs#searchResultsView" 25 } 26 } 27 } 28 } 29}