{
"id": "app.rocksky.actor.getActorArtists",
"defs": {
"main": {
"type": "query",
"output": {
"schema": {
"type": "object",
"properties": {
"artists": {
"type": "array",
"items": {
"ref": "app.rocksky.artist.defs#artistViewBasic",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "at-identifier",
"description": "The DID or handle of the actor"
},
"limit": {
"type": "integer",
"minimum": 1,
"description": "The maximum number of albums to return"
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "The offset for pagination"
},
"endDate": {
"type": "string",
"format": "datetime",
"description": "The end date to filter albums to (ISO 8601 format)"
},
"startDate": {
"type": "string",
"format": "datetime",
"description": "The start date to filter albums from (ISO 8601 format)"
}
}
},
"description": "Get artists for an actor"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}