{ "$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." } } }