Properties
NAME | TYPE | DESCRIPTION |
$id | string | Bucket ID. |
$createdAt | string | Bucket creation time in ISO 8601 format. |
$updatedAt | string | Bucket update date in ISO 8601 format. |
$permissions | array | Bucket permissions. Learn more about permissions. |
fileSecurity | boolean | Whether file-level security is enabled. Learn more about permissions. |
name | string | Bucket name. |
enabled | boolean | Bucket enabled. |
maximumFileSize | integer | Maximum file size supported. |
allowedFileExtensions | array | Allowed file extensions. |
compression | string | |
encryption | boolean | Bucket is encrypted. |
antivirus | boolean | Virus scanning is enabled. |
Example
JSON
{
"$id": "5e5ea5c16897e",
"$createdAt": "2020-10-15T06:38:00.000+00:00",
"$updatedAt": "2020-10-15T06:38:00.000+00:00",
"$permissions": [
"read(\"any\")"
],
"fileSecurity": true,
"name": "Documents",
"enabled": false,
"maximumFileSize": 100,
"allowedFileExtensions": [
"jpg",
"png"
],
"compression": "gzip",
"encryption": false,
"antivirus": false
}
JSON
{
"_id": "5e5ea5c16897e",
"_createdAt": "2020-10-15T06:38:00.000+00:00",
"_updatedAt": "2020-10-15T06:38:00.000+00:00",
"_permissions": [
"read(\"any\")"
],
"fileSecurity": true,
"name": "Documents",
"enabled": false,
"maximumFileSize": 100,
"allowedFileExtensions": [
"jpg",
"png"
],
"compression": "gzip",
"encryption": false,
"antivirus": false
}