{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MoveFolderRequest",
"title": "MoveFolderRequest",
"type": "object",
"description": "Request message for moving a folder.",
"properties": {
"destinationParent": {
"type": "string",
"description": "The resource name of the folder or organization which should be the new parent of the folder.",
"examples": [
"folders/654321",
"organizations/987654321"
]
}
},
"required": [
"destinationParent"
]
}