{ "lexicon": 1, "id": "sh.tangled.actor.getProfiles", "defs": { "main": { "type": "query", "parameters": { "type": "params", "required": ["actors"], "properties": { "actors": { "type": "array", "items": { "type": "string", "format": "at-uri" }, "maxLength": 50, "description": "AT-URIs of the sh.tangled.actor.profile records to fetch. At most 50 per request." } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["items"], "properties": { "items": { "type": "array", "items": { "type": "ref", "ref": "#recordView" } } } } } }, "recordView": { "type": "object", "required": ["uri", "value"], "properties": { "uri": { "type": "string", "format": "at-uri" }, "cid": { "type": "string", "format": "cid" }, "value": { "type": "unknown", "description": "Embedded sh.tangled.actor.profile record." } } } } }