Skip to main content

Files

Specification

{
"name": "<String>"",
"installedFileName": "<String>",
"extension": "<String>",
"description": "<String>",
"mimeType": "<String>"
}

Structure values

Field NameTypeDescriptionRequiredDefault
nameStringMetadata reference name. The name to use when referring to the file in other metadata commands.Required
installedFileNameStringThe name of the file when it is installed on a cluster. Useful for some files (e.g. wheels) that are required to have a specific name for installation purposes.OptionalFalls back to the name field if not provided by the user.
extensionStringThe file extensionRequired
descriptionStringDescription of the fileOptionalNone
mimeTypeStringMIME type of the fileOptionalNone

Example

{
"name": "bootstrap-deps",
"installedFileName": "pandas-2.1.0-py3-none-any.whl",
"extension": "whl",
"description": "Custom pandas wheel to be installed on cluster startup",
"mimeType": "application/octet-stream"
}