Payload schema
pathstring[]
The mount point to revoke, as path segments.
providedAtOffsetintegeroptional
Revoke only the exact mount created at this offset; if the path has been re-mounted since, the revoke reduces to a no-op instead of tearing down the newer mount.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"path": {
"type": "array",
"items": {
"type": "string"
},
"description": "The mount point to revoke, as path segments."
},
"providedAtOffset": {
"description": "Revoke only the exact mount created at this offset; if the path has been re-mounted since, the revoke reduces to a no-op instead of tearing down the newer mount.",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"path"
],
"additionalProperties": false
}