Unified.to · Schema

StorageFile

IntegrationsUnified API

Properties

Name Type Description
created_at string
data string
description string
download_url string
hash string
id string
mime_type string
name string
parent_id string
permissions object
raw object
references object
size number
type string
updated_at string
user_id string
version string
web_url string
View JSON Schema on GitHub

JSON Schema

unified-to-storagefile-schema.json Raw ↑
{
  "$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"
}