FileInfo

  • The JSON representation of a file includes the MIME type, size in bytes, file name, and URI.

  • The mimeType field specifies the file's MIME type.

  • The fileSizeBytes field indicates the file's size in bytes.

  • The fileName field provides the name of the file.

  • The fileUri field contains the URI of the file.

Information about a file sent from a user to the agent.

JSON representation
{
  "mimeType": string,
  "fileSizeBytes": integer,
  "fileName": string,
  "fileUri": string
}
Fields
mimeType

string

MIME type of the file.

fileSizeBytes

integer

Size of file (in bytes).

fileName

string

Name of the file.

fileUri

string

URI of the file.