{
"$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."
}
}
}