games.gamesgamesgamesgames.migrateClaim

lexicon.store View official

Documentation

Execute migration of game records based on an approved claim.

main procedure

Execute migration of game records based on an approved claim.

Input

Encodingapplication/json
claim stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

claimReview stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Output

Encodingapplication/json
results array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "claim",
        "claimReview"
      ],
      "properties": {
        "claim": {
          "type": "string",
          "format": "at-uri"
        },
        "claimReview": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "results"
      ],
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "ref": "#migrationResult",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Execute migration of game records based on an approved claim."
}
migrationResult object

No description available.

Properties

error string Optional

No description available.

gameUri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

newUri string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

status string Required

No description available.

Known values: success, failed, skipped
View raw schema
{
  "type": "object",
  "required": [
    "gameUri",
    "status"
  ],
  "properties": {
    "error": {
      "type": "string"
    },
    "newUri": {
      "type": "string",
      "format": "at-uri"
    },
    "status": {
      "type": "string",
      "knownValues": [
        "success",
        "failed",
        "skipped"
      ]
    },
    "gameUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}

Lexicon Garden

@