discourse/spec/requests/api/schemas/json/post_lock_response.json
Blake Erickson 57bec16515
DEV: Update api-docs for posts locked endpoint (#35453)
This commit updates the `/posts/{id}/locked.json` api endpoint docs to
match the new json schema format.
2025-10-16 12:56:34 -06:00

12 lines
No EOL
210 B
JSON
Vendored

{
"type": "object",
"properties": {
"locked": {
"type": "boolean",
"description": "Whether the post is locked"
}
},
"required": [
"locked"
]
}