Cloudflare · Schema

Image

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
id string The unique identifier of the image.
filename string Original filename.
metadata object User-defined metadata.
uploaded string Upload timestamp.
requireSignedURLs boolean
variants array URLs for each variant of the image.
View JSON Schema on GitHub

JSON Schema

cloudflare-images-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Image",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the image."
    },
    "filename": {
      "type": "string",
      "description": "Original filename."
    },
    "metadata": {
      "type": "object",
      "description": "User-defined metadata."
    },
    "uploaded": {
      "type": "string",
      "description": "Upload timestamp."
    },
    "requireSignedURLs": {
      "type": "boolean"
    },
    "variants": {
      "type": "array",
      "description": "URLs for each variant of the image."
    }
  }
}