dev.cartridge.createVerificationRequest

cartridge.dev

Schema Diff

+3 -1

From

CID
bafyreifx7rdhee7...
Indexed At
2026-06-14 00:05 UTC
View this version

To

CID
bafyreicyakinkgk...
Indexed At
2026-07-16 17:54 UTC
View this version

Compatibility Analysis

Breaking Changes Detected

2 breaking changes, 0 non-breaking changes.

Breaking Changes (2)
  • ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createVerificationRequest:input.accountType", sort: "maxLength", value: "64" }
  • ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createVerificationRequest:output.id", sort: "maxLength", value: "128" }

Migration Guidance

Constraint Changes

  • ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createVerificationRequest:output.id", sort: "maxLength", value: "128" }
  • ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.createVerificationRequest:input.accountType", sort: "maxLength", value: "64" }
1 1
{
2 2
  "id": "dev.cartridge.createVerificationRequest",
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
            "accountType",
11 11
            "message",
12 12
            "contact"
13 13
          ],
14 14
          "properties": {
15 15
            "contact": {
16 16
              "type": "string",
17 17
              "maxGraphemes": 500
18 18
            },
19 19
            "message": {
20 20
              "type": "string",
21 21
              "maxGraphemes": 3000
22 22
            },
23 23
            "accountType": {
24 24
              "type": "string",
25 +
              "maxLength": 64,
25 26
              "knownValues": [
26 27
                "studio",
27 28
                "developer",
28 29
                "publisher"
29 30
              ]
30 31
            }
31 32
          }
32 33
        },
33 34
        "encoding": "application/json"
34 35
      },
35 36
      "output": {
36 37
        "schema": {
37 38
          "type": "object",
38 39
          "required": [
39 40
            "id"
40 41
          ],
41 42
          "properties": {
42 43
            "id": {
43 -
              "type": "string"
44 +
              "type": "string",
45 +
              "maxLength": 128
44 46
            }
45 47
          }
46 48
        },
47 49
        "encoding": "application/json"
48 50
      },
49 51
      "description": "Submit a verification request to flag your account as a studio, developer, or publisher."
50 52
    }
51 53
  },
52 54
  "$type": "com.atproto.lexicon.schema",
53 55
  "lexicon": 1
54 56
}

Compare Other Versions

Lexicon Garden

@