Execute migration of game records based on an approved claim.
Input
application/jsonclaim
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
application/jsonresults
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
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."
}