@financial-times/cp-content-pipeline-schema 2.9.2 → 2.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/lib/datasources/capi.d.ts +1 -0
  3. package/lib/datasources/capi.js +10 -0
  4. package/lib/datasources/capi.js.map +1 -1
  5. package/lib/generated/index.d.ts +87 -2
  6. package/lib/model/CapiResponse.d.ts +6 -0
  7. package/lib/model/CapiResponse.js +5 -0
  8. package/lib/model/CapiResponse.js.map +1 -1
  9. package/lib/model/FlourishSource.d.ts +22 -0
  10. package/lib/model/FlourishSource.js +89 -0
  11. package/lib/model/FlourishSource.js.map +1 -0
  12. package/lib/model/FlourishSource.test.d.ts +1 -0
  13. package/lib/model/FlourishSource.test.js +67 -0
  14. package/lib/model/FlourishSource.test.js.map +1 -0
  15. package/lib/model/LeadFlourish.d.ts +13 -0
  16. package/lib/model/LeadFlourish.js +35 -0
  17. package/lib/model/LeadFlourish.js.map +1 -0
  18. package/lib/model/LeadFlourish.test.d.ts +1 -0
  19. package/lib/model/LeadFlourish.test.js +62 -0
  20. package/lib/model/LeadFlourish.test.js.map +1 -0
  21. package/lib/model/Topper.d.ts +4 -1
  22. package/lib/model/Topper.js +15 -0
  23. package/lib/model/Topper.js.map +1 -1
  24. package/lib/model/Topper.test.js +21 -0
  25. package/lib/model/Topper.test.js.map +1 -1
  26. package/lib/model/schemas/capi/article.d.ts +153 -60
  27. package/lib/model/schemas/capi/article.js +1 -0
  28. package/lib/model/schemas/capi/article.js.map +1 -1
  29. package/lib/model/schemas/capi/audio.d.ts +1111 -119
  30. package/lib/model/schemas/capi/base-schema.d.ts +166 -99
  31. package/lib/model/schemas/capi/base-schema.js +8 -1
  32. package/lib/model/schemas/capi/base-schema.js.map +1 -1
  33. package/lib/model/schemas/capi/content-package.d.ts +836 -46
  34. package/lib/model/schemas/capi/content-package.js +1 -1
  35. package/lib/model/schemas/capi/content-package.js.map +1 -1
  36. package/lib/model/schemas/capi/live-blog-package.d.ts +230 -65
  37. package/lib/model/schemas/capi/live-blog-package.js +0 -1
  38. package/lib/model/schemas/capi/live-blog-package.js.map +1 -1
  39. package/lib/model/schemas/capi/placeholder.d.ts +143 -60
  40. package/lib/resolvers/content-tree/references/Flourish.d.ts +8 -2
  41. package/lib/resolvers/content-tree/references/Flourish.js +15 -40
  42. package/lib/resolvers/content-tree/references/Flourish.js.map +1 -1
  43. package/lib/resolvers/content-tree/references/Flourish.test.js +0 -30
  44. package/lib/resolvers/content-tree/references/Flourish.test.js.map +1 -1
  45. package/lib/resolvers/index.d.ts +36 -9
  46. package/lib/resolvers/index.js +2 -0
  47. package/lib/resolvers/index.js.map +1 -1
  48. package/lib/resolvers/leadFlourish.d.ts +16 -0
  49. package/lib/resolvers/leadFlourish.js +28 -0
  50. package/lib/resolvers/leadFlourish.js.map +1 -0
  51. package/lib/resolvers/topper.d.ts +23 -9
  52. package/lib/resolvers/topper.js +6 -0
  53. package/lib/resolvers/topper.js.map +1 -1
  54. package/package.json +1 -1
  55. package/queries/article.graphql +26 -0
  56. package/src/datasources/capi.ts +14 -0
  57. package/src/generated/index.ts +93 -2
  58. package/src/model/CapiResponse.ts +6 -0
  59. package/src/model/FlourishSource.test.ts +93 -0
  60. package/src/model/FlourishSource.ts +103 -0
  61. package/src/model/LeadFlourish.test.ts +71 -0
  62. package/src/model/LeadFlourish.ts +30 -0
  63. package/src/model/Topper.test.ts +26 -0
  64. package/src/model/Topper.ts +18 -0
  65. package/src/model/schemas/capi/article.ts +1 -0
  66. package/src/model/schemas/capi/base-schema.ts +8 -0
  67. package/src/model/schemas/capi/content-package.ts +1 -1
  68. package/src/model/schemas/capi/live-blog-package.ts +0 -1
  69. package/src/resolvers/content-tree/references/Flourish.test.ts +2 -49
  70. package/src/resolvers/content-tree/references/Flourish.ts +15 -59
  71. package/src/resolvers/index.ts +2 -0
  72. package/src/resolvers/leadFlourish.ts +31 -0
  73. package/src/resolvers/topper.ts +10 -0
  74. package/src/types/internal-content.d.ts +2 -0
  75. package/tsconfig.tsbuildinfo +1 -1
  76. package/typedefs/leadFlouish.graphql +29 -0
  77. package/typedefs/topper.graphql +35 -0
@@ -1,9 +1,50 @@
1
- export declare const audioSchema: import("zod").ZodObject<{
2
- id: import("zod").ZodString;
3
- types: import("zod").ZodArray<import("zod").ZodString, "many">;
1
+ export declare const audioSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<Pick<{
4
2
  title: import("zod").ZodString;
5
- publishedDate: import("zod").ZodString;
6
- annotations: import("zod").ZodArray<import("zod").ZodObject<{
3
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
4
+ byline: import("zod").ZodOptional<import("zod").ZodString>;
5
+ bodyXML: import("zod").ZodString;
6
+ summary: import("zod").ZodObject<{
7
+ bodyXML: import("zod").ZodString;
8
+ }, "strip", import("zod").ZodTypeAny, {
9
+ bodyXML: string;
10
+ }, {
11
+ bodyXML: string;
12
+ }>;
13
+ alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
14
+ promotionalTitle: import("zod").ZodString;
15
+ }, "strip", import("zod").ZodTypeAny, {
16
+ promotionalTitle: string;
17
+ }, {
18
+ promotionalTitle: string;
19
+ }>>;
20
+ alternativeStandfirsts: import("zod").ZodOptional<import("zod").ZodObject<{
21
+ promotionalStandfirst: import("zod").ZodOptional<import("zod").ZodString>;
22
+ }, "strip", import("zod").ZodTypeAny, {
23
+ promotionalStandfirst?: string | undefined;
24
+ }, {
25
+ promotionalStandfirst?: string | undefined;
26
+ }>>;
27
+ pinnedPosts: import("zod").ZodArray<import("zod").ZodString, "many">;
28
+ contains: import("zod").ZodArray<import("zod").ZodObject<{
29
+ id: import("zod").ZodString;
30
+ apiUrl: import("zod").ZodString;
31
+ }, "strip", import("zod").ZodTypeAny, {
32
+ id: string;
33
+ apiUrl: string;
34
+ }, {
35
+ id: string;
36
+ apiUrl: string;
37
+ }>, "many">;
38
+ design: import("zod").ZodObject<{
39
+ theme: import("zod").ZodUnion<[import("zod").ZodLiteral<"special-report">, import("zod").ZodLiteral<"extra">, import("zod").ZodLiteral<"basic">, import("zod").ZodLiteral<"extra-wide">]>;
40
+ }, "strip", import("zod").ZodTypeAny, {
41
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
42
+ }, {
43
+ theme: "special-report" | "extra" | "basic" | "extra-wide";
44
+ }>;
45
+ }, "title" | "byline" | "alternativeTitles">, Pick<{
46
+ id: import("zod").ZodString;
47
+ annotations: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
7
48
  id: import("zod").ZodString;
8
49
  apiUrl: import("zod").ZodString;
9
50
  directType: import("zod").ZodString;
@@ -11,8 +52,9 @@ export declare const audioSchema: import("zod").ZodObject<{
11
52
  type: import("zod").ZodOptional<import("zod").ZodString>;
12
53
  types: import("zod").ZodArray<import("zod").ZodString, "many">;
13
54
  headshot: import("zod").ZodOptional<import("zod").ZodString>;
55
+ }, {
14
56
  predicate: import("zod").ZodString;
15
- }, "strip", import("zod").ZodTypeAny, {
57
+ }>, "strip", import("zod").ZodTypeAny, {
16
58
  id: string;
17
59
  apiUrl: string;
18
60
  directType: string;
@@ -33,35 +75,81 @@ export declare const audioSchema: import("zod").ZodObject<{
33
75
  }>, "many">;
34
76
  webUrl: import("zod").ZodOptional<import("zod").ZodString>;
35
77
  canonicalWebUrl: import("zod").ZodOptional<import("zod").ZodString>;
78
+ type: import("zod").ZodOptional<import("zod").ZodString>;
79
+ types: import("zod").ZodArray<import("zod").ZodString, "many">;
80
+ standout: import("zod").ZodOptional<import("zod").ZodObject<{
81
+ editorsChoice: import("zod").ZodBoolean;
82
+ exclusive: import("zod").ZodBoolean;
83
+ scoop: import("zod").ZodBoolean;
84
+ }, "strip", import("zod").ZodTypeAny, {
85
+ editorsChoice: boolean;
86
+ exclusive: boolean;
87
+ scoop: boolean;
88
+ }, {
89
+ editorsChoice: boolean;
90
+ exclusive: boolean;
91
+ scoop: boolean;
92
+ }>>;
93
+ publishedDate: import("zod").ZodString;
36
94
  firstPublishedDate: import("zod").ZodString;
95
+ realtime: import("zod").ZodBoolean;
37
96
  editorialDesk: import("zod").ZodOptional<import("zod").ZodString>;
38
97
  accessLevel: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"premium">, import("zod").ZodLiteral<"subscribed">, import("zod").ZodLiteral<"registered">, import("zod").ZodLiteral<"free">]>>;
39
98
  canBeSyndicated: import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">, import("zod").ZodLiteral<"withContributorPayment">, import("zod").ZodLiteral<"unknown">]>;
40
99
  canBeDistributed: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"yes">, import("zod").ZodLiteral<"no">, import("zod").ZodLiteral<"verify">]>>;
41
- byline: import("zod").ZodOptional<import("zod").ZodString>;
42
- alternativeTitles: import("zod").ZodOptional<import("zod").ZodObject<{
43
- promotionalTitle: import("zod").ZodString;
100
+ topper: import("zod").ZodOptional<import("zod").ZodObject<{
101
+ headline: import("zod").ZodOptional<import("zod").ZodString>;
102
+ standfirst: import("zod").ZodOptional<import("zod").ZodString>;
103
+ backgroundColour: import("zod").ZodString;
104
+ backgroundBox: import("zod").ZodOptional<import("zod").ZodBoolean>;
105
+ textShadow: import("zod").ZodOptional<import("zod").ZodBoolean>;
106
+ layout: import("zod").ZodString;
107
+ layoutWidth: import("zod").ZodOptional<import("zod").ZodString>;
44
108
  }, "strip", import("zod").ZodTypeAny, {
45
- promotionalTitle: string;
109
+ backgroundColour: string;
110
+ layout: string;
111
+ headline?: string | undefined;
112
+ standfirst?: string | undefined;
113
+ backgroundBox?: boolean | undefined;
114
+ textShadow?: boolean | undefined;
115
+ layoutWidth?: string | undefined;
46
116
  }, {
47
- promotionalTitle: string;
117
+ backgroundColour: string;
118
+ layout: string;
119
+ headline?: string | undefined;
120
+ standfirst?: string | undefined;
121
+ backgroundBox?: boolean | undefined;
122
+ textShadow?: boolean | undefined;
123
+ layoutWidth?: string | undefined;
48
124
  }>>;
49
- dataSource: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
50
- binaryUrl: import("zod").ZodString;
51
- duration: import("zod").ZodNumber;
52
- filesize: import("zod").ZodNumber;
53
- mediaType: import("zod").ZodString;
125
+ comments: import("zod").ZodOptional<import("zod").ZodObject<{
126
+ enabled: import("zod").ZodBoolean;
54
127
  }, "strip", import("zod").ZodTypeAny, {
55
- binaryUrl: string;
56
- duration: number;
57
- mediaType: string;
58
- filesize: number;
128
+ enabled: boolean;
59
129
  }, {
60
- binaryUrl: string;
61
- duration: number;
62
- mediaType: string;
63
- filesize: number;
130
+ enabled: boolean;
131
+ }>>;
132
+ containedIn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
133
+ apiUrl: import("zod").ZodString;
134
+ id: import("zod").ZodString;
135
+ }, "strip", import("zod").ZodTypeAny, {
136
+ id: string;
137
+ apiUrl: string;
138
+ }, {
139
+ id: string;
140
+ apiUrl: string;
64
141
  }>, "many">>;
142
+ tableOfContents: import("zod").ZodOptional<import("zod").ZodObject<{
143
+ labelType: import("zod").ZodString;
144
+ sequence: import("zod").ZodString;
145
+ }, "strip", import("zod").ZodTypeAny, {
146
+ labelType: string;
147
+ sequence: string;
148
+ }, {
149
+ labelType: string;
150
+ sequence: string;
151
+ }>>;
152
+ }, "id" | "types" | "publishedDate" | "annotations" | "webUrl" | "canonicalWebUrl" | "firstPublishedDate" | "editorialDesk" | "accessLevel" | "canBeSyndicated" | "canBeDistributed">>, Pick<{
65
153
  mainImage: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
66
154
  id: import("zod").ZodString;
67
155
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
@@ -112,8 +200,9 @@ export declare const audioSchema: import("zod").ZodObject<{
112
200
  maxDisplayWidth?: string | undefined;
113
201
  pixelWidth?: number | undefined;
114
202
  pixelHeight?: number | undefined;
115
- }>, import("zod").ZodObject<{
203
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
116
204
  id: import("zod").ZodString;
205
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
117
206
  format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
118
207
  title: import("zod").ZodOptional<import("zod").ZodString>;
119
208
  description: import("zod").ZodOptional<import("zod").ZodString>;
@@ -129,8 +218,9 @@ export declare const audioSchema: import("zod").ZodObject<{
129
218
  maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
130
219
  pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
131
220
  pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
221
+ }, {
132
222
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
133
- }, "strip", import("zod").ZodTypeAny, {
223
+ }>, "strip", import("zod").ZodTypeAny, {
134
224
  id: string;
135
225
  type: "http://www.ft.com/ontology/content/Graphic";
136
226
  binaryUrl: string;
@@ -271,8 +361,9 @@ export declare const audioSchema: import("zod").ZodObject<{
271
361
  maxDisplayWidth?: string | undefined;
272
362
  pixelWidth?: number | undefined;
273
363
  pixelHeight?: number | undefined;
274
- }>, import("zod").ZodObject<{
364
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
275
365
  id: import("zod").ZodString;
366
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
276
367
  format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
277
368
  title: import("zod").ZodOptional<import("zod").ZodString>;
278
369
  description: import("zod").ZodOptional<import("zod").ZodString>;
@@ -288,8 +379,9 @@ export declare const audioSchema: import("zod").ZodObject<{
288
379
  maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
289
380
  pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
290
381
  pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
382
+ }, {
291
383
  type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
292
- }, "strip", import("zod").ZodTypeAny, {
384
+ }>, "strip", import("zod").ZodTypeAny, {
293
385
  id: string;
294
386
  type: "http://www.ft.com/ontology/content/Graphic";
295
387
  binaryUrl: string;
@@ -318,70 +410,108 @@ export declare const audioSchema: import("zod").ZodObject<{
318
410
  pixelWidth?: number | undefined;
319
411
  pixelHeight?: number | undefined;
320
412
  }>]>>;
321
- }, "strip", import("zod").ZodTypeAny, {
322
- id: string;
323
- types: string[];
324
- title: string;
325
- publishedDate: string;
326
- annotations: {
327
- id: string;
328
- apiUrl: string;
329
- directType: string;
330
- prefLabel: string;
331
- types: string[];
332
- predicate: string;
333
- type?: string | undefined;
334
- headshot?: string | undefined;
335
- }[];
336
- firstPublishedDate: string;
337
- canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
338
- webUrl?: string | undefined;
339
- canonicalWebUrl?: string | undefined;
340
- editorialDesk?: string | undefined;
341
- accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
342
- canBeDistributed?: "yes" | "no" | "verify" | undefined;
343
- byline?: string | undefined;
344
- alternativeTitles?: {
345
- promotionalTitle: string;
346
- } | undefined;
347
- dataSource?: {
348
- binaryUrl: string;
349
- duration: number;
350
- mediaType: string;
351
- filesize: number;
352
- }[] | undefined;
353
- mainImage?: {
354
- id: string;
355
- type: "http://www.ft.com/ontology/content/Image";
356
- binaryUrl: string;
357
- format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
358
- title?: string | undefined;
359
- description?: string | undefined;
360
- copyright?: {
361
- notice: string;
362
- } | undefined;
363
- minDisplayWidth?: string | undefined;
364
- maxDisplayWidth?: string | undefined;
365
- pixelWidth?: number | undefined;
366
- pixelHeight?: number | undefined;
367
- } | {
368
- id: string;
369
- type: "http://www.ft.com/ontology/content/Graphic";
370
- binaryUrl: string;
371
- format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
372
- title?: string | undefined;
373
- description?: string | undefined;
374
- copyright?: {
375
- notice: string;
376
- } | undefined;
377
- minDisplayWidth?: string | undefined;
378
- maxDisplayWidth?: string | undefined;
379
- pixelWidth?: number | undefined;
380
- pixelHeight?: number | undefined;
381
- } | {
413
+ leadImages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
414
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>;
415
+ id: import("zod").ZodString;
416
+ image: import("zod").ZodUnion<[import("zod").ZodObject<{
417
+ id: import("zod").ZodString;
418
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
419
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
420
+ title: import("zod").ZodOptional<import("zod").ZodString>;
421
+ description: import("zod").ZodOptional<import("zod").ZodString>;
422
+ binaryUrl: import("zod").ZodString;
423
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
424
+ notice: import("zod").ZodString;
425
+ }, "strip", import("zod").ZodTypeAny, {
426
+ notice: string;
427
+ }, {
428
+ notice: string;
429
+ }>>;
430
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
431
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
432
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
433
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
434
+ }, "strip", import("zod").ZodTypeAny, {
435
+ id: string;
436
+ type: "http://www.ft.com/ontology/content/Image";
437
+ binaryUrl: string;
438
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
439
+ title?: string | undefined;
440
+ description?: string | undefined;
441
+ copyright?: {
442
+ notice: string;
443
+ } | undefined;
444
+ minDisplayWidth?: string | undefined;
445
+ maxDisplayWidth?: string | undefined;
446
+ pixelWidth?: number | undefined;
447
+ pixelHeight?: number | undefined;
448
+ }, {
449
+ id: string;
450
+ type: "http://www.ft.com/ontology/content/Image";
451
+ binaryUrl: string;
452
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
453
+ title?: string | undefined;
454
+ description?: string | undefined;
455
+ copyright?: {
456
+ notice: string;
457
+ } | undefined;
458
+ minDisplayWidth?: string | undefined;
459
+ maxDisplayWidth?: string | undefined;
460
+ pixelWidth?: number | undefined;
461
+ pixelHeight?: number | undefined;
462
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
463
+ id: import("zod").ZodString;
464
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
465
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
466
+ title: import("zod").ZodOptional<import("zod").ZodString>;
467
+ description: import("zod").ZodOptional<import("zod").ZodString>;
468
+ binaryUrl: import("zod").ZodString;
469
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
470
+ notice: import("zod").ZodString;
471
+ }, "strip", import("zod").ZodTypeAny, {
472
+ notice: string;
473
+ }, {
474
+ notice: string;
475
+ }>>;
476
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
477
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
478
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
479
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
480
+ }, {
481
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
482
+ }>, "strip", import("zod").ZodTypeAny, {
483
+ id: string;
484
+ type: "http://www.ft.com/ontology/content/Graphic";
485
+ binaryUrl: string;
486
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
487
+ title?: string | undefined;
488
+ description?: string | undefined;
489
+ copyright?: {
490
+ notice: string;
491
+ } | undefined;
492
+ minDisplayWidth?: string | undefined;
493
+ maxDisplayWidth?: string | undefined;
494
+ pixelWidth?: number | undefined;
495
+ pixelHeight?: number | undefined;
496
+ }, {
497
+ id: string;
498
+ type: "http://www.ft.com/ontology/content/Graphic";
499
+ binaryUrl: string;
500
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
501
+ title?: string | undefined;
502
+ description?: string | undefined;
503
+ copyright?: {
504
+ notice: string;
505
+ } | undefined;
506
+ minDisplayWidth?: string | undefined;
507
+ maxDisplayWidth?: string | undefined;
508
+ pixelWidth?: number | undefined;
509
+ pixelHeight?: number | undefined;
510
+ }>]>;
511
+ }, "strip", import("zod").ZodTypeAny, {
382
512
  id: string;
383
- type: "http://www.ft.com/ontology/content/ImageSet";
384
- members: ({
513
+ type: "standard" | "square" | "wide" | "portrait" | "landscape";
514
+ image: {
385
515
  id: string;
386
516
  type: "http://www.ft.com/ontology/content/Image";
387
517
  binaryUrl: string;
@@ -409,41 +539,903 @@ export declare const audioSchema: import("zod").ZodObject<{
409
539
  maxDisplayWidth?: string | undefined;
410
540
  pixelWidth?: number | undefined;
411
541
  pixelHeight?: number | undefined;
412
- })[];
413
- description?: string | undefined;
414
- } | undefined;
415
- }, {
416
- id: string;
417
- types: string[];
418
- title: string;
419
- publishedDate: string;
420
- annotations: {
542
+ };
543
+ }, {
421
544
  id: string;
422
- apiUrl: string;
423
- directType: string;
424
- prefLabel: string;
425
- types: string[];
426
- predicate: string;
427
- type?: string | undefined;
428
- headshot?: string | undefined;
429
- }[];
430
- firstPublishedDate: string;
431
- canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
432
- webUrl?: string | undefined;
433
- canonicalWebUrl?: string | undefined;
434
- editorialDesk?: string | undefined;
435
- accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
436
- canBeDistributed?: "yes" | "no" | "verify" | undefined;
437
- byline?: string | undefined;
438
- alternativeTitles?: {
439
- promotionalTitle: string;
440
- } | undefined;
545
+ type: "standard" | "square" | "wide" | "portrait" | "landscape";
546
+ image: {
547
+ id: string;
548
+ type: "http://www.ft.com/ontology/content/Image";
549
+ binaryUrl: string;
550
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
551
+ title?: string | undefined;
552
+ description?: string | undefined;
553
+ copyright?: {
554
+ notice: string;
555
+ } | undefined;
556
+ minDisplayWidth?: string | undefined;
557
+ maxDisplayWidth?: string | undefined;
558
+ pixelWidth?: number | undefined;
559
+ pixelHeight?: number | undefined;
560
+ } | {
561
+ id: string;
562
+ type: "http://www.ft.com/ontology/content/Graphic";
563
+ binaryUrl: string;
564
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
565
+ title?: string | undefined;
566
+ description?: string | undefined;
567
+ copyright?: {
568
+ notice: string;
569
+ } | undefined;
570
+ minDisplayWidth?: string | undefined;
571
+ maxDisplayWidth?: string | undefined;
572
+ pixelWidth?: number | undefined;
573
+ pixelHeight?: number | undefined;
574
+ };
575
+ }>, "many">>;
576
+ alternativeImages: import("zod").ZodOptional<import("zod").ZodObject<{
577
+ promotionalImage: import("zod").ZodObject<{
578
+ id: import("zod").ZodString;
579
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
580
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
581
+ title: import("zod").ZodOptional<import("zod").ZodString>;
582
+ description: import("zod").ZodOptional<import("zod").ZodString>;
583
+ binaryUrl: import("zod").ZodString;
584
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
585
+ notice: import("zod").ZodString;
586
+ }, "strip", import("zod").ZodTypeAny, {
587
+ notice: string;
588
+ }, {
589
+ notice: string;
590
+ }>>;
591
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
592
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
593
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
594
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
595
+ }, "strip", import("zod").ZodTypeAny, {
596
+ id: string;
597
+ type: "http://www.ft.com/ontology/content/Image";
598
+ binaryUrl: string;
599
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
600
+ title?: string | undefined;
601
+ description?: string | undefined;
602
+ copyright?: {
603
+ notice: string;
604
+ } | undefined;
605
+ minDisplayWidth?: string | undefined;
606
+ maxDisplayWidth?: string | undefined;
607
+ pixelWidth?: number | undefined;
608
+ pixelHeight?: number | undefined;
609
+ }, {
610
+ id: string;
611
+ type: "http://www.ft.com/ontology/content/Image";
612
+ binaryUrl: string;
613
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
614
+ title?: string | undefined;
615
+ description?: string | undefined;
616
+ copyright?: {
617
+ notice: string;
618
+ } | undefined;
619
+ minDisplayWidth?: string | undefined;
620
+ maxDisplayWidth?: string | undefined;
621
+ pixelWidth?: number | undefined;
622
+ pixelHeight?: number | undefined;
623
+ }>;
624
+ }, "strip", import("zod").ZodTypeAny, {
625
+ promotionalImage: {
626
+ id: string;
627
+ type: "http://www.ft.com/ontology/content/Image";
628
+ binaryUrl: string;
629
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
630
+ title?: string | undefined;
631
+ description?: string | undefined;
632
+ copyright?: {
633
+ notice: string;
634
+ } | undefined;
635
+ minDisplayWidth?: string | undefined;
636
+ maxDisplayWidth?: string | undefined;
637
+ pixelWidth?: number | undefined;
638
+ pixelHeight?: number | undefined;
639
+ };
640
+ }, {
641
+ promotionalImage: {
642
+ id: string;
643
+ type: "http://www.ft.com/ontology/content/Image";
644
+ binaryUrl: string;
645
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
646
+ title?: string | undefined;
647
+ description?: string | undefined;
648
+ copyright?: {
649
+ notice: string;
650
+ } | undefined;
651
+ minDisplayWidth?: string | undefined;
652
+ maxDisplayWidth?: string | undefined;
653
+ pixelWidth?: number | undefined;
654
+ pixelHeight?: number | undefined;
655
+ };
656
+ }>>;
657
+ leadFlourish: import("zod").ZodOptional<import("zod").ZodObject<{
658
+ id: import("zod").ZodString;
659
+ type: import("zod").ZodString;
660
+ description: import("zod").ZodString;
661
+ }, "strip", import("zod").ZodTypeAny, {
662
+ id: string;
663
+ type: string;
664
+ description: string;
665
+ }, {
666
+ id: string;
667
+ type: string;
668
+ description: string;
669
+ }>>;
670
+ embeds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
671
+ id: import("zod").ZodString;
672
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
673
+ description: import("zod").ZodOptional<import("zod").ZodString>;
674
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
675
+ id: import("zod").ZodString;
676
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
677
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
678
+ title: import("zod").ZodOptional<import("zod").ZodString>;
679
+ description: import("zod").ZodOptional<import("zod").ZodString>;
680
+ binaryUrl: import("zod").ZodString;
681
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
682
+ notice: import("zod").ZodString;
683
+ }, "strip", import("zod").ZodTypeAny, {
684
+ notice: string;
685
+ }, {
686
+ notice: string;
687
+ }>>;
688
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
689
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
690
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
691
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
692
+ }, "strip", import("zod").ZodTypeAny, {
693
+ id: string;
694
+ type: "http://www.ft.com/ontology/content/Image";
695
+ binaryUrl: string;
696
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
697
+ title?: string | undefined;
698
+ description?: string | undefined;
699
+ copyright?: {
700
+ notice: string;
701
+ } | undefined;
702
+ minDisplayWidth?: string | undefined;
703
+ maxDisplayWidth?: string | undefined;
704
+ pixelWidth?: number | undefined;
705
+ pixelHeight?: number | undefined;
706
+ }, {
707
+ id: string;
708
+ type: "http://www.ft.com/ontology/content/Image";
709
+ binaryUrl: string;
710
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
711
+ title?: string | undefined;
712
+ description?: string | undefined;
713
+ copyright?: {
714
+ notice: string;
715
+ } | undefined;
716
+ minDisplayWidth?: string | undefined;
717
+ maxDisplayWidth?: string | undefined;
718
+ pixelWidth?: number | undefined;
719
+ pixelHeight?: number | undefined;
720
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
721
+ id: import("zod").ZodString;
722
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
723
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
724
+ title: import("zod").ZodOptional<import("zod").ZodString>;
725
+ description: import("zod").ZodOptional<import("zod").ZodString>;
726
+ binaryUrl: import("zod").ZodString;
727
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
728
+ notice: import("zod").ZodString;
729
+ }, "strip", import("zod").ZodTypeAny, {
730
+ notice: string;
731
+ }, {
732
+ notice: string;
733
+ }>>;
734
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
735
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
736
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
737
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
738
+ }, {
739
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
740
+ }>, "strip", import("zod").ZodTypeAny, {
741
+ id: string;
742
+ type: "http://www.ft.com/ontology/content/Graphic";
743
+ binaryUrl: string;
744
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
745
+ title?: string | undefined;
746
+ description?: string | undefined;
747
+ copyright?: {
748
+ notice: string;
749
+ } | undefined;
750
+ minDisplayWidth?: string | undefined;
751
+ maxDisplayWidth?: string | undefined;
752
+ pixelWidth?: number | undefined;
753
+ pixelHeight?: number | undefined;
754
+ }, {
755
+ id: string;
756
+ type: "http://www.ft.com/ontology/content/Graphic";
757
+ binaryUrl: string;
758
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
759
+ title?: string | undefined;
760
+ description?: string | undefined;
761
+ copyright?: {
762
+ notice: string;
763
+ } | undefined;
764
+ minDisplayWidth?: string | undefined;
765
+ maxDisplayWidth?: string | undefined;
766
+ pixelWidth?: number | undefined;
767
+ pixelHeight?: number | undefined;
768
+ }>]>, "many">;
769
+ }, "strip", import("zod").ZodTypeAny, {
770
+ id: string;
771
+ type: "http://www.ft.com/ontology/content/ImageSet";
772
+ members: ({
773
+ id: string;
774
+ type: "http://www.ft.com/ontology/content/Image";
775
+ binaryUrl: string;
776
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
777
+ title?: string | undefined;
778
+ description?: string | undefined;
779
+ copyright?: {
780
+ notice: string;
781
+ } | undefined;
782
+ minDisplayWidth?: string | undefined;
783
+ maxDisplayWidth?: string | undefined;
784
+ pixelWidth?: number | undefined;
785
+ pixelHeight?: number | undefined;
786
+ } | {
787
+ id: string;
788
+ type: "http://www.ft.com/ontology/content/Graphic";
789
+ binaryUrl: string;
790
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
791
+ title?: string | undefined;
792
+ description?: string | undefined;
793
+ copyright?: {
794
+ notice: string;
795
+ } | undefined;
796
+ minDisplayWidth?: string | undefined;
797
+ maxDisplayWidth?: string | undefined;
798
+ pixelWidth?: number | undefined;
799
+ pixelHeight?: number | undefined;
800
+ })[];
801
+ description?: string | undefined;
802
+ }, {
803
+ id: string;
804
+ type: "http://www.ft.com/ontology/content/ImageSet";
805
+ members: ({
806
+ id: string;
807
+ type: "http://www.ft.com/ontology/content/Image";
808
+ binaryUrl: string;
809
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
810
+ title?: string | undefined;
811
+ description?: string | undefined;
812
+ copyright?: {
813
+ notice: string;
814
+ } | undefined;
815
+ minDisplayWidth?: string | undefined;
816
+ maxDisplayWidth?: string | undefined;
817
+ pixelWidth?: number | undefined;
818
+ pixelHeight?: number | undefined;
819
+ } | {
820
+ id: string;
821
+ type: "http://www.ft.com/ontology/content/Graphic";
822
+ binaryUrl: string;
823
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
824
+ title?: string | undefined;
825
+ description?: string | undefined;
826
+ copyright?: {
827
+ notice: string;
828
+ } | undefined;
829
+ minDisplayWidth?: string | undefined;
830
+ maxDisplayWidth?: string | undefined;
831
+ pixelWidth?: number | undefined;
832
+ pixelHeight?: number | undefined;
833
+ })[];
834
+ description?: string | undefined;
835
+ }>, import("zod").ZodObject<{
836
+ id: import("zod").ZodString;
837
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ClipSet">;
838
+ members: import("zod").ZodArray<import("zod").ZodObject<{
839
+ id: import("zod").ZodString;
840
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Clip">;
841
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">]>>;
842
+ dataSource: import("zod").ZodArray<import("zod").ZodObject<{
843
+ audioCodec: import("zod").ZodOptional<import("zod").ZodString>;
844
+ binaryUrl: import("zod").ZodOptional<import("zod").ZodString>;
845
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
846
+ mediaType: import("zod").ZodOptional<import("zod").ZodString>;
847
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
848
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
849
+ videoCodec: import("zod").ZodOptional<import("zod").ZodString>;
850
+ }, "strip", import("zod").ZodTypeAny, {
851
+ binaryUrl?: string | undefined;
852
+ pixelWidth?: number | undefined;
853
+ pixelHeight?: number | undefined;
854
+ audioCodec?: string | undefined;
855
+ duration?: number | undefined;
856
+ mediaType?: string | undefined;
857
+ videoCodec?: string | undefined;
858
+ }, {
859
+ binaryUrl?: string | undefined;
860
+ pixelWidth?: number | undefined;
861
+ pixelHeight?: number | undefined;
862
+ audioCodec?: string | undefined;
863
+ duration?: number | undefined;
864
+ mediaType?: string | undefined;
865
+ videoCodec?: string | undefined;
866
+ }>, "many">;
867
+ poster: import("zod").ZodOptional<import("zod").ZodObject<{
868
+ id: import("zod").ZodString;
869
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/ImageSet">;
870
+ description: import("zod").ZodOptional<import("zod").ZodString>;
871
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
872
+ id: import("zod").ZodString;
873
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
874
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
875
+ title: import("zod").ZodOptional<import("zod").ZodString>;
876
+ description: import("zod").ZodOptional<import("zod").ZodString>;
877
+ binaryUrl: import("zod").ZodString;
878
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
879
+ notice: import("zod").ZodString;
880
+ }, "strip", import("zod").ZodTypeAny, {
881
+ notice: string;
882
+ }, {
883
+ notice: string;
884
+ }>>;
885
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
886
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
887
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
888
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
889
+ }, "strip", import("zod").ZodTypeAny, {
890
+ id: string;
891
+ type: "http://www.ft.com/ontology/content/Image";
892
+ binaryUrl: string;
893
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
894
+ title?: string | undefined;
895
+ description?: string | undefined;
896
+ copyright?: {
897
+ notice: string;
898
+ } | undefined;
899
+ minDisplayWidth?: string | undefined;
900
+ maxDisplayWidth?: string | undefined;
901
+ pixelWidth?: number | undefined;
902
+ pixelHeight?: number | undefined;
903
+ }, {
904
+ id: string;
905
+ type: "http://www.ft.com/ontology/content/Image";
906
+ binaryUrl: string;
907
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
908
+ title?: string | undefined;
909
+ description?: string | undefined;
910
+ copyright?: {
911
+ notice: string;
912
+ } | undefined;
913
+ minDisplayWidth?: string | undefined;
914
+ maxDisplayWidth?: string | undefined;
915
+ pixelWidth?: number | undefined;
916
+ pixelHeight?: number | undefined;
917
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
918
+ id: import("zod").ZodString;
919
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Image">;
920
+ format: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"standardInline">, import("zod").ZodLiteral<"mobile">, import("zod").ZodLiteral<"desktop">, import("zod").ZodLiteral<"standard">, import("zod").ZodLiteral<"square">, import("zod").ZodLiteral<"ftEditSquare">, import("zod").ZodLiteral<"wide">, import("zod").ZodLiteral<"portrait">, import("zod").ZodLiteral<"landscape">]>>;
921
+ title: import("zod").ZodOptional<import("zod").ZodString>;
922
+ description: import("zod").ZodOptional<import("zod").ZodString>;
923
+ binaryUrl: import("zod").ZodString;
924
+ copyright: import("zod").ZodOptional<import("zod").ZodObject<{
925
+ notice: import("zod").ZodString;
926
+ }, "strip", import("zod").ZodTypeAny, {
927
+ notice: string;
928
+ }, {
929
+ notice: string;
930
+ }>>;
931
+ minDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
932
+ maxDisplayWidth: import("zod").ZodOptional<import("zod").ZodString>;
933
+ pixelWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
934
+ pixelHeight: import("zod").ZodOptional<import("zod").ZodNumber>;
935
+ }, {
936
+ type: import("zod").ZodLiteral<"http://www.ft.com/ontology/content/Graphic">;
937
+ }>, "strip", import("zod").ZodTypeAny, {
938
+ id: string;
939
+ type: "http://www.ft.com/ontology/content/Graphic";
940
+ binaryUrl: string;
941
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
942
+ title?: string | undefined;
943
+ description?: string | undefined;
944
+ copyright?: {
945
+ notice: string;
946
+ } | undefined;
947
+ minDisplayWidth?: string | undefined;
948
+ maxDisplayWidth?: string | undefined;
949
+ pixelWidth?: number | undefined;
950
+ pixelHeight?: number | undefined;
951
+ }, {
952
+ id: string;
953
+ type: "http://www.ft.com/ontology/content/Graphic";
954
+ binaryUrl: string;
955
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
956
+ title?: string | undefined;
957
+ description?: string | undefined;
958
+ copyright?: {
959
+ notice: string;
960
+ } | undefined;
961
+ minDisplayWidth?: string | undefined;
962
+ maxDisplayWidth?: string | undefined;
963
+ pixelWidth?: number | undefined;
964
+ pixelHeight?: number | undefined;
965
+ }>]>, "many">;
966
+ }, "strip", import("zod").ZodTypeAny, {
967
+ id: string;
968
+ type: "http://www.ft.com/ontology/content/ImageSet";
969
+ members: ({
970
+ id: string;
971
+ type: "http://www.ft.com/ontology/content/Image";
972
+ binaryUrl: string;
973
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
974
+ title?: string | undefined;
975
+ description?: string | undefined;
976
+ copyright?: {
977
+ notice: string;
978
+ } | undefined;
979
+ minDisplayWidth?: string | undefined;
980
+ maxDisplayWidth?: string | undefined;
981
+ pixelWidth?: number | undefined;
982
+ pixelHeight?: number | undefined;
983
+ } | {
984
+ id: string;
985
+ type: "http://www.ft.com/ontology/content/Graphic";
986
+ binaryUrl: string;
987
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
988
+ title?: string | undefined;
989
+ description?: string | undefined;
990
+ copyright?: {
991
+ notice: string;
992
+ } | undefined;
993
+ minDisplayWidth?: string | undefined;
994
+ maxDisplayWidth?: string | undefined;
995
+ pixelWidth?: number | undefined;
996
+ pixelHeight?: number | undefined;
997
+ })[];
998
+ description?: string | undefined;
999
+ }, {
1000
+ id: string;
1001
+ type: "http://www.ft.com/ontology/content/ImageSet";
1002
+ members: ({
1003
+ id: string;
1004
+ type: "http://www.ft.com/ontology/content/Image";
1005
+ binaryUrl: string;
1006
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1007
+ title?: string | undefined;
1008
+ description?: string | undefined;
1009
+ copyright?: {
1010
+ notice: string;
1011
+ } | undefined;
1012
+ minDisplayWidth?: string | undefined;
1013
+ maxDisplayWidth?: string | undefined;
1014
+ pixelWidth?: number | undefined;
1015
+ pixelHeight?: number | undefined;
1016
+ } | {
1017
+ id: string;
1018
+ type: "http://www.ft.com/ontology/content/Graphic";
1019
+ binaryUrl: string;
1020
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1021
+ title?: string | undefined;
1022
+ description?: string | undefined;
1023
+ copyright?: {
1024
+ notice: string;
1025
+ } | undefined;
1026
+ minDisplayWidth?: string | undefined;
1027
+ maxDisplayWidth?: string | undefined;
1028
+ pixelWidth?: number | undefined;
1029
+ pixelHeight?: number | undefined;
1030
+ })[];
1031
+ description?: string | undefined;
1032
+ }>>;
1033
+ }, "strip", import("zod").ZodTypeAny, {
1034
+ id: string;
1035
+ type: "http://www.ft.com/ontology/content/Clip";
1036
+ dataSource: {
1037
+ binaryUrl?: string | undefined;
1038
+ pixelWidth?: number | undefined;
1039
+ pixelHeight?: number | undefined;
1040
+ audioCodec?: string | undefined;
1041
+ duration?: number | undefined;
1042
+ mediaType?: string | undefined;
1043
+ videoCodec?: string | undefined;
1044
+ }[];
1045
+ format?: "standardInline" | "mobile" | undefined;
1046
+ poster?: {
1047
+ id: string;
1048
+ type: "http://www.ft.com/ontology/content/ImageSet";
1049
+ members: ({
1050
+ id: string;
1051
+ type: "http://www.ft.com/ontology/content/Image";
1052
+ binaryUrl: string;
1053
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1054
+ title?: string | undefined;
1055
+ description?: string | undefined;
1056
+ copyright?: {
1057
+ notice: string;
1058
+ } | undefined;
1059
+ minDisplayWidth?: string | undefined;
1060
+ maxDisplayWidth?: string | undefined;
1061
+ pixelWidth?: number | undefined;
1062
+ pixelHeight?: number | undefined;
1063
+ } | {
1064
+ id: string;
1065
+ type: "http://www.ft.com/ontology/content/Graphic";
1066
+ binaryUrl: string;
1067
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1068
+ title?: string | undefined;
1069
+ description?: string | undefined;
1070
+ copyright?: {
1071
+ notice: string;
1072
+ } | undefined;
1073
+ minDisplayWidth?: string | undefined;
1074
+ maxDisplayWidth?: string | undefined;
1075
+ pixelWidth?: number | undefined;
1076
+ pixelHeight?: number | undefined;
1077
+ })[];
1078
+ description?: string | undefined;
1079
+ } | undefined;
1080
+ }, {
1081
+ id: string;
1082
+ type: "http://www.ft.com/ontology/content/Clip";
1083
+ dataSource: {
1084
+ binaryUrl?: string | undefined;
1085
+ pixelWidth?: number | undefined;
1086
+ pixelHeight?: number | undefined;
1087
+ audioCodec?: string | undefined;
1088
+ duration?: number | undefined;
1089
+ mediaType?: string | undefined;
1090
+ videoCodec?: string | undefined;
1091
+ }[];
1092
+ format?: "standardInline" | "mobile" | undefined;
1093
+ poster?: {
1094
+ id: string;
1095
+ type: "http://www.ft.com/ontology/content/ImageSet";
1096
+ members: ({
1097
+ id: string;
1098
+ type: "http://www.ft.com/ontology/content/Image";
1099
+ binaryUrl: string;
1100
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1101
+ title?: string | undefined;
1102
+ description?: string | undefined;
1103
+ copyright?: {
1104
+ notice: string;
1105
+ } | undefined;
1106
+ minDisplayWidth?: string | undefined;
1107
+ maxDisplayWidth?: string | undefined;
1108
+ pixelWidth?: number | undefined;
1109
+ pixelHeight?: number | undefined;
1110
+ } | {
1111
+ id: string;
1112
+ type: "http://www.ft.com/ontology/content/Graphic";
1113
+ binaryUrl: string;
1114
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1115
+ title?: string | undefined;
1116
+ description?: string | undefined;
1117
+ copyright?: {
1118
+ notice: string;
1119
+ } | undefined;
1120
+ minDisplayWidth?: string | undefined;
1121
+ maxDisplayWidth?: string | undefined;
1122
+ pixelWidth?: number | undefined;
1123
+ pixelHeight?: number | undefined;
1124
+ })[];
1125
+ description?: string | undefined;
1126
+ } | undefined;
1127
+ }>, "many">;
1128
+ caption: import("zod").ZodOptional<import("zod").ZodString>;
1129
+ dataCopyright: import("zod").ZodOptional<import("zod").ZodString>;
1130
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1131
+ displayTitle: import("zod").ZodOptional<import("zod").ZodString>;
1132
+ contentWarning: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1133
+ noAudio: import("zod").ZodOptional<import("zod").ZodBoolean>;
1134
+ source: import("zod").ZodOptional<import("zod").ZodString>;
1135
+ subtitle: import("zod").ZodOptional<import("zod").ZodString>;
1136
+ publishedDate: import("zod").ZodOptional<import("zod").ZodString>;
1137
+ accessibility: import("zod").ZodOptional<import("zod").ZodObject<{
1138
+ captions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1139
+ mediaType: import("zod").ZodOptional<import("zod").ZodString>;
1140
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1141
+ }, "strip", import("zod").ZodTypeAny, {
1142
+ mediaType?: string | undefined;
1143
+ url?: string | undefined;
1144
+ }, {
1145
+ mediaType?: string | undefined;
1146
+ url?: string | undefined;
1147
+ }>, "many">>;
1148
+ transcript: import("zod").ZodOptional<import("zod").ZodString>;
1149
+ }, "strip", import("zod").ZodTypeAny, {
1150
+ captions?: {
1151
+ mediaType?: string | undefined;
1152
+ url?: string | undefined;
1153
+ }[] | undefined;
1154
+ transcript?: string | undefined;
1155
+ }, {
1156
+ captions?: {
1157
+ mediaType?: string | undefined;
1158
+ url?: string | undefined;
1159
+ }[] | undefined;
1160
+ transcript?: string | undefined;
1161
+ }>>;
1162
+ }, "strip", import("zod").ZodTypeAny, {
1163
+ id: string;
1164
+ type: "http://www.ft.com/ontology/content/ClipSet";
1165
+ members: {
1166
+ id: string;
1167
+ type: "http://www.ft.com/ontology/content/Clip";
1168
+ dataSource: {
1169
+ binaryUrl?: string | undefined;
1170
+ pixelWidth?: number | undefined;
1171
+ pixelHeight?: number | undefined;
1172
+ audioCodec?: string | undefined;
1173
+ duration?: number | undefined;
1174
+ mediaType?: string | undefined;
1175
+ videoCodec?: string | undefined;
1176
+ }[];
1177
+ format?: "standardInline" | "mobile" | undefined;
1178
+ poster?: {
1179
+ id: string;
1180
+ type: "http://www.ft.com/ontology/content/ImageSet";
1181
+ members: ({
1182
+ id: string;
1183
+ type: "http://www.ft.com/ontology/content/Image";
1184
+ binaryUrl: string;
1185
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1186
+ title?: string | undefined;
1187
+ description?: string | undefined;
1188
+ copyright?: {
1189
+ notice: string;
1190
+ } | undefined;
1191
+ minDisplayWidth?: string | undefined;
1192
+ maxDisplayWidth?: string | undefined;
1193
+ pixelWidth?: number | undefined;
1194
+ pixelHeight?: number | undefined;
1195
+ } | {
1196
+ id: string;
1197
+ type: "http://www.ft.com/ontology/content/Graphic";
1198
+ binaryUrl: string;
1199
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1200
+ title?: string | undefined;
1201
+ description?: string | undefined;
1202
+ copyright?: {
1203
+ notice: string;
1204
+ } | undefined;
1205
+ minDisplayWidth?: string | undefined;
1206
+ maxDisplayWidth?: string | undefined;
1207
+ pixelWidth?: number | undefined;
1208
+ pixelHeight?: number | undefined;
1209
+ })[];
1210
+ description?: string | undefined;
1211
+ } | undefined;
1212
+ }[];
1213
+ description?: string | undefined;
1214
+ caption?: string | undefined;
1215
+ dataCopyright?: string | undefined;
1216
+ displayTitle?: string | undefined;
1217
+ contentWarning?: string[] | undefined;
1218
+ noAudio?: boolean | undefined;
1219
+ source?: string | undefined;
1220
+ subtitle?: string | undefined;
1221
+ publishedDate?: string | undefined;
1222
+ accessibility?: {
1223
+ captions?: {
1224
+ mediaType?: string | undefined;
1225
+ url?: string | undefined;
1226
+ }[] | undefined;
1227
+ transcript?: string | undefined;
1228
+ } | undefined;
1229
+ }, {
1230
+ id: string;
1231
+ type: "http://www.ft.com/ontology/content/ClipSet";
1232
+ members: {
1233
+ id: string;
1234
+ type: "http://www.ft.com/ontology/content/Clip";
1235
+ dataSource: {
1236
+ binaryUrl?: string | undefined;
1237
+ pixelWidth?: number | undefined;
1238
+ pixelHeight?: number | undefined;
1239
+ audioCodec?: string | undefined;
1240
+ duration?: number | undefined;
1241
+ mediaType?: string | undefined;
1242
+ videoCodec?: string | undefined;
1243
+ }[];
1244
+ format?: "standardInline" | "mobile" | undefined;
1245
+ poster?: {
1246
+ id: string;
1247
+ type: "http://www.ft.com/ontology/content/ImageSet";
1248
+ members: ({
1249
+ id: string;
1250
+ type: "http://www.ft.com/ontology/content/Image";
1251
+ binaryUrl: string;
1252
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1253
+ title?: string | undefined;
1254
+ description?: string | undefined;
1255
+ copyright?: {
1256
+ notice: string;
1257
+ } | undefined;
1258
+ minDisplayWidth?: string | undefined;
1259
+ maxDisplayWidth?: string | undefined;
1260
+ pixelWidth?: number | undefined;
1261
+ pixelHeight?: number | undefined;
1262
+ } | {
1263
+ id: string;
1264
+ type: "http://www.ft.com/ontology/content/Graphic";
1265
+ binaryUrl: string;
1266
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1267
+ title?: string | undefined;
1268
+ description?: string | undefined;
1269
+ copyright?: {
1270
+ notice: string;
1271
+ } | undefined;
1272
+ minDisplayWidth?: string | undefined;
1273
+ maxDisplayWidth?: string | undefined;
1274
+ pixelWidth?: number | undefined;
1275
+ pixelHeight?: number | undefined;
1276
+ })[];
1277
+ description?: string | undefined;
1278
+ } | undefined;
1279
+ }[];
1280
+ description?: string | undefined;
1281
+ caption?: string | undefined;
1282
+ dataCopyright?: string | undefined;
1283
+ displayTitle?: string | undefined;
1284
+ contentWarning?: string[] | undefined;
1285
+ noAudio?: boolean | undefined;
1286
+ source?: string | undefined;
1287
+ subtitle?: string | undefined;
1288
+ publishedDate?: string | undefined;
1289
+ accessibility?: {
1290
+ captions?: {
1291
+ mediaType?: string | undefined;
1292
+ url?: string | undefined;
1293
+ }[] | undefined;
1294
+ transcript?: string | undefined;
1295
+ } | undefined;
1296
+ }>]>, "many">>;
1297
+ dataSource: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1298
+ binaryUrl: import("zod").ZodString;
1299
+ duration: import("zod").ZodNumber;
1300
+ filesize: import("zod").ZodNumber;
1301
+ mediaType: import("zod").ZodString;
1302
+ }, "strip", import("zod").ZodTypeAny, {
1303
+ binaryUrl: string;
1304
+ duration: number;
1305
+ mediaType: string;
1306
+ filesize: number;
1307
+ }, {
1308
+ binaryUrl: string;
1309
+ duration: number;
1310
+ mediaType: string;
1311
+ filesize: number;
1312
+ }>, "many">>;
1313
+ }, "dataSource" | "mainImage">>, "strip", import("zod").ZodTypeAny, {
1314
+ id: string;
1315
+ types: string[];
1316
+ title: string;
1317
+ publishedDate: string;
1318
+ annotations: {
1319
+ id: string;
1320
+ apiUrl: string;
1321
+ directType: string;
1322
+ prefLabel: string;
1323
+ types: string[];
1324
+ predicate: string;
1325
+ type?: string | undefined;
1326
+ headshot?: string | undefined;
1327
+ }[];
1328
+ firstPublishedDate: string;
1329
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
441
1330
  dataSource?: {
442
1331
  binaryUrl: string;
443
1332
  duration: number;
444
1333
  mediaType: string;
445
1334
  filesize: number;
446
1335
  }[] | undefined;
1336
+ webUrl?: string | undefined;
1337
+ canonicalWebUrl?: string | undefined;
1338
+ editorialDesk?: string | undefined;
1339
+ accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
1340
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1341
+ byline?: string | undefined;
1342
+ alternativeTitles?: {
1343
+ promotionalTitle: string;
1344
+ } | undefined;
1345
+ mainImage?: {
1346
+ id: string;
1347
+ type: "http://www.ft.com/ontology/content/Image";
1348
+ binaryUrl: string;
1349
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1350
+ title?: string | undefined;
1351
+ description?: string | undefined;
1352
+ copyright?: {
1353
+ notice: string;
1354
+ } | undefined;
1355
+ minDisplayWidth?: string | undefined;
1356
+ maxDisplayWidth?: string | undefined;
1357
+ pixelWidth?: number | undefined;
1358
+ pixelHeight?: number | undefined;
1359
+ } | {
1360
+ id: string;
1361
+ type: "http://www.ft.com/ontology/content/Graphic";
1362
+ binaryUrl: string;
1363
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1364
+ title?: string | undefined;
1365
+ description?: string | undefined;
1366
+ copyright?: {
1367
+ notice: string;
1368
+ } | undefined;
1369
+ minDisplayWidth?: string | undefined;
1370
+ maxDisplayWidth?: string | undefined;
1371
+ pixelWidth?: number | undefined;
1372
+ pixelHeight?: number | undefined;
1373
+ } | {
1374
+ id: string;
1375
+ type: "http://www.ft.com/ontology/content/ImageSet";
1376
+ members: ({
1377
+ id: string;
1378
+ type: "http://www.ft.com/ontology/content/Image";
1379
+ binaryUrl: string;
1380
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1381
+ title?: string | undefined;
1382
+ description?: string | undefined;
1383
+ copyright?: {
1384
+ notice: string;
1385
+ } | undefined;
1386
+ minDisplayWidth?: string | undefined;
1387
+ maxDisplayWidth?: string | undefined;
1388
+ pixelWidth?: number | undefined;
1389
+ pixelHeight?: number | undefined;
1390
+ } | {
1391
+ id: string;
1392
+ type: "http://www.ft.com/ontology/content/Graphic";
1393
+ binaryUrl: string;
1394
+ format?: "standardInline" | "mobile" | "desktop" | "standard" | "square" | "ftEditSquare" | "wide" | "portrait" | "landscape" | undefined;
1395
+ title?: string | undefined;
1396
+ description?: string | undefined;
1397
+ copyright?: {
1398
+ notice: string;
1399
+ } | undefined;
1400
+ minDisplayWidth?: string | undefined;
1401
+ maxDisplayWidth?: string | undefined;
1402
+ pixelWidth?: number | undefined;
1403
+ pixelHeight?: number | undefined;
1404
+ })[];
1405
+ description?: string | undefined;
1406
+ } | undefined;
1407
+ }, {
1408
+ id: string;
1409
+ types: string[];
1410
+ title: string;
1411
+ publishedDate: string;
1412
+ annotations: {
1413
+ id: string;
1414
+ apiUrl: string;
1415
+ directType: string;
1416
+ prefLabel: string;
1417
+ types: string[];
1418
+ predicate: string;
1419
+ type?: string | undefined;
1420
+ headshot?: string | undefined;
1421
+ }[];
1422
+ firstPublishedDate: string;
1423
+ canBeSyndicated: "unknown" | "yes" | "no" | "verify" | "withContributorPayment";
1424
+ dataSource?: {
1425
+ binaryUrl: string;
1426
+ duration: number;
1427
+ mediaType: string;
1428
+ filesize: number;
1429
+ }[] | undefined;
1430
+ webUrl?: string | undefined;
1431
+ canonicalWebUrl?: string | undefined;
1432
+ editorialDesk?: string | undefined;
1433
+ accessLevel?: "premium" | "subscribed" | "registered" | "free" | undefined;
1434
+ canBeDistributed?: "yes" | "no" | "verify" | undefined;
1435
+ byline?: string | undefined;
1436
+ alternativeTitles?: {
1437
+ promotionalTitle: string;
1438
+ } | undefined;
447
1439
  mainImage?: {
448
1440
  id: string;
449
1441
  type: "http://www.ft.com/ontology/content/Image";