> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://help.sigmacomputing.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://help.sigmacomputing.com/_mcp/server.

# Add report schedule

POST https://api.sigmacomputing.com/v2/reports/{reportId}/schedules
Content-Type: application/json

This endpoint allows you to create a scheduled export of a report. Scheduled exports are triggered by specific conditions or timings.

  ### Usage notes
  - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.
  - Retrieve relevant IDs based on the export contents and destination:
    - To export to one or more Sigma users, retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.
    - To export to one or more Sigma teams, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.
  - Reports can only be exported as entire PDFs. Exporting a specific page or element is not supported.
  - If you want to impersonate a user when scheduling a report export, use the [/v2/auth/token](https://help.sigmacomputing.com/reference/post-token) endpoint.

  ### Usage scenarios
  - **Periodic reporting**: Use this endpoint to trigger routine report exports at specific intervals (such as weekly or monthly) or when specific business conditions are met (such as specific sales targets or usage thresholds).

  ### Best practices
  - Regularly review and audit schedules to ensure unnecessary or expensive schedules are not being added.

Reference: https://help.sigmacomputing.com/reference/create-report-schedule

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: sigma-rest-api
  version: 1.0.0
paths:
  /v2/reports/{reportId}/schedules:
    post:
      operationId: createReportSchedule
      summary: Add report schedule
      description: >-
        This endpoint allows you to create a scheduled export of a report.
        Scheduled exports are triggered by specific conditions or timings.

          ### Usage notes
          - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.
          - Retrieve relevant IDs based on the export contents and destination:
            - To export to one or more Sigma users, retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.
            - To export to one or more Sigma teams, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.
          - Reports can only be exported as entire PDFs. Exporting a specific page or element is not supported.
          - If you want to impersonate a user when scheduling a report export, use the [/v2/auth/token](https://help.sigmacomputing.com/reference/post-token) endpoint.

          ### Usage scenarios
          - **Periodic reporting**: Use this endpoint to trigger routine report exports at specific intervals (such as weekly or monthly) or when specific business conditions are met (such as specific sales targets or usage thresholds).

          ### Best practices
          - Regularly review and audit schedules to ensure unnecessary or expensive schedules are not being added.
      tags:
        - Reports
      parameters:
        - name: reportId
          in: path
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: OAuth authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The response body.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/reports_createReportSchedule_Response_200'
      requestBody:
        description: The request body.
        content:
          application/json:
            schema:
              type: object
              properties:
                target:
                  type: array
                  items:
                    $ref: >-
                      #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems
                  description: One or more targets to send the report to.
                schedule:
                  $ref: >-
                    #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule
                  description: When to send the report export.
                configV2:
                  $ref: >-
                    #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2
                  description: Configuration settings for the export schedule.
                description:
                  type:
                    - string
                    - 'null'
                  description: Description of the scheduled export
              required:
                - target
                - schedule
                - configV2
servers:
  - url: https://api.sigmacomputing.com
    description: Server for GCP (US) hosted organizations
  - url: https://api.sa.gcp.sigmacomputing.com
    description: Server for GCP (KSA) hosted organizations
  - url: https://aws-api.sigmacomputing.com
    description: Server for AWS US (West) hosted organizations
  - url: https://api.us-a.aws.sigmacomputing.com
    description: Server for AWS US (East) hosted organizations
  - url: https://api.ca.aws.sigmacomputing.com
    description: Server for AWS Canada hosted organizations
  - url: https://api.eu.aws.sigmacomputing.com
    description: Server for AWS Europe hosted organizations
  - url: https://api.au.aws.sigmacomputing.com
    description: Server for AWS Australia and APAC hosted organizations
  - url: https://api.uk.aws.sigmacomputing.com
    description: Server for AWS UK hosted organizations
  - url: https://api.us.azure.sigmacomputing.com
    description: Server for Azure US hosted organizations
  - url: https://api.eu.azure.sigmacomputing.com
    description: Server for Azure Europe hosted organizations
  - url: https://api.ca.azure.sigmacomputing.com
    description: Server for Azure Canada hosted organizations
  - url: https://api.uk.azure.sigmacomputing.com
    description: Server for Azure United Kingdom hosted organizations
  - url: https://api.au.azure.sigmacomputing.com
    description: Server for Azure Australia hosted organizations
components:
  schemas:
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems:
      type: object
      properties:
        teamId:
          type: string
          description: Unique identifier of the team to export to
        email:
          type: string
          description: Email address to export to
        ccEmail:
          type: string
          description: Email address to add as a Cc recipient
        bccEmail:
          type: string
          description: Email address to add as a Bcc recipient
        ccTeamId:
          type: string
          description: Unique identifier of the team to add as a Cc recipient
        bccTeamId:
          type: string
          description: Unique identifier of the team to add as a Bcc recipient
        slackConversationId:
          type: string
          description: Slack channel ID or member ID to export to
        googleSpreadsheetUrl:
          type: string
          description: URL of the Google Sheet to export to
        googleDriveFolderUrl:
          type: string
          description: URL of the Google Drive folder to export to
        webhookUrl:
          type: string
          description: URL of the webhook endpoint to export to
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule:
      type: object
      properties:
        cronSpec:
          type: string
          description: >-
            A [cron expression](https://en.wikipedia.org/wiki/Cron). For
            example, `0 0 * * *`.
        timezone:
          type: string
          description: >-
            An [IANA timezone
            name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
            For example, `America/Los_Angeles`.
      required:
        - cronSpec
        - timezone
      description: When to send the report export.
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType:
      type: string
      enum:
        - PDF
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout:
      type: string
      enum:
        - portrait
        - landscape
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType
        layout:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout
        scaleFactor:
          type: number
          format: double
      required:
        - type
      description: Export format options. Reports only support PDF.
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems:
      type: object
      properties:
        formatOptions:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions
          description: Export format options. Reports only support PDF.
      required:
        - formatOptions
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings:
      type: object
      properties:
        mergeAttachments:
          type: boolean
          description: Combines multiple PDF attachments into a single file
        zipAttachments:
          type: boolean
          description: Send attachments as a .zip file
      description: Export attachment settings
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant:
      type: object
      properties:
        tagId:
          type: string
          description: Version tag to export
      description: Report variant
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type:
      type: string
      enum:
        - always
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type
      required:
        - type
      description: Always send the export
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type:
      type: string
      enum:
        - workbook
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type:
      type: string
      enum:
        - isEmpty
      description: Type of condition
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type
          description: Type of condition
        elementId:
          type: string
          description: ID of the element
      required:
        - type
        - elementId
      description: If there's no data
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type:
      type: string
      enum:
        - isNotEmpty
      description: Type of condition
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type
          description: Type of condition
        elementId:
          type: string
          description: ID of the element
      required:
        - type
        - elementId
      description: If there's data
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type:
      type: string
      enum:
        - column
      description: Type of condition
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op:
      type: string
      enum:
        - Equals
        - GreaterThan
        - GreaterThanEq
        - LessThan
        - LessThanEq
        - NotEquals
        - IsNull
        - IsNotNull
        - Contains
        - StartsWith
        - EndsWith
      description: Operator
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode:
      type: string
      enum:
        - any
        - all
      description: Kind of condition evaluation
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type:
      type: string
      enum:
        - boolean
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type
        value:
          type: boolean
      required:
        - type
        - value
      description: Boolean value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type:
      type: string
      enum:
        - integer
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type
        value:
          type: string
      required:
        - type
        - value
      description: Integer value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type:
      type: string
      enum:
        - text
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type
        value:
          type: string
      required:
        - type
        - value
      description: Text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type:
      type: string
      enum:
        - fixed-date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type
        date:
          type: string
          description: ISO-8601 date string
      required:
        - type
        - date
      description: Fixed date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3
      description: Column value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type
          description: Type of condition
        elementId:
          type: string
          description: ID of the element
        columnId:
          type: string
          description: ID of the column
        op:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op
          description: Operator
        mode:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode
          description: Kind of condition evaluation
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value
          description: Column value
      required:
        - type
        - elementId
        - columnId
        - op
        - mode
      description: If a condition is met
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type
        condition:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition
      required:
        - type
        - condition
      description: Send the export based on a condition
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1
      description: Export condition options
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type:
      type: string
      enum:
        - boolean
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type
        value:
          type: boolean
      required:
        - type
        - value
      description: Boolean value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type
        value:
          type: number
          format: double
      required:
        - type
        - value
      description: Number value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type:
      type: string
      enum:
        - text
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type
        value:
          type: string
      required:
        - type
        - value
      description: Text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type:
      type: string
      enum:
        - date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type:
      type: string
      enum:
        - fixed-date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type
        date:
          type: string
          description: ISO-8601 date string
      required:
        - type
        - date
      description: Fixed date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type
        unit:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      description: Relative date selection, for example "Next 4 days"
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type
      required:
        - type
      description: Null date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2
      description: Date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value
          description: Date selection
      required:
        - type
        - value
      description: Date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03
      description: Scalar value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type:
      type: string
      enum:
        - boolean-list
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value:
      type: object
      properties:
        'true':
          type: boolean
        'false':
          type: boolean
        'null':
          type: boolean
      required:
        - 'true'
        - 'false'
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value
      required:
        - type
        - value
      description: Boolean list value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type:
      type: string
      enum:
        - number-list
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type
        value:
          type: number
          format: double
      required:
        - type
        - value
      description: Number value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type:
      type: string
      enum:
        - number-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type
      required:
        - type
      description: Null number value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type
        value:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems
      required:
        - type
        - value
      description: Number list value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type:
      type: string
      enum:
        - text-list
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type:
      type: string
      enum:
        - text
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type
        value:
          type: string
      required:
        - type
        - value
      description: Text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type:
      type: string
      enum:
        - text-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type
      required:
        - type
      description: Null text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type
        value:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems
      required:
        - type
        - value
      description: Text list value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type:
      type: string
      enum:
        - date-list
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type:
      type: string
      enum:
        - fixed-date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type
        date:
          type: string
          description: ISO-8601 date string
      required:
        - type
        - date
      description: Fixed date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type
      required:
        - type
      description: Null date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type
        value:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems
      required:
        - type
        - value
      description: Date list value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22
      description: List value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type:
      type: string
      enum:
        - hierarchical-list
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType:
      type: string
      enum:
        - text
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType
        value:
          type: string
      required:
        - type
        - value
      description: Text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type
        value:
          type: array
          items:
            type: array
            items:
              $ref: >-
                #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems
          description: >-
            Array of hierarchy paths. Each path is an array of segments, from
            the highest selected level of the hierarchy down to the lowest
            selected level of the hierarchy. Each segment is a `{type: "text",
            value: string}` object. For example, a Region/State/City hierarchy
            control with Oakland selected would be represented as
            `[[{"type":"text","value":"West"},
            {"type":"text","value":"California"},
            {"type":"text","value":"Oakland"}]]`
      required:
        - type
        - value
      description: Hierarchical list value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type:
      type: string
      enum:
        - date-range
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type:
      type: string
      enum:
        - fixed-date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type
        date:
          type: string
          description: ISO-8601 date string
      required:
        - type
        - date
      description: Fixed date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type
        unit:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      description: Relative date selection, for example "Next 4 days"
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type
      required:
        - type
      description: Null date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2
      description: Date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type:
      type: string
      enum:
        - fixed-date
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type
        date:
          type: string
          description: ISO-8601 date string
      required:
        - type
        - date
      description: Fixed date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type
        unit:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      description: Relative date selection, for example "Next 4 days"
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type
      required:
        - type
      description: Null date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2
      description: Date selection
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type
        min:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min
          description: Date selection
        max:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max
          description: Date selection
      required:
        - type
        - min
        - max
      description: Date range value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type:
      type: string
      enum:
        - number-range
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type
        min:
          type: number
          format: double
          description: Minimum value of the range
        max:
          type: number
          format: double
          description: Maximum value of the range
      required:
        - type
      description: Number range value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type
      required:
        - type
      description: Null date value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type:
      type: string
      enum:
        - number-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type
      required:
        - type
      description: Null number value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type:
      type: string
      enum:
        - text-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type
      required:
        - type
      description: Null text value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type:
      type: string
      enum:
        - boolean-null
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type
      required:
        - type
      description: Null boolean value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63
      description: Null value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6
      description: Variable value
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings:
      type: object
      properties:
        controlValues:
          type: object
          additionalProperties:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues
          description: >-
            This object maps control IDs to the values that they should have
            when exporting the workbook.
      description: Report settings
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings
    V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2:
      type: object
      properties:
        title:
          type: string
          description: Title of the message
        messageBody:
          type: string
          description: Body of the message
        exportAttachments:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems
          description: Attachments to include in the export. Reports only support PDF.
        exportName:
          type: string
          description: Name of the scheduled export
        includeLink:
          type: boolean
          description: Include a link to the exported report
        runAsRecipient:
          type: boolean
          description: Run the export queries as the recipient
        attachmentSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings
          description: Export attachment settings
        reportVariant:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant
          description: Report variant
        conditionOptions:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions
          description: Export condition options
        reportSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings
          description: Report settings
      required:
        - title
        - messageBody
        - exportAttachments
      description: Configuration settings for the export schedule.
      title: >-
        V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule:
      type: object
      properties:
        cronSpec:
          type: string
          description: >-
            A [cron expression](https://en.wikipedia.org/wiki/Cron). For
            example, `0 0 * * *`.
        timezone:
          type: string
          description: >-
            An [IANA timezone
            name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
            For example, `America/Los_Angeles`.
      required:
        - cronSpec
        - timezone
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type:
      type: string
      enum:
        - PDF
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout:
      type: string
      enum:
        - portrait
        - landscape
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type
        layout:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout
        scaleFactor:
          type: number
          format: double
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type:
      type: string
      enum:
        - NONE
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType:
      type: string
      enum:
        - report
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems:
      type: object
      properties:
        formatOptions:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions
        workbookExportSource:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource
      required:
        - formatOptions
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings:
      type: object
      properties:
        mergePdfAttachments:
          type: boolean
        zipAttachments:
          type: boolean
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type:
      type: string
      enum:
        - always
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type:
      type: string
      enum:
        - workbook
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type:
      type: string
      enum:
        - isEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type
        sheetId:
          type: string
      required:
        - type
        - sheetId
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type:
      type: string
      enum:
        - isNotEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type
        sheetId:
          type: string
      required:
        - type
        - sheetId
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type:
      type: string
      enum:
        - sheetColumn
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0:
      type: string
      enum:
        - any
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1:
      type: string
      enum:
        - all
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op:
      type: string
      enum:
        - Equals
        - GreaterThan
        - GreaterThanEq
        - LessThan
        - LessThanEq
        - NotEquals
        - IsNotNull
        - IsNull
        - Contains
        - StartsWith
        - EndsWith
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type:
      type: string
      enum:
        - 'null'
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type:
      type: string
      enum:
        - bool
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type
        val:
          type: boolean
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type
        val:
          type: number
          format: double
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type:
      type: string
      enum:
        - integer
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type:
      type: string
      enum:
        - string
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type:
      type: string
      enum:
        - datetime
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type:
      type: string
      enum:
        - error
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type:
      type: string
      enum:
        - record
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type
        val:
          type: object
          additionalProperties:
            description: Any type
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type:
      type: string
      enum:
        - array
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type:
      type: string
      enum:
        - boolArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
        data:
          type: array
          items:
            type:
              - boolean
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type:
      type: string
      enum:
        - numberArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type:
      type: string
      enum:
        - bigintArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type:
      type: string
      enum:
        - stringArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type:
      type: string
      enum:
        - datetimeArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type:
      type: string
      enum:
        - bytesArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type:
      type: string
      enum:
        - variantArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type
        val:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type:
      type: string
      enum:
        - variant
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type
        sheetId:
          type: string
        mode:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode
        columnId:
          type: string
        op:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value
      required:
        - type
        - sheetId
        - mode
        - columnId
        - op
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type
        conditions:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems
      required:
        - type
        - conditions
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type:
      type: string
      enum:
        - worksheet
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type:
      type: string
      enum:
        - isEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type:
      type: string
      enum:
        - isNotEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type:
      type: string
      enum:
        - queryColumn
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0:
      type: string
      enum:
        - any
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1:
      type: string
      enum:
        - all
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op:
      type: string
      enum:
        - Equals
        - GreaterThan
        - GreaterThanEq
        - LessThan
        - LessThanEq
        - NotEquals
        - IsNotNull
        - IsNull
        - Contains
        - StartsWith
        - EndsWith
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type:
      type: string
      enum:
        - 'null'
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type:
      type: string
      enum:
        - bool
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type
        val:
          type: boolean
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type
        val:
          type: number
          format: double
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type:
      type: string
      enum:
        - integer
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type:
      type: string
      enum:
        - string
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type:
      type: string
      enum:
        - datetime
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type:
      type: string
      enum:
        - error
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type:
      type: string
      enum:
        - record
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type
        val:
          type: object
          additionalProperties:
            description: Any type
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type:
      type: string
      enum:
        - array
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type:
      type: string
      enum:
        - boolArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
        data:
          type: array
          items:
            type:
              - boolean
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type:
      type: string
      enum:
        - numberArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type:
      type: string
      enum:
        - bigintArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type:
      type: string
      enum:
        - stringArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type:
      type: string
      enum:
        - datetimeArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type:
      type: string
      enum:
        - bytesArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type:
      type: string
      enum:
        - variantArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type
        val:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type:
      type: string
      enum:
        - variant
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type
        mode:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode
        columnId:
          type: string
        op:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value
      required:
        - type
        - mode
        - columnId
        - op
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type
        conditions:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems
      required:
        - type
        - conditions
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type:
      type: string
      enum:
        - dashboard
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type:
      type: string
      enum:
        - isEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type
        tileId:
          type: string
      required:
        - type
        - tileId
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type:
      type: string
      enum:
        - isNotEmpty
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type
        tileId:
          type: string
      required:
        - type
        - tileId
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type:
      type: string
      enum:
        - chartColumn
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0:
      type: string
      enum:
        - any
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1:
      type: string
      enum:
        - all
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op:
      type: string
      enum:
        - Equals
        - GreaterThan
        - GreaterThanEq
        - LessThan
        - LessThanEq
        - NotEquals
        - IsNotNull
        - IsNull
        - Contains
        - StartsWith
        - EndsWith
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type:
      type: string
      enum:
        - 'null'
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type:
      type: string
      enum:
        - bool
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type
        val:
          type: boolean
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type
        val:
          type: number
          format: double
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type:
      type: string
      enum:
        - integer
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type:
      type: string
      enum:
        - string
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type:
      type: string
      enum:
        - datetime
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type:
      type: string
      enum:
        - error
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type:
      type: string
      enum:
        - record
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type
        val:
          type: object
          additionalProperties:
            description: Any type
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type:
      type: string
      enum:
        - array
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type:
      type: string
      enum:
        - boolArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type
        data:
          type: array
          items:
            type:
              - boolean
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type:
      type: string
      enum:
        - numberArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type:
      type: string
      enum:
        - bigintArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type:
      type: string
      enum:
        - stringArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type:
      type: string
      enum:
        - datetimeArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type
        data:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type:
      type: string
      enum:
        - bytesArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type:
      type: string
      enum:
        - variantArr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type
        data:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - data
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type
        val:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type:
      type: string
      enum:
        - variant
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type
        val:
          type: string
      required:
        - type
        - val
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type
        tileId:
          type: string
        mode:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode
        columnId:
          type: string
        op:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op
        value:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value
      required:
        - type
        - tileId
        - mode
        - columnId
        - op
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type
        conditions:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems
      required:
        - type
        - conditions
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow:
      type: string
      enum:
        - alltime
        - daily
        - weekly
        - always
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig:
      type: object
      properties:
        window:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow
        volume:
          type:
            - number
            - 'null'
          format: double
      required:
        - window
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems:
      type: object
      properties:
        id:
          type: string
        filterStr:
          type: string
      required:
        - id
        - filterStr
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems
    DashVariablesOneOf0Type:
      type: string
      enum:
        - boolean
      title: DashVariablesOneOf0Type
    DashVariables0:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf0Type'
        value:
          type:
            - boolean
            - 'null'
      required:
        - type
        - value
      title: DashVariables0
    DashVariablesOneOf1Type:
      type: string
      enum:
        - number
      title: DashVariablesOneOf1Type
    DashVariables1:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf1Type'
        value:
          type:
            - number
            - 'null'
          format: double
      required:
        - type
        - value
      title: DashVariables1
    DashVariablesOneOf2Type:
      type: string
      enum:
        - text
      title: DashVariablesOneOf2Type
    DashVariables2:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf2Type'
        value:
          type:
            - string
            - 'null'
      required:
        - type
        - value
      title: DashVariables2
    DashVariablesOneOf3Type:
      type: string
      enum:
        - date
      title: DashVariablesOneOf3Type
    DashVariablesOneOf3ValueOneOf0Type:
      type: string
      enum:
        - fixed
      title: DashVariablesOneOf3ValueOneOf0Type
    DashVariablesOneOf3Value0:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf3ValueOneOf0Type'
        date:
          type: number
          format: double
      required:
        - type
        - date
      title: DashVariablesOneOf3Value0
    DashVariablesOneOf3ValueOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: DashVariablesOneOf3ValueOneOf1Type
    DashVariablesOneOf3ValueOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: DashVariablesOneOf3ValueOneOf1Unit
    DashVariablesOneOf3Value1:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf3ValueOneOf1Type'
        unit:
          $ref: '#/components/schemas/DashVariablesOneOf3ValueOneOf1Unit'
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      title: DashVariablesOneOf3Value1
    DashVariablesOneOf3Value:
      oneOf:
        - $ref: '#/components/schemas/DashVariablesOneOf3Value0'
        - $ref: '#/components/schemas/DashVariablesOneOf3Value1'
      title: DashVariablesOneOf3Value
    DashVariables3:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf3Type'
        value:
          oneOf:
            - $ref: '#/components/schemas/DashVariablesOneOf3Value'
            - type: 'null'
      required:
        - type
        - value
      title: DashVariables3
    DashVariablesOneOf4Type:
      type: string
      enum:
        - number-list
      title: DashVariablesOneOf4Type
    DashVariables4:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf4Type'
        value:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - value
      title: DashVariables4
    DashVariablesOneOf5Type:
      type: string
      enum:
        - text-list
      title: DashVariablesOneOf5Type
    DashVariables5:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf5Type'
        value:
          type: array
          items:
            type:
              - string
              - 'null'
      required:
        - type
        - value
      title: DashVariables5
    DashVariablesOneOf6Type:
      type: string
      enum:
        - date-list
      title: DashVariablesOneOf6Type
    DashVariables6:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf6Type'
        value:
          type: array
          items:
            type:
              - number
              - 'null'
            format: double
      required:
        - type
        - value
      title: DashVariables6
    DashVariablesOneOf7Type:
      type: string
      enum:
        - boolean-list
      title: DashVariablesOneOf7Type
    DashVariablesOneOf7Value:
      type: object
      properties:
        'true':
          type: boolean
        'false':
          type: boolean
        'null':
          type: boolean
      required:
        - 'true'
        - 'false'
      title: DashVariablesOneOf7Value
    DashVariables7:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf7Type'
        value:
          $ref: '#/components/schemas/DashVariablesOneOf7Value'
      required:
        - type
        - value
      title: DashVariables7
    DashVariablesOneOf8Type:
      type: string
      enum:
        - date-range
      title: DashVariablesOneOf8Type
    DashVariablesOneOf8MinOneOf0Type:
      type: string
      enum:
        - fixed
      title: DashVariablesOneOf8MinOneOf0Type
    DashVariablesOneOf8Min0:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf8MinOneOf0Type'
        date:
          type: number
          format: double
      required:
        - type
        - date
      title: DashVariablesOneOf8Min0
    DashVariablesOneOf8MinOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: DashVariablesOneOf8MinOneOf1Type
    DashVariablesOneOf8MinOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: DashVariablesOneOf8MinOneOf1Unit
    DashVariablesOneOf8Min1:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf8MinOneOf1Type'
        unit:
          $ref: '#/components/schemas/DashVariablesOneOf8MinOneOf1Unit'
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      title: DashVariablesOneOf8Min1
    DashVariablesOneOf8Min:
      oneOf:
        - $ref: '#/components/schemas/DashVariablesOneOf8Min0'
        - $ref: '#/components/schemas/DashVariablesOneOf8Min1'
      title: DashVariablesOneOf8Min
    DashVariablesOneOf8MaxOneOf0Type:
      type: string
      enum:
        - fixed
      title: DashVariablesOneOf8MaxOneOf0Type
    DashVariablesOneOf8Max0:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf8MaxOneOf0Type'
        date:
          type: number
          format: double
      required:
        - type
        - date
      title: DashVariablesOneOf8Max0
    DashVariablesOneOf8MaxOneOf1Type:
      type: string
      enum:
        - prior
        - next
      title: DashVariablesOneOf8MaxOneOf1Type
    DashVariablesOneOf8MaxOneOf1Unit:
      type: string
      enum:
        - year
        - quarter
        - month
        - week
        - isoWeek
        - day
        - hour
        - minute
        - second
      title: DashVariablesOneOf8MaxOneOf1Unit
    DashVariablesOneOf8Max1:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf8MaxOneOf1Type'
        unit:
          $ref: '#/components/schemas/DashVariablesOneOf8MaxOneOf1Unit'
        x:
          type: number
          format: double
      required:
        - type
        - unit
        - x
      title: DashVariablesOneOf8Max1
    DashVariablesOneOf8Max:
      oneOf:
        - $ref: '#/components/schemas/DashVariablesOneOf8Max0'
        - $ref: '#/components/schemas/DashVariablesOneOf8Max1'
      title: DashVariablesOneOf8Max
    DashVariables8:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf8Type'
        min:
          oneOf:
            - $ref: '#/components/schemas/DashVariablesOneOf8Min'
            - type: 'null'
        max:
          oneOf:
            - $ref: '#/components/schemas/DashVariablesOneOf8Max'
            - type: 'null'
      required:
        - type
        - min
        - max
      title: DashVariables8
    DashVariablesOneOf9Type:
      type: string
      enum:
        - number-range
      title: DashVariablesOneOf9Type
    DashVariables9:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf9Type'
        min:
          type:
            - number
            - 'null'
          format: double
        max:
          type:
            - number
            - 'null'
          format: double
      required:
        - type
        - min
        - max
      title: DashVariables9
    DashVariablesOneOf10Type:
      type: string
      enum:
        - date-null
      title: DashVariablesOneOf10Type
    DashVariables10:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf10Type'
      required:
        - type
      title: DashVariables10
    DashVariablesOneOf11Type:
      type: string
      enum:
        - number-null
      title: DashVariablesOneOf11Type
    DashVariables11:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf11Type'
      required:
        - type
      title: DashVariables11
    DashVariablesOneOf12Type:
      type: string
      enum:
        - text-null
      title: DashVariablesOneOf12Type
    DashVariables12:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf12Type'
      required:
        - type
      title: DashVariables12
    DashVariablesOneOf13Type:
      type: string
      enum:
        - boolean-null
      title: DashVariablesOneOf13Type
    DashVariables13:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf13Type'
      required:
        - type
      title: DashVariables13
    DashVariablesOneOf14Type:
      type: string
      enum:
        - hierarchical-list
      title: DashVariablesOneOf14Type
    DashVariables14:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf14Type'
        value:
          type: array
          items:
            type: string
      required:
        - type
        - value
      title: DashVariables14
    DashVariablesOneOf15Type:
      type: string
      enum:
        - file
      title: DashVariablesOneOf15Type
    DashVariablesOneOf15Value:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        size:
          type: number
          format: double
        type:
          type: string
        downloadUrl:
          type: string
      required:
        - id
        - name
        - size
        - type
        - downloadUrl
      title: DashVariablesOneOf15Value
    DashVariables15:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf15Type'
        value:
          $ref: '#/components/schemas/DashVariablesOneOf15Value'
      required:
        - type
        - value
      title: DashVariables15
    DashVariablesOneOf16Type:
      type: string
      enum:
        - file-null
      title: DashVariablesOneOf16Type
    DashVariables16:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf16Type'
      required:
        - type
      title: DashVariables16
    DashVariablesOneOf17Type:
      type: string
      enum:
        - file-list
      title: DashVariablesOneOf17Type
    DashVariablesOneOf17ValueItems:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        size:
          type: number
          format: double
        type:
          type: string
        downloadUrl:
          type: string
      required:
        - id
        - name
        - size
        - type
        - downloadUrl
      title: DashVariablesOneOf17ValueItems
    DashVariables17:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DashVariablesOneOf17Type'
        value:
          type: array
          items:
            $ref: '#/components/schemas/DashVariablesOneOf17ValueItems'
      required:
        - type
        - value
      title: DashVariables17
    DashVariables:
      oneOf:
        - $ref: '#/components/schemas/DashVariables0'
        - $ref: '#/components/schemas/DashVariables1'
        - $ref: '#/components/schemas/DashVariables2'
        - $ref: '#/components/schemas/DashVariables3'
        - $ref: '#/components/schemas/DashVariables4'
        - $ref: '#/components/schemas/DashVariables5'
        - $ref: '#/components/schemas/DashVariables6'
        - $ref: '#/components/schemas/DashVariables7'
        - $ref: '#/components/schemas/DashVariables8'
        - $ref: '#/components/schemas/DashVariables9'
        - $ref: '#/components/schemas/DashVariables10'
        - $ref: '#/components/schemas/DashVariables11'
        - $ref: '#/components/schemas/DashVariables12'
        - $ref: '#/components/schemas/DashVariables13'
        - $ref: '#/components/schemas/DashVariables14'
        - $ref: '#/components/schemas/DashVariables15'
        - $ref: '#/components/schemas/DashVariables16'
        - $ref: '#/components/schemas/DashVariables17'
      title: DashVariables
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings:
      type: object
      properties:
        filters:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems
        variableValues:
          $ref: '#/components/schemas/DashVariables'
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type:
      type: string
      enum:
        - boolean
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type:
      type: string
      enum:
        - number
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type:
      type: string
      enum:
        - text
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type:
      type: string
      enum:
        - date
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type:
      type: string
      enum:
        - number-list
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type:
      type: string
      enum:
        - text-list
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type:
      type: string
      enum:
        - date-list
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type:
      type: string
      enum:
        - boolean-list
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type:
      type: string
      enum:
        - date-range
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type:
      type: string
      enum:
        - number-range
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type:
      type: string
      enum:
        - date-null
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type:
      type: string
      enum:
        - number-null
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type:
      type: string
      enum:
        - text-null
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type:
      type: string
      enum:
        - boolean-null
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13:
      type: object
      properties:
        type:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type
      required:
        - type
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables:
      oneOf:
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12
        - $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings:
      type: object
      properties:
        variables:
          type: object
          additionalProperties:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings:
      type: object
      properties:
        sourceNodeId:
          type: string
        recipientColumnId:
          type: string
      required:
        - sourceNodeId
        - recipientColumnId
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant:
      type: object
      properties:
        tagId:
          type: string
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts:
      type: object
      properties:
        embedId:
          type: string
        evalConnectionId:
          type: string
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts
    V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2:
      type: object
      properties:
        title:
          type: string
        messageBody:
          type: string
        notificationAttachments:
          type: array
          items:
            $ref: >-
              #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems
        includeLink:
          type: boolean
        runAsRecipient:
          type: boolean
        attachmentSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings
        conditionOptions:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions
        alertConfig:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig
        notificationName:
          type: string
        reportSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings
        dynamicExportSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings
        dynamicRecipientSettings:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings
        rowLimit:
          type: number
          format: double
        reportVariant:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant
        embedOpts:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts
      required:
        - title
        - messageBody
        - notificationAttachments
      title: >-
        V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2
    reports_createReportSchedule_Response_200:
      type: object
      properties:
        scheduledNotificationId:
          type: string
          description: Unique identifier of the scheduled export.
        reportId:
          type: string
          description: Unique identifier of the report.
        schedule:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule
        configV2:
          $ref: >-
            #/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2
        isSuspended:
          type: boolean
          description: Whether the schedule is currently suspended.
        ownerId:
          type: string
          description: Unique identifier of the user who owns the schedule.
        lastUpdatedByUser:
          type: string
          description: Unique identifier of the user who last updated the schedule.
        disabledAt:
          type:
            - string
            - 'null'
          format: date-time
          description: >-
            Timestamp when the schedule was disabled, or null if the schedule is
            active.
        disabledBy:
          type:
            - string
            - 'null'
          description: >-
            Unique identifier of the member who disabled the schedule, or null
            if the schedule is active.
        createdBy:
          type: string
          description: The identifier of the user who created this object.
        updatedBy:
          type: string
          description: The identifier of the user or process that last updated this object.
        createdAt:
          type: string
          format: date-time
          description: When the object was created.
        updatedAt:
          type: string
          format: date-time
          description: When the object was last updated.
      required:
        - scheduledNotificationId
        - reportId
        - schedule
        - configV2
        - isSuspended
        - ownerId
        - lastUpdatedByUser
        - disabledAt
        - disabledBy
        - createdBy
        - updatedBy
        - createdAt
        - updatedAt
      title: reports_createReportSchedule_Response_200
  securitySchemes:
    OAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 authentication

```

## Examples



**Request**

```json
{
  "target": [
    {}
  ],
  "schedule": {
    "cronSpec": "string",
    "timezone": "string"
  },
  "configV2": {
    "title": "string",
    "messageBody": "string",
    "exportAttachments": [
      {
        "formatOptions": {
          "type": "PDF"
        }
      }
    ]
  }
}
```

**Response**

```json
{
  "scheduledNotificationId": "string",
  "reportId": "string",
  "schedule": {
    "cronSpec": "string",
    "timezone": "string"
  },
  "configV2": {
    "title": "string",
    "messageBody": "string",
    "notificationAttachments": [
      {
        "formatOptions": {
          "layout": "portrait",
          "scaleFactor": 1.1,
          "type": "PDF"
        },
        "workbookExportSource": {
          "type": "report"
        }
      }
    ],
    "includeLink": true,
    "runAsRecipient": true,
    "attachmentSettings": {
      "mergePdfAttachments": true,
      "zipAttachments": true
    },
    "conditionOptions": {
      "type": "always"
    },
    "alertConfig": {
      "window": "alltime",
      "volume": 1.1
    },
    "notificationName": "string",
    "reportSettings": {
      "filters": [
        {
          "id": "string",
          "filterStr": "string"
        }
      ],
      "variableValues": {}
    },
    "dynamicExportSettings": {
      "variables": {}
    },
    "dynamicRecipientSettings": {
      "sourceNodeId": "string",
      "recipientColumnId": "string"
    },
    "rowLimit": 1.1,
    "reportVariant": {
      "tagId": "string"
    },
    "embedOpts": {
      "embedId": "string",
      "evalConnectionId": "string"
    }
  },
  "isSuspended": true,
  "ownerId": "string",
  "lastUpdatedByUser": "string",
  "disabledAt": "2024-01-15T09:30:00Z",
  "disabledBy": "string",
  "createdBy": "string",
  "updatedBy": "string",
  "createdAt": "2024-01-15T09:30:00Z",
  "updatedAt": "2024-01-15T09:30:00Z"
}
```

**SDK Code**

```python
import requests

url = "https://api.sigmacomputing.com/v2/reports/reportId/schedules"

payload = {
    "target": [{}],
    "schedule": {
        "cronSpec": "string",
        "timezone": "string"
    },
    "configV2": {
        "title": "string",
        "messageBody": "string",
        "exportAttachments": [{ "formatOptions": { "type": "PDF" } }]
    }
}
headers = {
    "Authorization": "<token>.",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.sigmacomputing.com/v2/reports/reportId/schedules';
const options = {
  method: 'POST',
  headers: {Authorization: '<token>.', 'Content-Type': 'application/json'},
  body: '{"target":[{}],"schedule":{"cronSpec":"string","timezone":"string"},"configV2":{"title":"string","messageBody":"string","exportAttachments":[{"formatOptions":{"type":"PDF"}}]}}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.sigmacomputing.com/v2/reports/reportId/schedules"

	payload := strings.NewReader("{\n  \"target\": [\n    {}\n  ],\n  \"schedule\": {\n    \"cronSpec\": \"string\",\n    \"timezone\": \"string\"\n  },\n  \"configV2\": {\n    \"title\": \"string\",\n    \"messageBody\": \"string\",\n    \"exportAttachments\": [\n      {\n        \"formatOptions\": {\n          \"type\": \"PDF\"\n        }\n      }\n    ]\n  }\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "<token>.")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.sigmacomputing.com/v2/reports/reportId/schedules")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = '<token>.'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"target\": [\n    {}\n  ],\n  \"schedule\": {\n    \"cronSpec\": \"string\",\n    \"timezone\": \"string\"\n  },\n  \"configV2\": {\n    \"title\": \"string\",\n    \"messageBody\": \"string\",\n    \"exportAttachments\": [\n      {\n        \"formatOptions\": {\n          \"type\": \"PDF\"\n        }\n      }\n    ]\n  }\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.sigmacomputing.com/v2/reports/reportId/schedules")
  .header("Authorization", "<token>.")
  .header("Content-Type", "application/json")
  .body("{\n  \"target\": [\n    {}\n  ],\n  \"schedule\": {\n    \"cronSpec\": \"string\",\n    \"timezone\": \"string\"\n  },\n  \"configV2\": {\n    \"title\": \"string\",\n    \"messageBody\": \"string\",\n    \"exportAttachments\": [\n      {\n        \"formatOptions\": {\n          \"type\": \"PDF\"\n        }\n      }\n    ]\n  }\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.sigmacomputing.com/v2/reports/reportId/schedules', [
  'body' => '{
  "target": [
    {}
  ],
  "schedule": {
    "cronSpec": "string",
    "timezone": "string"
  },
  "configV2": {
    "title": "string",
    "messageBody": "string",
    "exportAttachments": [
      {
        "formatOptions": {
          "type": "PDF"
        }
      }
    ]
  }
}',
  'headers' => [
    'Authorization' => '<token>.',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.sigmacomputing.com/v2/reports/reportId/schedules");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "<token>.");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"target\": [\n    {}\n  ],\n  \"schedule\": {\n    \"cronSpec\": \"string\",\n    \"timezone\": \"string\"\n  },\n  \"configV2\": {\n    \"title\": \"string\",\n    \"messageBody\": \"string\",\n    \"exportAttachments\": [\n      {\n        \"formatOptions\": {\n          \"type\": \"PDF\"\n        }\n      }\n    ]\n  }\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "<token>.",
  "Content-Type": "application/json"
]
let parameters = [
  "target": [[]],
  "schedule": [
    "cronSpec": "string",
    "timezone": "string"
  ],
  "configV2": [
    "title": "string",
    "messageBody": "string",
    "exportAttachments": [["formatOptions": ["type": "PDF"]]]
  ]
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.sigmacomputing.com/v2/reports/reportId/schedules")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```