images/ folder of screenshots. The markdown references images by filename.
Discriminant
type: "bucket"
Minimal config
bucket_name(string): Destination bucket.prefix(string): Folder prefix under which results are written.
images(object): Map of image ids to{ bucket, key }pointers.markdown_delivery(object):{ bucket, key }pointer for the markdown file.
Going deeper
- For programmatic consumption, use the
bucketandkeyfrom each pointer to construct full S3 URLs. - When checking job status, you can exclude inline markdown to reduce payload size using the SDK:
- TypeScript:
client.getJobStatus(jobId, { excludeMarkdown: true }) - Python:
client.get_job_status(job_id, exclude_markdown=True)
- TypeScript: