{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StorageFile", "title": "StorageFile", "properties": { "created_at": { "format": "date-time", "type": "string" }, "data": { "type": "string" }, "description": { "type": "string" }, "download_url": { "type": "string" }, "hash": { "type": "string" }, "id": { "type": "string" }, "mime_type": { "type": "string" }, "name": { "type": "string" }, "parent_id": { "type": "string" }, "permissions": { "$ref": "#/components/schemas/property_StorageFile_permissions" }, "raw": { "additionalProperties": true, "type": "object" }, "references": { "$ref": "#/components/schemas/property_StorageFile_references" }, "size": { "type": "number" }, "type": { "enum": [ "FILE", "FOLDER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" }, "user_id": { "type": "string" }, "version": { "type": "string" }, "web_url": { "type": "string" } }, "type": "object" }