Share feedback
Answers are generated based on the documentation.

Experimental

Schema

FilesMoveRequest

Type: object

MoveRequest moves or renames a path.
from · required

Type: string

from is the source path.
All schema constraints and annotations
{
  "description": "from is the source path.",
  "minLength": 1,
  "type": "string"
}
to · required

Type: string

to is the exact destination path.
All schema constraints and annotations
{
  "description": "to is the exact destination path.",
  "minLength": 1,
  "type": "string"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "MoveRequest moves or renames a path.",
  "properties": {
    "from": {
      "description": "from is the source path.",
      "minLength": 1,
      "type": "string"
    },
    "to": {
      "description": "to is the exact destination path.",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "from",
    "to"
  ],
  "title": "MoveRequest",
  "type": "object"
}