Share feedback
Answers are generated based on the documentation.

Experimental

Schema

FilesReadFileResponse

Type: object

ReadFileResponse carries the whole file; HTTP selects data as its raw response body.
data

Type: string

data is the complete content; a file above the message cap is refused.
All schema constraints and annotations
{
  "description": "data is the complete content; a file above the message cap is refused.",
  "format": "byte",
  "type": "string"
}
info · required

Schema: FileInfo

info remains available to the internal adapter; HTTP clients use Stat for metadata.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/FileInfo",
  "description": "info remains available to the internal adapter; HTTP clients use Stat for metadata."
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "ReadFileResponse carries the whole file; HTTP selects data as its raw response body.",
  "properties": {
    "data": {
      "description": "data is the complete content; a file above the message cap is refused.",
      "format": "byte",
      "type": "string"
    },
    "info": {
      "$ref": "#/components/schemas/FileInfo",
      "description": "info remains available to the internal adapter; HTTP clients use Stat for metadata."
    }
  },
  "required": [
    "info"
  ],
  "title": "ReadFileResponse",
  "type": "object"
}