Experimental
Schema
FileHeader
Type:
object
FileHeader starts a file in an upload or download stream.
mode
Type:
integer
mode carries Unix permission bits. Upload applies mode & 0777, or 0644 when
that value is zero, without subtracting umask; Download reports stored bits.
All schema constraints and annotations
{
"description": "mode carries Unix permission bits. Upload applies mode \u0026 0777, or 0644 when\nthat value is zero, without subtracting umask; Download reports stored bits.",
"type": "integer"
}path
· required
Type:
string
path is the sandbox path.
All schema constraints and annotations
{
"description": "path is the sandbox path.",
"minLength": 1,
"type": "string"
}All schema constraints and annotations
{
"additionalProperties": false,
"description": "FileHeader starts a file in an upload or download stream.",
"properties": {
"mode": {
"description": "mode carries Unix permission bits. Upload applies mode \u0026 0777, or 0644 when\nthat value is zero, without subtracting umask; Download reports stored bits.",
"type": "integer"
},
"path": {
"description": "path is the sandbox path.",
"minLength": 1,
"type": "string"
}
},
"required": [
"path"
],
"title": "FileHeader",
"type": "object"
}