{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssetDownloadResponse", "title": "AssetDownloadResponse", "type": "object", "properties": { "assetID": { "type": "string", "description": "The unique identifier of the asset.", "example": "500123" }, "downloadUri": { "type": "string", "format": "uri", "description": "The pre-signed URI to download the asset. Valid for a limited time.", "example": "https://www.example.com" } } }