{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskRunArtifactPresignResponse", "title": "TaskRunArtifactPresignResponse", "type": "object", "properties": { "url": { "type": "string", "format": "uri", "description": "Presigned URL for downloading the artifact" }, "expires_in": { "type": "integer", "description": "URL expiry in seconds" } }, "required": [ "expires_in", "url" ] }