Cloudinary · Schema

UploadRequest

Asset ManagementDigital Asset ManagementImage ProcessingImage TransformationMediaSaaSVideo Processing

Properties

Name Type Description
file string File data, URL, or base64 encoded payload.
public_id string
timestamp integer
signature string
api_key string
View JSON Schema on GitHub

JSON Schema

cloudinary-uploadrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadRequest",
  "title": "UploadRequest",
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "description": "File data, URL, or base64 encoded payload."
    },
    "public_id": {
      "type": "string"
    },
    "timestamp": {
      "type": "integer"
    },
    "signature": {
      "type": "string"
    },
    "api_key": {
      "type": "string"
    }
  },
  "additionalProperties": true
}