Share feedback
Answers are generated based on the documentation.

Experimental

Schema

FilesDownloadRequest

Type: object

DownloadRequest asks for one or more paths.
paths · required

Type: array

paths naming stable regular files or absent entries at canonical absolute paths yield contiguous results in request order, including duplicates.
Array item

Type: string

All schema constraints and annotations
{
  "type": "string"
}
All schema constraints and annotations
{
  "description": "paths naming stable regular files or absent entries at canonical absolute paths\nyield contiguous results in request order, including duplicates.",
  "items": {
    "type": "string"
  },
  "minItems": 1,
  "type": "array"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "DownloadRequest asks for one or more paths.",
  "properties": {
    "paths": {
      "description": "paths naming stable regular files or absent entries at canonical absolute paths\nyield contiguous results in request order, including duplicates.",
      "items": {
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "paths"
  ],
  "title": "DownloadRequest",
  "type": "object"
}