Schedule a moderation action to be executed at a future time
Input
application/jsonaction
union
Required
No description available.
createdBy
stringdid
Required
A decentralized identifier (DID).
modTool
reftools.ozone.moderation.defs#modTool
Optional
This will be propagated to the moderation event when it is applied
scheduling
ref#schedulingConfig
Required
No description available.
subjects
array
Required
Array of DID subjects to schedule the action for
maxLength: 100 itemsOutput
application/jsonTry 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": [
"action",
"subjects",
"createdBy",
"scheduling"
],
"properties": {
"action": {
"refs": [
"#takedown"
],
"type": "union"
},
"modTool": {
"ref": "tools.ozone.moderation.defs#modTool",
"type": "ref",
"description": "This will be propagated to the moderation event when it is applied"
},
"subjects": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 100,
"description": "Array of DID subjects to schedule the action for"
},
"createdBy": {
"type": "string",
"format": "did"
},
"scheduling": {
"ref": "#schedulingConfig",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "#scheduledActionResults",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Schedule a moderation action to be executed at a future time"
}