OBJECT

AssetFileData

A structured containing metadata about an asset file.

link GraphQL Schema definition

1type AssetFileData {
2
3# The MD5 checksum of the file if set during asset creation
4md5sum: String
5
6# The SHA256 hash of the file if set during asset creation
7sha256: String
8
9# The file size in bytes
10size: BigInt
11
12# Original file URI, if provided on asset creation
13originalFileUri: String
14
15# Media duration in milliseconds
16mediaDurationMs: Int
17
18}