Submit a new community contribution proposing changes to an entity or a new game.
Input
Encoding
application/jsonchanges
unknown
Required
A partial object with only changed fields.
contributionType
string
Required
No description available.
message
string
Optional
No description available.
maxGraphemes: 3000 graphemesrkey
string
Optional
Optional record key. When provided, the contribution is created with this rkey instead of an auto-generated one.
subject
stringat-uri
Optional
The entity being modified. Required for corrections and additions.
Output
Encoding
application/jsonuri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
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": [
"contributionType",
"changes"
],
"properties": {
"rkey": {
"type": "string",
"description": "Optional record key. When provided, the contribution is created with this rkey instead of an auto-generated one."
},
"changes": {
"type": "unknown",
"description": "A partial object with only changed fields."
},
"message": {
"type": "string",
"maxGraphemes": 3000
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "The entity being modified. Required for corrections and additions."
},
"contributionType": {
"type": "string",
"knownValues": [
"correction",
"addition",
"newGame"
]
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Submit a new community contribution proposing changes to an entity or a new game."
}