Snowflake · Schema

StageFile

A file on a snowflake stage.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Name of the file.
size string Size of the file.
md5 string md5 hash of the file.
last_modified string Date and time when the file was last modified.
View JSON Schema on GitHub

JSON Schema

stage-stage-file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StageFile",
  "type": "object",
  "description": "A file on a snowflake stage.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the file."
    },
    "size": {
      "type": "string",
      "description": "Size of the file."
    },
    "md5": {
      "type": "string",
      "description": "md5 hash of the file."
    },
    "last_modified": {
      "type": "string",
      "description": "Date and time when the file was last modified."
    }
  }
}