Payload schema
keystring
The entry to remove.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "The entry to remove."
}
},
"required": [
"key"
],
"additionalProperties": false
}