OBJECT

ExportFormat

link GraphQL Schema definition

1type ExportFormat {
2
3# The file format/extension i.e. ttml, vlf, etc.
4format: String!
5
6# A human readable label for the file format i.e. "Time Text Markup Language"
7label: String!
8
9# A list types to categories the file format by i.e. "subtitle"
10types: [String]!
11
12}