Google Drive · Schema

FileList

A list of files returned from the files.list endpoint.

Cloud StorageCollaborationDocument ManagementDriveFilesGoogleStorage

Properties

Name Type Description
nextPageToken string Token to retrieve the next page of results.
files array The list of files.
View JSON Schema on GitHub

JSON Schema

google-drive-filelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileList",
  "title": "FileList",
  "type": "object",
  "description": "A list of files returned from the files.list endpoint.",
  "properties": {
    "nextPageToken": {
      "type": "string",
      "description": "Token to retrieve the next page of results."
    },
    "files": {
      "type": "array",
      "description": "The list of files.",
      "items": {
        "$ref": "#/components/schemas/File"
      }
    }
  }
}