FolderInfo
FolderInfo contains metadata about a folder
Usage profiles
| Usage | Fields and validation |
|---|---|
| In responses | View fields |
In responses
API JSON uses JSON field names (camelCase).
| Field | Type | Presence | Meaning |
|---|---|---|---|
folderId | string | Optional | Unique folder ID. |
name | string | Optional | Name of the folder within its parent folder. |
path | string | Optional | Full path (e.g., "/documents/work"). |
parentPath | string | Optional | Parent folder path. |
createdAt | string | Optional | RFC3339 timestamp. |
modifiedAt | string | Optional | RFC3339 timestamp. |
metadata | Map from string to string | Optional | Custom metadata. |
fileCount | integer (int32) | Optional | Number of files (direct children). Minimum: -2147483648. Maximum: 2147483647. |
subfolderCount | integer (int32) | Optional | Number of subfolders. Minimum: -2147483648. Maximum: 2147483647. |
totalSizeBytes | string (int64) | Optional | Total size of all files in folder (recursive). Pattern: ^-?\d+$. |
Where used
| Reference | Relationship |
|---|---|
| Create a new folder | POST /api/v1/storage/create-folder |
| Get storage state | POST /api/v1/storage/get-state |
| List files and folders in a directory | POST /api/v1/storage/list-files |
| StorageManagerState | Nested in model |
Download the public reference contract.
Document: DOC-API-MODEL-folder-info.