Commits
Tim Donohue authored and GitHub committed f7ce1a5391a Merge
22 22 | sizeBytes: number; |
23 23 | ​ |
24 24 | /** |
25 25 | * The file check sum |
26 26 | */ |
27 27 | checkSum: { |
28 28 | checkSumAlgorithm: string; |
29 29 | value: string; |
30 30 | }; |
31 31 | ​ |
32 + | /** |
33 + | * The file format information |
34 + | */ |
35 + | format: { |
36 + | shortDescription: string, |
37 + | description: string, |
38 + | mimetype: string, |
39 + | supportLevel: string, |
40 + | internal: boolean, |
41 + | type: string |
42 + | }; |
43 + | ​ |
32 44 | /** |
33 45 | * The file url |
34 46 | */ |
35 47 | url: string; |
36 48 | ​ |
37 49 | /** |
38 50 | * The file thumbnail url |
39 51 | */ |
40 52 | thumbnail: string; |
41 53 | ​ |