-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
3080 lines (2324 loc) · 63.5 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
input AuthorModelFilter {
OR: [AuthorModelFilter]
_createdAt: CreatedAtFilter
_firstPublishedAt: PublishedAtFilter
_isValid: BooleanFilter
_publicationScheduledAt: PublishedAtFilter
_publishedAt: PublishedAtFilter
_status: StatusFilter
_unpublishingScheduledAt: PublishedAtFilter
_updatedAt: UpdatedAtFilter
id: ItemIdFilter
name: StringFilter
picture: FileFilter
}
enum AuthorModelOrderBy {
_createdAt_ASC
_createdAt_DESC
_firstPublishedAt_ASC
_firstPublishedAt_DESC
_isValid_ASC
_isValid_DESC
_publicationScheduledAt_ASC
_publicationScheduledAt_DESC
_publishedAt_ASC
_publishedAt_DESC
_status_ASC
_status_DESC
_unpublishingScheduledAt_ASC
_unpublishingScheduledAt_DESC
_updatedAt_ASC
_updatedAt_DESC
id_ASC
id_DESC
name_ASC
name_DESC
}
"""Record of type Author (author)"""
type AuthorRecord implements RecordInterface {
_createdAt: DateTime!
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""SEO meta tags"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
id: ItemId!
name: String
picture: FileField
}
"""Record of type Blog (blog)"""
type BlogRecord implements RecordInterface {
_createdAt: DateTime!
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""SEO meta tags"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
id: ItemId!
seo: SeoField
}
"""Specifies how to filter Boolean fields"""
input BooleanFilter {
"""Search for records with an exact match"""
eq: BooleanType
}
"""Represents `true` or `false` values."""
scalar BooleanType
input CategoryModelFilter {
OR: [CategoryModelFilter]
_createdAt: CreatedAtFilter
_firstPublishedAt: PublishedAtFilter
_isValid: BooleanFilter
_publicationScheduledAt: PublishedAtFilter
_publishedAt: PublishedAtFilter
_status: StatusFilter
_unpublishingScheduledAt: PublishedAtFilter
_updatedAt: UpdatedAtFilter
id: ItemIdFilter
name: StringFilter
slug: SlugFilter
}
enum CategoryModelOrderBy {
_createdAt_ASC
_createdAt_DESC
_firstPublishedAt_ASC
_firstPublishedAt_DESC
_isValid_ASC
_isValid_DESC
_publicationScheduledAt_ASC
_publicationScheduledAt_DESC
_publishedAt_ASC
_publishedAt_DESC
_status_ASC
_status_DESC
_unpublishingScheduledAt_ASC
_unpublishingScheduledAt_DESC
_updatedAt_ASC
_updatedAt_DESC
id_ASC
id_DESC
name_ASC
name_DESC
}
"""Record of type Category (category)"""
type CategoryRecord implements RecordInterface {
_createdAt: DateTime!
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""SEO meta tags"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
id: ItemId!
name: String
slug: String
}
type CollectionMetadata {
count: IntType!
}
enum ColorBucketType {
black
blue
brown
cyan
green
grey
orange
pink
purple
red
white
yellow
}
type ColorField {
alpha: IntType!
blue: IntType!
green: IntType!
hex: String!
red: IntType!
}
"""Specifies how to filter by creation datetime"""
input CreatedAtFilter {
"""
Filter records with a value that's within the specified minute range. Seconds and milliseconds are truncated from the argument.
"""
eq: DateTime
"""
Filter records with the specified field defined (i.e. with any value) or not
"""
exists: BooleanType
"""
Filter records with a value that's strictly greater than the one specified. Seconds and milliseconds are truncated from the argument.
"""
gt: DateTime
"""
Filter records with a value that's greater than or equal to than the one specified. Seconds and milliseconds are truncated from the argument.
"""
gte: DateTime
"""
Filter records with a value that's less than the one specified. Seconds and milliseconds are truncated from the argument.
"""
lt: DateTime
"""
Filter records with a value that's less or equal than the one specified. Seconds and milliseconds are truncated from the argument.
"""
lte: DateTime
"""
Filter records with a value that's outside the specified minute range. Seconds and milliseconds are truncated from the argument.
"""
neq: DateTime
}
scalar CustomData
"""A ISO 8601 compliant date value"""
scalar Date
"""Specifies how to filter Date fields"""
input DateFilter {
"""Search for records with an exact match"""
eq: Date
"""
Filter records with the specified field defined (i.e. with any value) or not
"""
exists: BooleanType
"""
Filter records with a value that's strictly greater than the one specified
"""
gt: Date
"""
Filter records with a value that's greater than or equal to the one specified
"""
gte: Date
"""Filter records with a value that's less than the one specified"""
lt: Date
"""
Filter records with a value that's less or equal than the one specified
"""
lte: Date
"""Exclude records with an exact match"""
neq: Date
}
"""A ISO 8601 compliant datetime value"""
scalar DateTime
enum FaviconType {
appleTouchIcon
icon
msApplication
}
type FileField implements FileFieldInterface {
_createdAt: DateTime!
_updatedAt: DateTime!
alt(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): String
author: String
basename: String!
blurUpThumb(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""
Controls the "punch" value (~contrast) of the blurhash decoding algorithm (defaults to 1.0)
"""
punch: Float! = 1
"""JPEG quality (defaults to 70%)"""
quality: Int! = 70
"""Maximum image dimension (defaults to 24px)"""
size: Int! = 24
): String
blurhash: String
colors: [ColorField!]!
copyright: String
customData(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): CustomData!
exifInfo: CustomData!
filename: String!
focalPoint(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): focalPoint
format: String!
height: IntType
id: UploadId!
md5: String!
mimeType: String!
notes: String
responsiveImage(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""Specify a custom `sizes` attribute for the image"""
sizes: String
): ResponsiveImage
size: IntType!
smartTags: [String!]!
tags: [String!]!
title(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): String
url(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String!
video: UploadVideoField
width: IntType
}
interface FileFieldInterface {
_createdAt: DateTime!
_updatedAt: DateTime!
alt(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): String
author: String
basename: String!
blurUpThumb(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""
Controls the "punch" value (~contrast) of the blurhash decoding algorithm (defaults to 1.0)
"""
punch: Float! = 1
"""JPEG quality (defaults to 70%)"""
quality: Int! = 70
"""Maximum image dimension (defaults to 24px)"""
size: Int! = 24
): String
blurhash: String
colors: [ColorField!]!
copyright: String
customData(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): CustomData!
exifInfo: CustomData!
filename: String!
focalPoint(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): focalPoint
format: String!
height: IntType
id: UploadId!
md5: String!
mimeType: String!
notes: String
responsiveImage(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
"""The locale to use to fetch the field's content"""
locale: SiteLocale
"""Specify a custom `sizes` attribute for the image"""
sizes: String
): ResponsiveImage
size: IntType!
smartTags: [String!]!
tags: [String!]!
title(
"""
If you want to fallback to a default translation when a translation has not been found
"""
fallbackLocales: [SiteLocale!]
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): String
url(
"""Imgix transformations to apply to the image"""
imgixParams: ImgixParams
): String!
video: UploadVideoField
width: IntType
}
"""Specifies how to filter Single-file/image fields"""
input FileFilter {
"""
Search for records with an exact match. The specified value must be an Upload ID
"""
eq: UploadId
"""
Filter records with the specified field defined (i.e. with any value) or not
"""
exists: BooleanType
"""Filter records that have one of the specified uploads"""
in: [UploadId]
"""
Exclude records with an exact match. The specified value must be an Upload ID
"""
neq: UploadId
"""Filter records that do not have one of the specified uploads"""
notIn: [UploadId]
}
"""
Represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).
"""
scalar FloatType
type GlobalSeoField {
facebookPageUrl: String
fallbackSeo: SeoField
siteName: String
titleSuffix: String
twitterAccount: String
}
"""Block of type Image block (image_block)"""
type ImageBlockRecord implements RecordInterface {
_createdAt: DateTime!
_firstPublishedAt: DateTime
_isValid: BooleanType!
_modelApiKey: String!
_publicationScheduledAt: DateTime
_publishedAt: DateTime
"""SEO meta tags"""
_seoMetaTags(
"""The locale to use to fetch the field's content"""
locale: SiteLocale
): [Tag!]!
_status: ItemStatus!
_unpublishingScheduledAt: DateTime
_updatedAt: DateTime!
id: ItemId!
image: FileField
}
input ImgixParams {
"""
Aspect Ratio
Specifies an aspect ratio to maintain when resizing and cropping the image
Depends on: `fit=crop`
[Open Imgix reference »](https://docs.imgix.com/apis/url/size/ar)
"""
ar: String
"""
Automatic
Applies automatic enhancements to images.
[Open Imgix reference »](https://docs.imgix.com/apis/url/auto)
"""
auto: [ImgixParamsAuto!]
"""
Background Color
Colors the background of padded and partially-transparent images.
[Open Imgix reference »](https://docs.imgix.com/apis/url/bg)
"""
bg: String
"""
Blend
Specifies the location of the blend image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend)
"""
blend: String
"""
Blend Align
Changes the blend alignment relative to the parent image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-align)
"""
blendAlign: [ImgixParamsBlendAlign!]
"""
Blend Alpha
Changes the alpha of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-alpha)
"""
blendAlpha: IntType
"""
Blend Color
Specifies a color to use when applying the blend.
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-color)
"""
blendColor: String
"""
Blend Crop
Specifies the type of crop for blend images.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-crop)
"""
blendCrop: [ImgixParamsBlendCrop!]
"""
Blend Fit
Specifies the fit mode for blend images.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-fit)
"""
blendFit: ImgixParamsBlendFit
"""
Blend Height
Adjusts the height of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-h)
"""
blendH: FloatType
"""
Blend Mode
Sets the blend mode for a blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-mode)
"""
blendMode: ImgixParamsBlendMode
"""
Blend Padding
Applies padding to the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-pad)
"""
blendPad: IntType
"""
Blend Size
Adjusts the size of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-size)
"""
blendSize: ImgixParamsBlendSize
"""
Blend Width
Adjusts the width of the blend image.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-w)
"""
blendW: FloatType
"""
Blend X Position
Adjusts the x-offset of the blend image relative to its parent.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-x)
"""
blendX: IntType
"""
Blend Y Position
Adjusts the y-offset of the blend image relative to its parent.
Depends on: `blend`
[Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-y)
"""
blendY: IntType
"""
Gaussian Blur
Applies a gaussian blur to an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/blur)
"""
blur: IntType
"""
Border Size & Color
Applies a border to an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border)
"""
border: String
"""
Border Bottom
Sets bottom border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-bottom)
"""
borderBottom: IntType
"""
Border Left
Sets left border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-left)
"""
borderLeft: IntType
"""
Outer Border Radius
Sets the outer radius of the image's border in pixels.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius)
"""
borderRadius: String
"""
Inner Border Radius
Sets the inner radius of the image's border in pixels.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius-inner)
"""
borderRadiusInner: String
"""
Border Right
Sets right border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-right)
"""
borderRight: IntType
"""
Border Top
Sets top border of an image.
Depends on: `border`
[Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-top)
"""
borderTop: IntType
"""
Brightness
Adjusts the brightness of the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/bri)
"""
bri: IntType
"""
Client Hints
Sets one or more Client-Hints headers
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/ch)
"""
ch: [ImgixParamsCh!]
"""
Chroma Subsampling
Specifies the output chroma subsampling rate.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/chromasub)
"""
chromasub: IntType
"""
Color Quantization
Limits the number of unique colors in an image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/colorquant)
"""
colorquant: IntType
"""
Palette Color Count
Specifies how many colors to include in a palette-extraction response.
Depends on: `palette`
[Open Imgix reference »](https://docs.imgix.com/apis/url/color-palette/colors)
"""
colors: IntType
"""
Contrast
Adjusts the contrast of the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/con)
"""
con: IntType
"""
Mask Corner Radius
Specifies the radius value for a rounded corner mask.
Depends on: `mask=corners`
[Open Imgix reference »](https://docs.imgix.com/apis/url/mask/corner-radius)
"""
cornerRadius: String
"""
Crop Mode
Specifies how to crop an image.
Depends on: `fit=crop`
[Open Imgix reference »](https://docs.imgix.com/apis/url/size/crop)
"""
crop: [ImgixParamsCrop!]
"""
Color Space
Specifies the color space of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/cs)
"""
cs: ImgixParamsCs
"""
Download
Forces a URL to use send-file in its response.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/dl)
"""
dl: String
"""
Dots Per Inch
Sets the DPI value in the EXIF header.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/dpi)
"""
dpi: IntType
"""
Device Pixel Ratio
Adjusts the device-pixel ratio of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/dpr)
"""
dpr: FloatType
"""
Duotone
Applies a duotone effect to the source image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone)
"""
duotone: String
"""
Duotone Alpha
Changes the alpha of the duotone effect atop the source image.
Depends on: `duotone`
[Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone-alpha)
"""
duotoneAlpha: IntType
"""
Exposure
Adjusts the exposure of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/exp)
"""
exp: IntType
"""
Url Expiration Timestamp
A Unix timestamp specifying a UTC time. Requests made to this URL after that time will output a 404 status code.
[Open Imgix reference »](https://docs.imgix.com/apis/url/expires)
"""
expires: IntType
"""
Face Index
Selects a face to crop to.
Depends on: `fit=facearea`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faceindex)
"""
faceindex: IntType
"""
Face Padding
Adjusts padding around a selected face.
Depends on: `fit=facearea`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/facepad)
"""
facepad: FloatType
"""
Json Face Data
Specifies that face data should be included in output when combined with `fm=json`.
Depends on: `fm=json`
[Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faces)
"""
faces: IntType
"""
Fill Mode
Determines how to fill in additional space created by the fit setting
Depends on: `fit`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill)
"""
fill: ImgixParamsFill
"""
Fill Color
Sets the fill color for images with additional space created by the fit setting
Depends on: `fill=solid`
[Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-color)
"""
fillColor: String
"""
Resize Fit Mode
Specifies how to map the source image to the output image dimensions.
[Open Imgix reference »](https://docs.imgix.com/apis/url/size/fit)
"""
fit: ImgixParamsFit
"""
Flip Axis
Flips an image on a specified axis.
[Open Imgix reference »](https://docs.imgix.com/apis/url/rotation/flip)
"""
flip: ImgixParamsFlip
"""
Output Format
Changes the format of the output image.
[Open Imgix reference »](https://docs.imgix.com/apis/url/format/fm)
"""
fm: ImgixParamsFm
"""
Focal Point Debug
Displays crosshairs identifying the location of the set focal point
Depends on: `fit=crop`, `crop=focalpoint`
[Open Imgix reference »](https://docs.imgix.com/apis/url/focalpoint-crop/fp-debug)