update_faq
Update an existing FAQ entry by ID.
Schema and Policy
{
"name": "update_faq",
"description": "Update an existing FAQ entry by ID.",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "FAQ ID"
},
"question": {
"type": "string"
},
"answer": {
"type": "string"
},
"category": {
"type": "string"
},
"order": {
"type": "number"
}
},
"required": [
"id"
]
},
"category": "FAQ",
"authRequired": true,
"mutability": "write",
"status": "auth_required"
}