Payload schema
The operation.
The section to rewrite, or "*" (delete only) for everything.
Replacement content (replace only).
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"op": {
"type": "string",
"enum": [
"replace",
"delete"
],
"description": "The operation."
},
"key": {
"type": "string",
"minLength": 1,
"description": "The section to rewrite, or \"*\" (delete only) for everything."
},
"content": {
"description": "Replacement content (replace only).",
"type": "string"
}
},
"required": [
"op",
"key"
],
"additionalProperties": false
}