Google Filter API

Operations related to Filter

OpenAPI Specification

google-filter-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Google Books About Filter API
  description: API for retrieving Bookshelf and Volume resources from Google Books
  version: 1.0.0
  contact:
    name: Google Books API
    url: https://developers.google.com/books
servers:
- url: https://www.googleapis.com/books/v1
  description: Google Books API v1
tags:
- name: Filter
  description: Operations related to Filter
paths:
  /v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter:
    post:
      tags:
      - Filter
      summary: Google Batch Clear Values by Data Filter
      description: Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the specified data filters will be cleared. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept.
      security:
      - oauth2Auth: []
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
        example: application/json
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{spreadsheetId}}'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SpreadsheetsValuesbatchClearByDataFilterPostRequest'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsValuesbatchClearByDataFilterPostResponse'
              examples:
                SpreadsheetsValuesbatchClearByDataFilterPostResponseExample:
                  $ref: '#/components/examples/SpreadsheetsValuesbatchClearByDataFilterPostResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsValuesbatchClearByDataFilterPostResponseExample
  /v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter:
    post:
      tags:
      - Filter
      summary: Google Get Values By Data Filter
      description: Returns one or more ranges of values that match the specified data filters. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data filters in the request will be returned.
      security:
      - oauth2Auth: []
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
        example: application/json
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{spreadsheetId}}'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SpreadsheetsValuesbatchGetByDataFilterPostRequest'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsValuesbatchGetByDataFilterPostResponse'
              examples:
                SpreadsheetsValuesbatchGetByDataFilterPostResponseExample:
                  $ref: '#/components/examples/SpreadsheetsValuesbatchGetByDataFilterPostResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsValuesbatchGetByDataFilterPostResponseExample
  /v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter:
    post:
      tags:
      - Filter
      summary: Google Update by Data Filter
      description: Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more DataFilterValueRanges.
      security:
      - oauth2Auth: []
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
        example: application/json
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{spreadsheetId}}'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdateByDataFilterPostRequest'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsValuesbatchUpdateByDataFilterPostResponse'
              examples:
                SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample:
                  $ref: '#/components/examples/SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsValuesbatchUpdateByDataFilterPostResponseExample
  /v4/spreadsheets/{spreadsheetId}:getByDataFilter:
    post:
      tags:
      - Filter
      summary: Google Get Sheet by Data Filter
      description: 'Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.'
      security:
      - oauth2Auth: []
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
        example: application/json
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SpreadsheetsPostRequest2'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsPostResponse2'
              examples:
                SpreadsheetsPostResponse2Example:
                  $ref: '#/components/examples/SpreadsheetsPostResponse2Example'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsPostResponse2Example
components:
  examples:
    SpreadsheetsValuesbatchGetByDataFilterPostResponseExample:
      summary: Successful 200 response
      value:
        id: example-id
        name: Example Name
    SpreadsheetsPostResponse2Example:
      summary: Successful 200 response
      value:
        dataSourceSchedules:
        - dailySchedule:
            startTime:
              hours: -43266123
              minutes: -65732454
              nanos: -97450442
              seconds: -41631562
          enabled: false
          monthlySchedule:
            daysOfMonth:
            - 57977061
            startTime:
              hours: 3999156
              minutes: 89598075
              nanos: -62818558
              seconds: -7104959
          nextRun:
            endTime: ut tempor laborum
            startTime: veniam do nisi in
          refreshScope: DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED
          weeklySchedule:
            daysOfWeek:
            - SUNDAY
            startTime:
              hours: -98244095
              minutes: -4153534
              nanos: -31897594
              seconds: 83370707
        dataSources:
        - calculatedColumns:
          - formula: nisi sunt
            reference:
              name: qui reprehenderit
          dataSourceId: sed dolore incididunt
          sheetId: -56661553
          spec:
            bigQuery:
              projectId: aliqua velit
              querySpec:
                rawQuery: deserunt
              tableSpec:
                datasetId: culpa magna aliquip Duis
                tableId: occaecat deserunt
                tableProjectId: officia Duis ex in labore
            parameters:
            - name: Ut ad ipsum
              namedRangeId: magna
              range:
                endColumnIndex: 31885169
                endRowIndex: -4040036
                sheetId: -19707509
                startColumnIndex: 5926358
                startRowIndex: -24382075
        developerMetadata:
        - location:
            dimensionRange:
              dimension: DIMENSION_UNSPECIFIED
              endIndex: 83564351
              sheetId: 20161961
              startIndex: -12299871
            locationType: SHEET
            sheetId: 19412940
            spreadsheet: true
          metadataId: -26483526
          metadataKey: ad consectetur nulla
          metadataValue: cillum proident qui occaecat
          visibility: DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED
        namedRanges:
        - name: reprehenderit sed est aliquip Ut
          namedRangeId: amet dolore
          range:
            endColumnIndex: -29487355
            endRowIndex: 28833316
            sheetId: 2554752
            startColumnIndex: 75795510
            startRowIndex: -72526094
        properties:
          autoRecalc: ON_CHANGE
          defaultFormat:
            backgroundColor:
              alpha: -22421824.691030562
              blue: 90013088.65213957
              green: 24974090.92647165
              red: 88011821.65105522
            backgroundColorStyle:
              rgbColor:
                alpha: 51433993.220397204
                blue: -34599856.361609936
                green: 23834312.320355803
                red: 97183505.05098599
              themeColor: LINK
            borders:
              bottom:
                color:
                  alpha: -46461682.392919324
                  blue: -39600858.47643326
                  green: -12885677.880025923
                  red: 20395982.76429157
                colorStyle:
                  rgbColor:
                    alpha: -67713553.05349366
                    blue: 3075128.750359297
                    green: 89745091.64237362
                    red: 65057007.37397438
                  themeColor: ACCENT6
                style: DOUBLE
                width: -83132355
              left:
                color:
                  alpha: 7529742.843985558
                  blue: 11523153.264217004
                  green: -83789517.69852239
                  red: -52273453.1840499
                colorStyle:
                  rgbColor:
                    alpha: 23413126.31362365
                    blue: -89783978.4406965
                    green: 7478744.238987163
                    red: 91268984.47651386
                  themeColor: ACCENT4
                style: SOLID_THICK
                width: 9587363
              right:
                color:
                  alpha: -68478561.90889128
                  blue: 86635613.318176
                  green: -4182434.2241241187
                  red: -37761525.154127404
                colorStyle:
                  rgbColor:
                    alpha: 7564148.4709581435
                    blue: 46817587.00993326
                    green: 94604103.88139793
                    red: -39300118.4906812
                  themeColor: ACCENT4
                style: STYLE_UNSPECIFIED
                width: -68379222
              top:
                color:
                  alpha: -35207179.004029274
                  blue: 75124743.01189193
                  green: -79174603.1645633
                  red: 69525380.65581709
                colorStyle:
                  rgbColor:
                    alpha: 13971651.645456567
                    blue: 79134644.33448789
                    green: -8214105.3416944295
                    red: -55694700.72815168
                  themeColor: ACCENT6
                style: DASHED
                width: -47592569
            horizontalAlignment: HORIZONTAL_ALIGN_UNSPECIFIED
            hyperlinkDisplayType: HYPERLINK_DISPLAY_TYPE_UNSPECIFIED
            numberFormat:
              pattern: mollit magna ea
              type: TEXT
            padding:
              bottom: 3638265
              left: -10421780
              right: 70673792
              top: 74778750
            textDirection: TEXT_DIRECTION_UNSPECIFIED
            textFormat:
              bold: false
              fontFamily: reprehenderit cupidatat veniam Lorem do
              fontSize: -28113564
              foregroundColor:
                alpha: 22027996.78423269
                blue: -28716622.048885256
                green: -19625308.709902182
                red: -94408017.34685133
              foregroundColorStyle:
                rgbColor:
                  alpha: 71419372.2264759
                  blue: -82168243.51208629
                  green: -14187866.496848583
                  red: -65181659.34325215
                themeColor: ACCENT6
              italic: true
              link:
                uri: ullamco elit
              strikethrough: true
              underline: false
            textRotation:
              angle: -56348588
              vertical: true
            verticalAlignment: VERTICAL_ALIGN_UNSPECIFIED
            wrapStrategy: WRAP
          iterativeCalculationSettings:
            convergenceThreshold: -28283351.56397684
            maxIterations: -12335234
          locale: exercitation cillum
          spreadsheetTheme:
            primaryFontFamily: ut
            themeColors:
            - color:
                rgbColor:
                  alpha: -31710249.01160507
                  blue: 26026986.419538647
                  green: -43409395.90685053
                  red: 92736615.8684296
                themeColor: THEME_COLOR_TYPE_UNSPECIFIED
              colorType: ACCENT5
          timeZone: dolore laborum
          title: pariatur consectetur enim
        sheets:
        - bandedRanges:
          - bandedRangeId: 43139549
            columnProperties:
              firstBandColor:
                alpha: -4656388.077727273
                blue: -96613087.81631872
                green: 4264693.804137036
                red: 15111703.323823318
              firstBandColorStyle:
                rgbColor:
                  alpha: 99618076.90212369
                  blue: -49006881.50795429
                  green: 40319994.66356942
                  red: 65200542.683243126
                themeColor: ACCENT6
              footerColor:
                alpha: -33490013.551426753
                blue: 32916340.128778905
                green: 45262863.20501071
                red: 19556816.571504414
              footerColorStyle:
                rgbColor:
                  alpha: -12068084.107148275
                  blue: -67832617.26921017
                  green: 22561836.25395614
                  red: -12142418.295326784
                themeColor: LINK
              headerColor:
                alpha: -92687886.79756828
                blue: -43280044.32060295
                green: -23303373.12507233
                red: -780389.2770115584
              headerColorStyle:
                rgbColor:
                  alpha: 8336086.317506105
                  blue: -49729232.317501724
                  green: -93612445.38047923
                  red: 31375535.857318223
                themeColor: LINK
              secondBandColor:
                alpha: 99568934.50178161
                blue: -91350629.81953612
                green: -92964471.4278552
                red: 37608193.63273704
              secondBandColorStyle:
                rgbColor:
                  alpha: 8970943.769093469
                  blue: -88201063.90158297
                  green: -13429353.495263636
                  red: 53969915.37868002
                themeColor: ACCENT5
            range:
              endColumnIndex: 87619727
              endRowIndex: 20345160
              sheetId: -65789249
              startColumnIndex: -45948999
              startRowIndex: -91737266
            rowProperties:
              firstBandColor:
                alpha: 72010730.72591546
                blue: 36846314.31772801
                green: -96974888.03108025
                red: 15421378.969790965
              firstBandColorStyle:
                rgbColor:
                  alpha: -22875637.799782306
                  blue: -73894833.409663
                  green: 91215030.05576509
                  red: -50423962.36714643
                themeColor: ACCENT5
              footerColor:
                alpha: 29168021.166943878
                blue: -73831066.69786125
                green: -89420542.5069429
                red: 62593032.88934922
              footerColorStyle:
                rgbColor:
                  alpha: 43818785.12623486
                  blue: -45213359.909048915
                  green: 82881046.86449617
                  red: 72695904.25279978
                themeColor: THEME_COLOR_TYPE_UNSPECIFIED
              headerColor:
                alpha: -60297724.716774106
                blue: -89358737.19895242
                green: 9563382.870461494
                red: -7656815.10466139
              headerColorStyle:
                rgbColor:
                  alpha: -2842718.0475878417
                  blue: -2902275.1736353934
                  green: 9050794.865266055
                  red: -56674654.576242566
                themeColor: ACCENT1
              secondBandColor:
                alpha: -58009568.66879341
                blue: 58834392.95665088
                green: 55256317.50557256
                red: 75550157.79389471
              secondBandColorStyle:
                rgbColor:
                  alpha: -30634601.267103404
                  blue: 55532206.36613929
                  green: -36562285.06917545
                  red: 13711659.906762823
                themeColor: THEME_COLOR_TYPE_UNSPECIFIED
          basicFilter:
            criteria:
              doloreb_:
                condition:
                  type: DATE_ON_OR_BEFORE
                  values:
                  - relativeDate: YESTERDAY
                    userEnteredValue: id minim nisi elit
                hiddenValues:
                - ullamco nisi Excepteur anim
                visibleBackgroundColor:
                  alpha: -81353007.03492567
                  blue: -38141297.090509996
                  green: 69154203.18882197
                  red: 36035439.413398474
                visibleBackgroundColorStyle:
                  rgbColor:
                    alpha: 91173489.24772286
                    blue: -89346769.05947395
                    green: -19404805.972366154
                    red: -80230975.30043045
                  themeColor: ACCENT1
                visibleForegroundColor:
                  alpha: 57217398.74284211
                  blue: 74154308.04036638
                  green: 73016659.72982222
                  red: -22213180.456824318
                visibleForegroundColorStyle:
                  rgbColor:
                    alpha: -43145436.167499796
                    blue: 74653537.38607502
                    green: 3025279.31792067
                    red: 79218590.71985793
                  themeColor: BACKGROUND
            filterSpecs:
            - columnIndex: 78389632
              dataSourceColumnReference:
                name: in incididunt fugiat nostrud pariatur
              filterCriteria:
                condition:
                  type: DATE_NOT_EQ
                  values:
                  - relativeDate: YESTERDAY
                    userEnteredValue: laborum consectetur sit minim
                hiddenValues:
                - nulla pariatur qui ipsum
                visibleBackgroundColor:
                  alpha: -91665830.15722671
                  blue: -99904560.26291601
                  green: 65347039.68829051
                  red: 63151914.08808029
                visibleBackgroundColorStyle:
                  rgbColor:
                    alpha: 499116.31694211066
                    blue: 68604299.30482864
                    green: 98759492.96351925
                    red: 14867204.90616484
                  themeColor: BACKGROUND
                visibleForegroundColor:
                  alpha: 50134573.64080387
                  blue: -87982539.28045554
                  green: -54603731.334672555
                  red: -64824031.22209801
                visibleForegroundColorStyle:
                  rgbColor:
                    alpha: -73656646.24134824
                    blue: 2700641.501126051
                    green: 33008212.7396079
                    red: 16719230.552707165
                  themeColor: ACCENT4
            range:
              endColumnIndex: -43877930
              endRowIndex: -8809700
              sheetId: 64318214
              startColumnIndex: -7032303
              startRowIndex: 39815904
            sortSpecs:
            - backgroundColor:
                alpha: -28651638.96061036
                blue: 45673855.84156752
                green: 86189187.70006451
                red: -74364203.78529602
              backgroundColorStyle:
                rgbColor:
                  alpha: -3168584.4773793966
                  blue: -56626033.75210678
                  green: 72484110.2359632
                  red: 692312.8745354861
                themeColor: ACCENT1
              dataSourceColumnReference:
                name: veniam sunt velit culpa dolor
              dimensionIndex: 11289450
              foregroundColor:
                alpha: 96699958.53379482
                blue: 76576567.97638994
                green: -97320362.404836
                red: -16790174.071512222
              foregroundColorStyle:
                rgbColor:
                  alpha: 67120313.76985142
                  blue: -79175402.66751315
                  green: 40644773.578526884
                  red: 84483907.11570269
                themeColor: TEXT
              sortOrder: DESCENDING
          charts:
          - border:
              color:
                alpha: -6806672.500234127
                blue: -59007826.50270249
                green: 10160147.46663165
                red: -20321148.950214908
              colorStyle:
                rgbColor:
                  alpha: 91689568.81668949
                  blue: 2961191.4176778793
                  green: 35578319.610948086
                  red: -5716472.749471709
                themeColor: ACCENT4
            chartId: -32308995
            position:
              newSheet: true
              overlayPosition:
                anchorCell:
                  columnIndex: -17264157
                  rowIndex: 17971192
                  sheetId: -70644812
                heightPixels: 68423649
                offsetXPixels: -94619858
                offsetYPixels: -40214573
                widthPixels: 77699500
              sheetId: 63263059
            spec:
              altText: deserunt proident nisi velit
              backgroundColor:
                alpha: -74849362.71468747
                blue: -33495356.529037237
                green: -62285800.332203634
                red: -71890137.92690893
              backgroundColorStyle:
                rgbColor:
                  alpha: -79372460.55857861
                  blue: -95212341.51298112
                  green: 89931702.92362115
                  red: -20165241.53386876
                themeColor: THEME_COLOR_TYPE_UNSPECIFIED
              basicChart:
                axis:
                - format:
                    bold: false
                    fontFamily: minim ea deserunt sed
                    fontSize: 97507116
                    foregroundColor:
                      alpha: -38999236.44546352
                      blue: 40553042.374115616
                      green: -77531909.59799339
                      red: 79603930.29403087
                    foregroundColorStyle:
                      rgbColor:
                        alpha: 32307950.109844625
                        blue: -67183178.37236509
                        green: -71081574.55853146
                        red: 98483083.22794133
                      themeColor: ACCENT2
                    italic: false
                    link:
                      uri: quis veniam dolor voluptate
                    strikethrough: false
                    underline: true
                  position: BOTTOM_AXIS
                  title: cupidatat esse nisi adipisicing
                  titleTextPosition:
                    horizontalAlignment: RIGHT
                  viewWindowOptions:
                    viewWindowMax: 72069702.17549679
                    viewWindowMin: -22257002.843773097
                    viewWindowMode: PRETTY
                chartType: STEPPED_AREA
                compareMode: DATUM
                domains:
                - domain:
                    aggregateType: SUM
                    columnReference:
                      name: consectetur deserunt mollit
                    groupRule:
                      dateTimeRule:
                        type: YEAR_MONTH
                      histogramRule:
                        intervalSize: -18521355.740935206
                        maxValue: 90158102.40211827
                        minValue: 87397122.90272304
                    sourceRange:
                      sources:
                      - endColumnIndex: -22668278
                        endRowIndex: 36123013
                        sheetId: 11952739
                        startColumnIndex: -32135218
                        startRowIndex: 66789128
                  reversed: true
                headerCount: 97182168
                interpolateNulls: true
                legendPosition: BOTTOM_LEGEND
                lineSmoothing: true
                series:
                - color:
                    alpha: 55722752.437729895
                    blue: 64477580.13592622
                    green: 71676688.93817422
                    red: -38156417.06576298
                  colorStyle:
                    rgbColor:
                      alpha: 28247526.09445946
                      blue: 69221968.87022421
                      green: 61917915.17307904
                      red: -17721228.542360783
                    themeColor: BACKGROUND
                  dataLabel:
                    customLabelData:
                      aggregateType: MEDIAN
                      columnReference:
                        name: occaecat consequat quis
                      groupRule:
                        dateTimeRule:
                          type: DAY_OF_WEEK
                        histogramRule:
                          intervalSize: -3857463.495657593
                          maxValue: -42586732.40078985
                          minValue: 37051651.2186895
                      sourceRange:
                        sources:
                        - endColumnIndex: -49248867
                          endRowIndex: -10371941
                          sheetId: 401546
                          startColumnIndex: -58085589
                          startRowIndex: -90982621
                    placement: BELOW
                    textFormat:
                      bold: false
                      fontFamily: exercita
                      fontSize: 81004203
                      foregroundColor:
                        alpha: 41517003.63395324
                        blue: -70330186.86511676
                        green: -40534404.20106273
                        red: -31969992.615171924
                      foregroundColorStyle:
                        rgbColor:
                          alpha: 17775650.16171652
                          blue: -13772557.713170916
                          green: 27090283.845191807
                          red: -90047236.70280597
                        themeColor: ACCENT5
                      italic: false
                      link:
                        uri: in incididunt
                      strikethrough: true
                      underline: false
                    type: NONE
                  lineStyle:
                    type: SOLID
                    width: -84876836
                  pointStyle:
                    shape: DIAMOND
                    size: 64452898.462776005
                  series:
                    aggregateType: SUM
                    columnReference:
                      name: magna
                    groupRule:
                      dateTimeRule:
                        type: MINUTE
                      histogramRule:
                        intervalSize: -70261025.00131163
                        maxValue: -30011278.55406885
                        minValue: 81851518.34003606
                    sourceRange:
                      sources:
                      - endColumnIndex: 44015002
                        endRowIndex: -98733261
                        sheetId: -35067209
                        startColumnIndex: 86137084
                        startRowIndex: 3077548
                  styleOverrides:
                  - color:
                      alpha: -69183513.89384103
                      blue: 19485706.81396036
                      green: 65328186.50077203
                      red: 12493290.07813476
                    colorStyle:
                      rgbColor:
                        alpha: -64008295.12294073
                        blue: -94462392.22749741
                        green: 88044885.24860078
                        red: -8836624.99906604
                      themeColor: ACCENT4
                    index: 7171408
                    pointStyle:
                      shape: STAR
                      size: -3552381.8585395366
                  targetAxis: BOTTOM_AXIS
                  type: BASIC_CHART_TYPE_UNSPECIFIED
                stackedType: STACKED
                threeDimensional: true
                totalDataLabel:
                  customLabelData:
                    aggregateType: AVERAGE
                    columnReference:
                      name: elit ut Duis dolor
                    groupRule:
                      dateTimeRule:
                        type: YEAR
                      histogramRule:
                        intervalSize: -5661235.146948233
                        maxValue: 77926629.53448138
                        minValue: 95577122.05968186
                    sourceRange:
                      sources:
                      - endColumnIndex: -76126877
                        endRowIndex: 42365670
                        sheetId: -76812357
                        startColumnIndex: 10226550
                        startRowIndex: 78881618
                  placement: RIGHT
                  textFormat:
                    bold: true


# --- truncated at 32 KB (425 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/google/refs/heads/main/openapi/google-filter-api-openapi.yml