Cloudinary · Schema

Asset

Asset ManagementDigital Asset ManagementImage ProcessingImage TransformationMediaSaaSVideo Processing

Properties

Name Type Description
asset_id string
public_id string
version integer
format string
resource_type string
secure_url string
View JSON Schema on GitHub

JSON Schema

cloudinary-asset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Asset",
  "title": "Asset",
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "string"
    },
    "public_id": {
      "type": "string"
    },
    "version": {
      "type": "integer"
    },
    "format": {
      "type": "string"
    },
    "resource_type": {
      "type": "string"
    },
    "secure_url": {
      "type": "string",
      "format": "uri"
    }
  },
  "additionalProperties": true
}