Box · Schema

File Request (Copy)

The request body to copy a file request.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-filerequestcopyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileRequestCopyRequest",
  "title": "File Request (Copy)",
  "type": "object",
  "description": "The request body to copy a file request.",
  "required": [
    "folder"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/FileRequestUpdateRequest"
    },
    {
      "properties": {
        "folder": {
          "type": "object",
          "description": "The folder to associate the new file request to.",
          "required": [
            "id"
          ],
          "properties": {
            "type": {
              "type": "string",
              "example": "folder",
              "description": "`folder`",
              "enum": [
                "folder"
              ]
            },
            "id": {
              "type": "string",
              "example": "42037322",
              "description": "The ID of the folder to associate the new\nfile request to."
            }
          }
        }
      }
    }
  ]
}