{
"id": "town.muni.arbiter.setSpaceConfig",
"defs": {
"main": {
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"arbiterDid",
"spaceKey",
"spaceType",
"config"
],
"properties": {
"config": {
"refs": [],
"type": "union",
"description": "The new space configuration."
},
"spaceKey": {
"type": "string",
"maxLength": 1024,
"description": "The key of the space to configure."
},
"spaceType": {
"type": "string",
"format": "nsid",
"description": "The new type of the space."
},
"arbiterDid": {
"type": "string",
"format": "did",
"description": "The DID of the arbiter that the space is in."
},
"resolverDepth": {
"type": "integer",
"description": "The maximum depth to allow when doing remote resolutions.\n\nBecause spaces are allowed to have members resolved from remote spaces,\nall of the arbiter endpoints have an optional resolution depth parameter\nthat can be used to limit how many chained remote calls can be resolved.\n\nThis applies both to queries and procedures. Queries may need to resolve\nexternal members to complete the member list, and procedures may need\nto resolve external members if the requesting member is not in the local\nmember list, to see if the member has access through a remote list."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ErrArbiterNotExists",
"description": "The specified arbiter does not exist on this server."
},
{
"name": "ErrSpaceNotExists",
"description": "The specified space does not exist on this arbiter."
},
{
"name": "ErrPermissionDenied",
"description": "The requesting user is not allowed to make the request."
},
{
"name": "ErrRaceCondition",
"description": "The config was changed by another request during the execution of this request.\n\nThe action should be retried if still applicable."
}
],
"output": {
"schema": {
"refs": [],
"type": "union"
},
"encoding": "application/json"
},
"description": "Configure a space on the arbiter."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}