town.muni.arbiter.deleteSpace

zicklag.dev

Schema Diff

+19 -2

From

CID
bafyreid3xaz55wb...
Indexed At
2026-05-19 19:41 UTC
View this version

To

CID
bafyreidoyjjkbyw...
Indexed At
2026-05-19 22:18 UTC
View this version

Compatibility Analysis

Breaking Changes Detected

1 breaking change, 4 non-breaking changes.

Breaking Changes (1)
  • ConstraintAdded ConstraintAdded { vertex_id: "town.muni.arbiter.deleteSpace:input.spaceKey", sort: "maxLength", value: "1024" }
Non-Breaking Changes (4)
  • AddedVertex AddedVertex { vertex_id: "town.muni.arbiter.deleteSpace:input.resolverDepth" }
  • AddedVertex AddedVertex { vertex_id: "town.muni.arbiter.deleteSpace:output" }
  • AddedEdge AddedEdge { src: "town.muni.arbiter.deleteSpace", tgt: "town.muni.arbiter.deleteSpace:output", kind: "prop", name: Some("output") }
  • AddedEdge AddedEdge { src: "town.muni.arbiter.deleteSpace:input", tgt: "town.muni.arbiter.deleteSpace:input.resolverDepth", kind: "prop", name: Some("resolverDepth") }

Migration Guidance

Added Elements

  • AddedVertex { vertex_id: "town.muni.arbiter.deleteSpace:input.resolverDepth" }
  • AddedVertex { vertex_id: "town.muni.arbiter.deleteSpace:output" }

Constraint Changes

  • ConstraintAdded ConstraintAdded { vertex_id: "town.muni.arbiter.deleteSpace:input.spaceKey", sort: "maxLength", value: "1024" }

Additional Notes

  • Non-breaking: AddedEdge { src: "town.muni.arbiter.deleteSpace", tgt: "town.muni.arbiter.deleteSpace:output", kind: "prop", name: Some("output") }
  • Non-breaking: AddedEdge { src: "town.muni.arbiter.deleteSpace:input", tgt: "town.muni.arbiter.deleteSpace:input.resolverDepth", kind: "prop", name: Some("resolverDepth") }
1 1
{
2 2
  "id": "town.muni.arbiter.deleteSpace",
3 3
  "defs": {
4 4
    "main": {
5 5
      "type": "procedure",
6 6
      "input": {
7 7
        "schema": {
8 8
          "type": "object",
9 9
          "required": [
10 10
            "arbiterDid",
11 11
            "spaceKey"
12 12
          ],
13 13
          "properties": {
14 14
            "spaceKey": {
15 15
              "type": "string",
16 -
              "format": "did"
16 +
              "maxLength": 1024,
17 +
              "description": "The space key of the space to delete."
17 18
            },
18 19
            "arbiterDid": {
19 20
              "type": "string",
20 -
              "format": "did"
21 +
              "format": "did",
22 +
              "description": "The DID of the arbiter to delete the space from."
23 +
            },
24 +
            "resolverDepth": {
25 +
              "type": "integer",
26 +
              "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."
21 27
            }
22 28
          }
23 29
        },
24 30
        "encoding": "application/json"
25 31
      },
26 32
      "errors": [
27 33
        {
28 34
          "name": "ErrPermissionDenied",
29 35
          "description": "The requesting user is not allowed to make the request."
36 +
        },
37 +
        {
38 +
          "name": "ErrSpaceNotExists",
39 +
          "description": "The specified space does not exist on this arbiter."
30 40
        }
31 41
      ],
42 +
      "output": {
43 +
        "schema": {
44 +
          "refs": [],
45 +
          "type": "union"
46 +
        },
47 +
        "encoding": "application/json"
48 +
      },
32 49
      "description": "Delete a space from the arbiter."
33 50
    }
34 51
  },
35 52
  "$type": "com.atproto.lexicon.schema",
36 53
  "lexicon": 1
37 54
}

Compare Other Versions

Lexicon Garden

@