openapi: 3.2.0 info: title: Sigma Computing Reports API version: '1.0' description: 'Operations tagged reports across 2 of this provider''s published API definitions: sigma-computing-public-rest-api-openapi.json, sigma-computing-rest-api-openapi.yaml. Each path carries the servers of the definition it was published in.' 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 tags: - name: reports paths: /v2/reports: get: summary: List reports description: "This endpoint retrieves a list of all available reports.\n\nAvailable reports include any reports in your My Documents folder and any reports you have access to.\n\nUsers with the Admin account type can optionally retrieve all reports in the organization.\n\n### Usage notes\nThis endpoint requires no parameters for basic requests, but supports query parameters for pagination and response limit.\n\n### Pagination\n\nThis endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows:\n\n- hasMore: A boolean value indicating whether there are more pages of data available beyond the current page.\n- total: The total number of entries available across all pages.\n- nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data.\n\n#### Example response for pagination\n```json\n{\n \"hasMore\": true,\n \"total\": 104,\n \"nextPage\": \"50\"\n}\n```\n\nTo request additional pages, include the `nextPage` option in your next request as the value of the `page` option. Repeat this process until `nextPage` returns `null`, indicating that there are no more pages to return.\n\n### Usage scenarios\n- **Report navigation**: Allows users to view their collection of reports and locate ones they need.\n- **Integration points**: Useful for building integrations that need to present users with a list of their available reports, such as in custom applications using embeds." parameters: - name: page schema: type: string description: Use to specify further pages using the string returned in the nextPage portion of the response. title: Page in: query - name: limit schema: type: number description: Number of results to return per page, with a maximum of 1,000 per request. Use the `page` option in subsequent requests to retrieve the next set of results. title: Limit in: query - name: excludeTags schema: type: boolean in: query - name: skipPermissionCheck schema: type: boolean description: Only available to Sigma admins. Return all reports regardless of whether the user has access. in: query - name: isArchived schema: type: boolean description: Return archived reports. in: query operationId: listReports responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries - nextPage properties: entries: type: array items: allOf: - type: object required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId properties: reportId: type: string description: Unique identifier of the report. title: Report ID reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number ownerId: type: string - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. - type: object properties: isArchived: type: boolean tags: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: type: string description: Array of results returned by the endpoint nextPage: type: - string - 'null' description: Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`. - type: object properties: total: type: number description: Total number of results. Useful to determine if there is a need to paginate. hasMore: type: boolean description: '**[Deprecated]** Indicates whether more results are available.' default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] post: summary: Create a report description: 'This endpoint lets you create an empty report in Sigma, enabling you to build presentation-ready documents for sharing insights with stakeholders. ### Usage notes - The **name** parameter is required to provide a name for the new report. - Use the **folderId** to specify the folder in which to save the report. Retrieve the **folderId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`. ### Usage scenarios - **Reliable export formatting**: Users can quickly generate a new blank report to create predictable, paginated exports. ### Best practices - **Naming conventions**: Establish and follow consistent naming conventions for reports to make it easier to manage and identify them within larger projects. - **Folder organization**: Use the **folderId** to organize reports into relevant folders, which helps in maintaining a tidy workspace, especially in environments with multiple users or teams. - **Access control**: Regularly review and manage access permissions for new reports, ensuring that only the appropriate personnel can view or edit sensitive data.' parameters: [] operationId: createReport requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - folderId - name properties: folderId: type: string description: ID of the folder where the new report is created. title: Folder ID name: type: string description: Name of the new report. title: Report Name - type: object properties: description: type: string description: Description of the report. title: Description examples: Create a blank report: value: folderId: 88889999-aaaa-bbbb-cccc-ddddeeeeffff name: My new blank Report description: This is a description responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId properties: reportId: type: string description: Unique identifier of the report. title: Report ID reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number ownerId: type: string - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. - type: object properties: isArchived: type: boolean tags: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: type: string examples: Response Example: value: reportId: 88889999-aaaa-bbbb-cccc-ddddeeeeffff reportUrlId: 57a96EMo3GVJG73179MV2l name: My new blank Report url: https://example.com/reports/88889999-aaaa-bbbb-cccc-ddddeeeeffff path: folder1 latestVersion: 1 isArchived: false createdAt: '2022-01-01T00:00:00.000Z' createdBy: user1 updatedAt: '2022-01-01T00:00:00.000Z' updatedBy: user1 ownerId: user1 default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}: get: summary: Get a report description: 'This endpoint retrieves a report by its unique identifier (`reportId`). It provides detailed information about the report, including its name, URL, path, and other metadata. ### Usage notes - The **reportId** parameter must be a valid UUID that uniquely identifies the report. Invalid or nonexistent IDs return an error. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. ### Usage scenarios - **Report search**: Allows users to view all of their reports and locate a specific one, as well as filter by criteria such as if it is archived. - **Data retrieval**: Developers can use this endpoint to programmatically retrieve details about a specific report to display its content or metadata in a custom user interface. - **Integration**: Use this endpoint for integrations where other systems need to fetch report details based on an ID provided through another interface or workflow. ### Best practices - Validate the **reportId** on the client side before making a request to avoid unnecessary server load caused by invalid requests.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: getReport responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId properties: reportId: type: string description: Unique identifier of the report. title: Report ID reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number ownerId: type: string - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. - type: object properties: isArchived: type: boolean tags: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: type: string examples: Response Example: value: reportId: 88889999-aaaa-bbbb-cccc-ddddeeeeffff reportUrlId: 57a96EMo3GVJG73179MV2l name: My report url: https://example.com/reports/88889999-aaaa-bbbb-cccc-ddddeeeeffff path: folder1 latestVersion: 1 createdAt: '2022-01-01T00:00:00.000Z' createdBy: user1 updatedAt: '2023-01-01T00:00:00.000Z' updatedBy: user2 ownerId: user1 isArchived: false tags: - versionTagId: 11112222-3333-4444-5555-666677778888 tagName: Production sourceVersion: 3 taggedReportId: aaaabbbb-cccc-dddd-eeee-ffff00001111 taggedAt: '2024-06-15T12:00:00.000Z' description: Describe my report default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/columns: get: summary: List columns for all elements in a report description: 'This endpoint retrieves all columns in a report for all data elements in the report. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. ### Usage scenarios - **Data exploration:** Enable users to explore the data structure of a report element, facilitating deeper analysis and understanding. - **Integration tasks:** Useful for developers integrating Sigma with other tools that need to know the data structure to map data accurately. ### Best practices - Use this endpoint when setting up interfaces that require specific knowledge about the data structure.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query operationId: listReportColumns responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: type: object required: - columnId - name - formula - type - elementId properties: columnId: type: string description: Column ID name: type: string description: Column name formula: type: string description: Column formula or source column reference. type: type: object description: The column's data type, represented as a recursive type object. elementId: type: string description: Element ID description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/controls: get: summary: List report controls description: 'This endpoint retrieves all control elements within a specific report. Control elements provide predefined interactions to users viewing a report, such as inputs that modify data or selections to filter data. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - To retrieve controls from a version-tagged report, pass the tag name in the `tagName` query parameter. Retrieve the tag name by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint and using the `tags.tagName` field in the response. ### Usage scenarios - **Dynamic data interaction:** Allows users to interact dynamically with the data presented in the report through various control mechanisms. - **Custom reporting:** Enables the creation of customizable reports where end users can adjust parameters to filter and sort data according to their requirements. ### Best practices - Ensure proper access controls are set to manage who can view or interact with the controls to prevent unauthorized data manipulation. - Use detailed and descriptive names for controls to facilitate easier identification and use by end users.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query - name: tagName schema: type: string description: Specifies the version tag of the report whose controls should be listed. title: Version tag in: query operationId: listReportControls responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: type: object required: - name - valueType properties: name: type: string valueType: oneOf: - type: string enum: - boolean - type: string enum: - number - type: string enum: - text - type: string enum: - date - type: string enum: - number-list - type: string enum: - text-list - type: string enum: - date-list - type: string enum: - boolean-list - type: string enum: - date-range - type: string enum: - number-range - type: string enum: - date-null - type: string enum: - number-null - type: string enum: - text-null - type: string enum: - boolean-null description: Value of the control description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/copy: post: summary: Duplicate a report description: "This endpoint lets you duplicate an existing report. The report copy can be placed in a different folder from the original report, potentially with a different name and description.\n\n### Usage notes\n- The `reportId` parameter specifies the original report to be copied. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n- The `destinationFolderId` in the request body specifies where to place the new report.\n - To use the \"My Documents\" folder for a specific user as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n - Retrieve the **folderId** of all folders by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n\n### Usage scenarios\n- **Reuse report structure**: Use an existing report as a baseline to make changes to.\n- **Backup**: Make a backup of a report before making significant changes.\n\n### Best practices\n- Always verify that the destination folder has the correct permissions set to avoid access issues." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: copyReport requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - destinationFolderId - name properties: destinationFolderId: type: string description: ID of the folder in which to place the copied report. title: Destination Folder ID name: type: string description: Name for the copied report as it appears in Sigma. title: New Report Name - type: object properties: description: type: string description: A description for the new report. title: New Description description: Body parameters for copying a report. responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId properties: reportId: type: string description: Unique identifier of the report. title: Report ID reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number ownerId: type: string - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. - type: object properties: isArchived: type: boolean tags: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: type: string default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/elements: get: summary: List elements in a report description: 'This endpoint retrieves all elements in a report, which lets you understand and interact with the individual components that make up the report, such as charts, tables, or controls. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - To retrieve elements from version-tagged reports, pass the `tagName` in the query parameters with the tag name. Retrieve the tag name by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint and using the `tags.name` included in the response for a given report. ### Usage scenarios - **Detailed analysis:** Developers and users can retrieve specific elements for detailed data analysis or further manipulation. - **Interface customization:** Allows for dynamic interface construction where users can choose which elements to display or interact with. ### Best practices - Use pagination to handle large numbers of elements efficiently, reducing load times and improving user experience. - Validate both the reportId and pageId to ensure they correspond to valid, accessible resources before making API calls.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query - name: tagName schema: type: string description: Specifies the version tag of the report whose elements should be listed. title: Version tag in: query operationId: listReportElements responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - elementId properties: elementId: type: string - type: object properties: name: type: string type: type: string columns: type: array items: type: string vizualizationType: type: string error: type: string description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/elements/{elementId}/columns: get: summary: List columns for a report element description: "This endpoint retrieves a list of columns associated with a specific element within a report. It provides metadata about each column, such as name and formula, which can be essential for understanding the data structure and for further data manipulation or analysis.\n\n ### Usage notes\n - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Retrieve the **elementId** by first calling the [/v2/reports/{reportId}/pages](listreportpages) endpoint, then calling the [/v2/reports/{reportId}/pages/{pageId}/elements](listreportpageelements) endpoint.\n - The element that you request must be a data element, such as a table, pivot table, or visualization. Requesting a UI or control element returns an error.\n - To retrieve element columns from a version-tagged report, pass the `tagName` query parameter with the tag name. Retrieve the tag name by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint and using the `tags.tagName` field in the response.\n\n ### Usage scenarios\n - **Data exploration:** Helps users explore the data structure of a report element, facilitating deeper analysis and understanding.\n - **Integration tasks:** Useful for developers integrating Sigma with other tools that need to know the data structure to map data accurately.\n\n ### Best practices\n - Validate the **elementId** to make sure it corresponds to the correct report element before querying.\n - Leverage this endpoint when setting up interfaces that require specific knowledge about the data structure." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: elementId schema: type: string description: Unique identifier of the report element. title: Element ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query - name: tagName schema: type: string description: Specifies the version tag of the report whose element columns should be listed. title: Version tag in: query operationId: listReportElementColumns responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: type: object required: - columnId - label - formula - type properties: columnId: type: string description: Column ID label: type: string description: Column name formula: type: string description: Column formula type: type: object description: The column's data type, represented as a recursive type object. description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/elements/{elementId}/query: get: summary: Get the SQL query for a report element description: 'This endpoint retrieves the SQL query associated with a specific element in a report. It allows users to view and understand how the data for that element is being processed and transformed. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - Retrieve the **elementId** by first calling the [/v2/reports/{reportId}/pages](listreportpages) endpoint, then calling the [/v2/reports/{reportId}/pages/{pageId}/elements](listreportpageelements) endpoint. ### Usage scenarios - **Development and debugging:** Provides developers and analysts with the ability to retrieve and review the SQL code behind report elements, facilitating troubleshooting and enhancements. - **Educational insight:** Useful for training purposes or for users learning to understand the impact of various transformations and filters applied within their reports. ### Best practices - Ensure proper access controls are in place to manage who can view potentially sensitive query information. - Use this endpoint as part of a regular review process to ensure that all queries are optimized and up to date with current data schemas.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: elementId schema: type: string description: Unique identifier of the element title: Element ID in: path required: true operationId: getReportElementQuery responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - elementId properties: elementId: type: string - type: object properties: name: type: string sql: type: string error: type: string default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/export: post: summary: Export data from a report description: "This endpoint lets you create a file containing data exported from a report. Export the entire report or a single report page. Reports are exported as PDF documents.\n\nSuccessful requests return a **queryId**. Use the **queryId** with the [/v2/query/{queryId}/download](https://help.sigmacomputing.com/reference/download-query) endpoint to download the file when it is ready. See [Download an exported file](https://help.sigmacomputing.com/reference/download-query).\n\nTo export a report to a specific destination or recipient, see the [/v2/reports/{reportId}/send](https://help.sigmacomputing.com/reference/send-report) endpoint.\n\n### Usage notes\n- Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n- This endpoint is rate limited to 400 requests per minute.\n- If a page contains an expanded table, all pages of that table's data are included in the export, even if only the first page of the table is selected. \n- Only PDF exports are supported. Use the `layout` parameter to specify either `portrait` or `landscape` layout.\n- For security and privacy reasons, the `queryId` used to download the exported file expires 1 hour after your request is received. You can extend this to 6 hours using the `resultsValidityTimeMs` parameter.\n\n### Usage scenarios\n- **Conditional report export**: Based on an external set of conditions, export a report from Sigma.\n- **Integration**: Integrate enriched and analyzed data with other applications, providing the necessary data in a format that these applications can process.\n\n### Best practices\n- Clearly specify parameters to retrieve only the necessary data, optimizing performance and reducing network load." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: exportReport requestBody: description: The request body. content: application/json: schema: allOf: - oneOf: - type: object required: - format properties: format: type: object required: - type - layout properties: type: type: string enum: - pdf layout: type: string enum: - portrait - landscape description: Export an entire report title: Export an entire report - type: object required: - pageId - format properties: pageId: type: string description: Identifier of the report page. format: type: object required: - type - layout properties: type: type: string enum: - pdf layout: type: string enum: - portrait - landscape description: Export a page of a report title: Export a page of a report - type: object properties: parameters: type: object additionalProperties: type: string description: "Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n - %Y-%m-%d\n - %Y-%m-%dT%H:%M\n - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n - \"Date-Range\": \"min:2020-04-01,max:\"\n - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\"" timeout: type: number description: '' tag: type: string description: Specifies the version tag of the report to be exported. examples: Request Example: value: format: type: pdf layout: portrait parameters: region: North America timeout: 5 tag: my-tag responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - jobComplete - queryId properties: jobComplete: type: boolean queryId: type: string - type: object properties: rows: type: array items: type: object additionalProperties: {} message: type: string examples: Response Example: value: jobComplete: false queryId: 88889999-aaaa-bbbb-cccc-ddddeeeeffff default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/grants: post: summary: Grant permissions on a report to users or teams description: "You can use this endpoint to grant specific document permissions on a specific report to users or teams.\n\n ### Usage notes\n\n - Ensure the **reportId** in the path is valid and that the user has rights to modify its permissions. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Do not set both **memberId** and **teamId** in the same **grantee** object. Instead, choose one based on the target of the grant.\n\n - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n - Grant permissions on a specific version tag of a report by specifying the **tagId**. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.\n\n ### Usage scenarios\n\n - **Team collaboration**: Granting edit permissions to a team for collaborative work on a project.\n - **External access sharing**: Providing view access to an external consultant.\n\n ### Best practices\n\n - Validate user and team IDs before submitting them in a request to avoid errors.\n - Use the **tagId** to help manage and revoke grants systematically as project requirements change." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: createReportGrant requestBody: description: The request body. content: application/json: schema: type: object required: - grants properties: grants: type: array items: allOf: - type: object required: - grantee - permission properties: grantee: oneOf: - type: object required: - memberId properties: memberId: type: string description: The UUID of the member receiving the grant title: Member - type: object required: - teamId properties: teamId: type: string description: The UUID of the team receiving the grant title: Team permission: type: string enum: - view - edit description: Permission to grant for access to the report. title: ReportPermission - type: object properties: tagId: type: string title: Report grant creation request responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/grants/{grantId}: delete: summary: Delete a report grant description: "This endpoint deletes a specific grant from a report. Deleting a grant revokes the permissions associated with it, ensuring that the specified users or teams no longer have the access rights previously granted.\n\n ### Usage notes\n - **reportId:** The identifier of the report from which the grant is to be deleted. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - **grantId:** The identifier of the grant that needs to be removed. Retrieve the **grantId** by calling the [/v2/grants](https://help.sigmacomputing.com/reference/list-grants) endpoint with the `reportId` as the `inodeId`.\n\n ### Usage scenarios\n - **Access revocation:** Administrators can use this endpoint to manage and revoke access as team roles or project needs evolve.\n - **Security compliance:** Ensures that access to sensitive data within reports is tightly controlled and can be promptly adjusted in response to security policy changes or personnel updates.\n\n ### Best practices\n - Always confirm the identities associated with both the report and grant before proceeding with deletion to avoid accidental revocations.\n - Log and audit all grant deletions to maintain records for security audits and compliance tracking." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: grantId schema: type: string description: Unique identifier of the grant. title: Grant ID in: path required: true operationId: deleteReportGrant responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/lineage: get: summary: List lineage for a report description: "This endpoint lists the data elements in a report and their dependencies and relationships, providing a detailed view of how data is interconnected within a report.\n\n ### Usage notes\n - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n\n ### Usage scenarios\n - **Data governance:** Allows data managers to track how information is used and propagated through different report elements.\n - **Debugging and optimization:** Helps with identifying and resolving issues in data processing or report structure.\n - **Data source management**: Identify the dependencies of data sources in use in a specific report.\n\n ### Best practices\n - Integrate this information into documentation or data dictionaries to enhance transparency and understanding across teams.\n - Use this endpoint to regularly audit report structures, ensuring that all data connections and transformations are correct and optimized." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query operationId: listReportLineageTree responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: oneOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - sourceIds - elementId - dataSourceIds properties: sourceIds: type: - array - 'null' items: type: string description: List of direct sources for the element. Either element IDs or data source IDs. elementId: type: string description: Unique identifier of the element dataSourceIds: type: - array - 'null' items: type: string description: List of root sources for the element as data source IDs. description: '' title: Element details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - dataModelId properties: dataModelId: type: string description: '' title: Source data model details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - inodeId properties: inodeId: type: string description: '' title: Source table or dataset (deprecated) details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - definition properties: definition: type: string description: '' title: Custom SQL definition description: '' title: Source custom SQL details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - csvId properties: csvId: type: string description: Unique identifier of the uploaded CSV file title: CSV ID description: '' title: Source CSV upload details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - semanticViewId - semanticViewTable properties: semanticViewId: type: string description: Unique identifier of the semantic view title: Semantic view ID semanticViewTable: type: string description: Name of the table within the semantic view title: Semantic view table description: '' title: Source semantic view details - allOf: - allOf: - type: object required: - type properties: type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - type: object required: - connectionId - name properties: connectionId: type: - string - 'null' name: type: - string - 'null' - type: object required: - sqlDocumentId properties: sqlDocumentId: type: string description: '' title: Source SQL document details (deprecated) description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/lineage/elements/{elementId}: get: summary: List lineage of a report element description: "This endpoint retrieves the lineage and dependencies of a specific report element. It provides a detailed view of how data is interconnected within a report, which can be critical for understanding data sources and dependencies.\n\n ### Usage notes\n - **reportId:** The UUID of the report containing the element. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - **elementId:** The UUID of the element within the report whose lineage is being queried. Retrieve the **elementId** by first calling the [/v2/reports/{reportId}/pages](listreportpages) endpoint, then calling the [/v2/reports/{reportId}/pages/{pageId}/elements](listreportpageelements) endpoint.\n - The element that you request must be a data element, such as a table, pivot table, or visualization. Requesting a UI or control element returns an error.\n\n ### Usage scenarios\n - **Data governance:** Allows data managers to track how information is used and propagated through different report elements.\n - **Debugging and optimization:** Helps in identifying and resolving issues in data processing or in the structure of report setups.\n - **Data source management**: Identify the data sources in use in a specific report.\n\n ### Best practices\n - Use this endpoint to regularly audit report structures, ensuring that all data connections and transformations are correct and optimized.\n - Integrate this information into documentation or data dictionaries to enhance transparency and understanding across teams." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: elementId schema: type: string description: Unique identifier of the element title: Element ID in: path required: true operationId: listReportElementLineage responses: '200': description: The response body. content: application/json: schema: type: object required: - dependencies - edges properties: dependencies: type: object additionalProperties: oneOf: - type: object required: - nodeId - type properties: nodeId: type: string type: type: string description: '' title: Element details - allOf: - type: object required: - nodeId - type properties: nodeId: type: string type: type: string - type: object required: - name - elementId properties: name: type: string elementId: type: string description: '' title: Sheet details - allOf: - type: object required: - nodeId - type properties: nodeId: type: string type: type: string - type: object required: - name properties: name: type: string description: '' title: Data source details - allOf: - type: object required: - nodeId - type properties: nodeId: type: string type: type: string - type: object required: - name - semanticViewTable properties: name: type: string semanticViewTable: type: string description: '' title: Semantic view details type: object edges: type: array items: type: object required: - source - target - type properties: source: type: string target: type: string type: type: string enum: - lookup - source - dependency default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/pages: get: summary: List report pages description: 'This endpoint retrieves a list of all pages contained within a specified report. It is useful for applications needing to display an overview or navigate through different pages of a report. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - To retrieve pages from a version-tagged report, pass the `tag` query parameter with the tag name. Retrieve the tag name by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint and using the `tags.tagName` field in the response. ### Usage scenarios - **Navigation:** Helps users and applications navigate through different pages of a report efficiently. - **Content discovery:** Allows users to quickly view and access the variety of pages contained within a report. ### Best practices - Utilize pagination to manage and streamline the retrieval of large numbers of pages. - Ensure that users or systems querying this endpoint have appropriate permissions to access the report''s content.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query - name: tag schema: type: string description: Specifies the version tag of the report whose pages should be listed. title: Version tag in: query operationId: listReportPages responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - pageId properties: pageId: type: string description: Unique identifier of the report page. title: Page ID - type: object properties: name: type: string description: Display name of the report page. title: Page name hidden: type: boolean description: Whether the page is hidden from end users. title: Hidden description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/pages/{pageId}/elements: get: summary: List elements in a report page description: 'This endpoint retrieves all elements from a specific page within a report, which lets you understand and interact with the individual components that make up the page, such as charts, tables, or controls. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - Retrieve the **pageId** by calling the [/v2/reports/{reportId}/pages](listreportpages) endpoint. - To retrieve elements from a version-tagged report, pass the `tagName` query parameter with the tag name. Retrieve the tag name by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint and using the `tags.tagName` field in the response. ### Usage scenarios - **Detailed analysis:** Developers and users can retrieve specific elements for detailed data analysis or further manipulation. - **Interface customization:** Allows for dynamic interface construction where users can choose which elements to display or interact with. ### Best practices - Use pagination to handle large numbers of elements efficiently, reducing load times and improving user experience. - Validate both the reportId and pageId to ensure they correspond to valid, accessible resources before making API calls.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageId schema: type: string description: Unique identifier of the report page. title: Page ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query - name: tagName schema: type: string description: Specifies the version tag of the report whose elements should be listed. title: Version tag in: query operationId: listReportPageElements responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - elementId properties: elementId: type: string - type: object properties: name: type: string type: type: string columns: type: array items: type: string vizualizationType: type: string error: type: string description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/queries: get: summary: List SQL queries in a report description: "This endpoint retrieves a list of all SQL queries stored within a specific report. \n\n### Usage notes\n- Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n\n### Usage scenarios\n- **Audit and review:** Enables administrators and data governance teams to audit and review all the queries associated with a report for compliance and optimization.\n- **Query optimization:** Allows users to identify and optimize potentially inefficient or slow queries to improve performance.\n\n### Best practices\n- Use pagination to manage large sets of queries efficiently, especially in reports with extensive data manipulation.\n- Regularly review queries as part of data governance practices to ensure they remain up to date and perform optimally." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query operationId: listReportQueries responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - elementId properties: elementId: type: string - type: object properties: name: type: string sql: type: string error: type: string description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/schedules: get: summary: List scheduled report exports description: "This endpoint retrieves a list of all scheduled exports for a specified report. These schedules represent planned events that can trigger exports based on various conditions and timings.\n\n ### Usage Notes\n - The **reportId** in the path parameter identifies the report whose scheduled exports are to be listed. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Use pagination query parameters to manage the volume of data returned by this endpoint.\n\n ### Usage Scenarios\n - **Schedule overview**: Administrators or users with appropriate permissions can monitor and review all active scheduled exports associated with a report.\n - **Audit and compliance**: This functionality is useful for auditing purposes to ensure that all scheduled operations are configured correctly and comply with organizational policies.\n\n ### Best Practices\n - Implement client-side handling to manage paginated data effectively, especially in cases where a report has a large number of scheduled exports.\n - Regularly audit schedules to keep them up-to-date and aligned with current workflows." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: page schema: type: string description: Use to specify further pages using the string returned in the nextPage portion of the response. title: Page in: query - name: limit schema: type: number description: Number of results to return per page, with a maximum of 1,000 per request. Use the `page` option in subsequent requests to retrieve the next set of results. title: Limit in: query operationId: listReportSchedules responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries - nextPage properties: entries: type: array items: allOf: - type: object required: - scheduledNotificationId - reportId - schedule - configV2 - isSuspended - ownerId - lastUpdatedByUser - disabledAt - disabledBy properties: scheduledNotificationId: type: string description: Unique identifier of the scheduled export. title: Schedule ID reportId: type: string description: Unique identifier of the report. title: Report ID schedule: type: object required: - cronSpec - timezone 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`. configV2: allOf: - type: object required: - title - messageBody - notificationAttachments properties: title: type: string messageBody: type: string notificationAttachments: type: array items: allOf: - type: object required: - formatOptions properties: formatOptions: oneOf: - allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number - type: object required: - type properties: type: type: string enum: - NONE - type: object properties: workbookExportSource: type: object required: - type properties: type: type: string enum: - report - type: object properties: includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean conditionOptions: oneOf: - type: object required: - type properties: type: type: string enum: - always - type: object required: - type - conditions properties: type: type: string enum: - workbook conditions: type: array items: oneOf: - type: object required: - type - sheetId properties: type: type: string enum: - isEmpty sheetId: type: string - type: object required: - type - sheetId properties: type: type: string enum: - isNotEmpty sheetId: type: string - allOf: - type: object required: - type - sheetId - mode - columnId - op properties: type: type: string enum: - sheetColumn sheetId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - worksheet conditions: type: array items: oneOf: - type: object required: - type properties: type: type: string enum: - isEmpty - type: object required: - type properties: type: type: string enum: - isNotEmpty - allOf: - type: object required: - type - mode - columnId - op properties: type: type: string enum: - queryColumn mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - dashboard conditions: type: array items: oneOf: - type: object required: - type - tileId properties: type: type: string enum: - isEmpty tileId: type: string - type: object required: - type - tileId properties: type: type: string enum: - isNotEmpty tileId: type: string - allOf: - type: object required: - type - tileId - mode - columnId - op properties: type: type: string enum: - chartColumn tileId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' alertConfig: allOf: - type: object required: - window properties: window: type: string enum: - alltime - daily - weekly - always - type: object properties: volume: oneOf: - type: number - type: 'null' notificationName: type: string reportSettings: type: object properties: filters: type: array items: type: object required: - id - filterStr properties: id: type: string filterStr: type: string variableValues: $ref: '#/components/schemas/DashVariables' dynamicExportSettings: type: object properties: variables: type: object additionalProperties: oneOf: - type: object required: - type properties: type: type: string enum: - boolean - type: object required: - type properties: type: type: string enum: - number - type: object required: - type properties: type: type: string enum: - text - type: object required: - type properties: type: type: string enum: - date - type: object required: - type properties: type: type: string enum: - number-list - type: object required: - type properties: type: type: string enum: - text-list - type: object required: - type properties: type: type: string enum: - date-list - type: object required: - type properties: type: type: string enum: - boolean-list - type: object required: - type properties: type: type: string enum: - date-range - type: object required: - type properties: type: type: string enum: - number-range - type: object required: - type properties: type: type: string enum: - date-null - type: object required: - type properties: type: type: string enum: - number-null - type: object required: - type properties: type: type: string enum: - text-null - type: object required: - type properties: type: type: string enum: - boolean-null type: object dynamicRecipientSettings: type: object required: - sourceNodeId - recipientColumnId properties: sourceNodeId: type: string recipientColumnId: type: string rowLimit: type: number reportVariant: type: object properties: tagId: type: string embedOpts: type: object properties: embedId: type: string evalConnectionId: type: string isSuspended: type: boolean description: Whether the schedule is currently suspended. ownerId: type: string description: Unique identifier of the user who owns the schedule. title: Owner ID lastUpdatedByUser: type: string description: Unique identifier of the user who last updated the schedule. title: Last Updated By disabledAt: type: - string - 'null' format: date-time description: Timestamp when the schedule was disabled, or null if the schedule is active. title: Disabled At disabledBy: type: - string - 'null' description: Unique identifier of the member who disabled the schedule, or null if the schedule is active. title: Disabled By - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. description: Array of results returned by the endpoint nextPage: type: - string - 'null' description: Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`. - type: object properties: total: type: number description: Total number of results. Useful to determine if there is a need to paginate. hasMore: type: boolean description: '**[Deprecated]** Indicates whether more results are available.' default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] post: 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.\n\n ### Usage notes\n - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Retrieve relevant IDs based on the export contents and destination:\n - To export to one or more Sigma users, retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n - To export to one or more Sigma teams, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n - Reports can only be exported as entire PDFs. Exporting a specific page or element is not supported.\n - 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.\n\n ### Usage scenarios\n - **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).\n\n ### Best practices\n - Regularly review and audit schedules to ensure unnecessary or expensive schedules are not being added." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: createReportSchedule requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - target - schedule - configV2 properties: target: type: array items: 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 description: One or more targets to send the report to. schedule: type: object required: - cronSpec - timezone 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`. description: When to send the report export. configV2: allOf: - type: object required: - title - messageBody - exportAttachments properties: title: type: string description: Title of the message messageBody: type: string description: Body of the message exportAttachments: type: array items: type: object required: - formatOptions properties: formatOptions: allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number description: Export format options. Reports only support PDF. description: Attachments to include in the export. Reports only support PDF. - type: object properties: exportName: type: string description: Name of the scheduled export title: Export name includeLink: type: boolean description: Include a link to the exported report title: Include link runAsRecipient: type: boolean description: Run the export queries as the recipient title: Run as recipient attachmentSettings: type: object properties: mergeAttachments: type: boolean description: Combines multiple PDF attachments into a single file title: Merge attachments zipAttachments: type: boolean description: Send attachments as a .zip file title: Zip attachments description: Export attachment settings title: Export attachment settings reportVariant: type: object properties: tagId: type: string description: Version tag to export title: Version tag ID description: Report variant title: Report variant conditionOptions: oneOf: - type: object required: - type properties: type: type: string enum: - always description: Always send the export title: Always - type: object required: - type - condition properties: type: type: string enum: - workbook condition: oneOf: - type: object required: - type - elementId properties: type: type: string enum: - isEmpty description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID description: If there's no data title: Element is empty - type: object required: - type - elementId properties: type: type: string enum: - isNotEmpty description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID description: If there's data title: Element is not empty - allOf: - type: object required: - type - elementId - columnId - op - mode properties: type: type: string enum: - column description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID columnId: type: string description: ID of the column title: Column ID op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNull - IsNotNull - Contains - StartsWith - EndsWith description: Operator title: Operator mode: type: string enum: - any - all description: Kind of condition evaluation title: Condition check - type: object properties: value: oneOf: - type: object required: - type - value properties: type: type: string enum: - boolean value: type: boolean description: Boolean value title: Boolean value - type: object required: - type - value properties: type: type: string enum: - integer value: type: string description: Integer value title: Integer value - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection description: Column value title: Column value description: If a condition is met title: Column meets condition description: Send the export based on a condition title: Workbook condition description: Export condition options title: Export condition options reportSettings: type: object properties: controlValues: type: object additionalProperties: oneOf: - oneOf: - type: object required: - type - value properties: type: type: string enum: - boolean value: type: boolean description: Boolean value title: Boolean value - type: object required: - type - value properties: type: type: string enum: - number value: type: number description: Number value title: Number value - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type - value properties: type: type: string enum: - date value: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection description: Date value title: Date value description: Scalar value title: Scalar value - type: object required: - type - value properties: type: type: string enum: - boolean-list value: allOf: - type: object required: - 'true' - 'false' properties: 'true': type: boolean 'false': type: boolean - type: object properties: 'null': type: boolean description: Boolean list value title: Boolean list value - oneOf: - type: object required: - type - value properties: type: type: string enum: - number-list value: type: array items: oneOf: - type: object required: - type - value properties: type: type: string enum: - number value: type: number description: Number value title: Number value - type: object required: - type properties: type: type: string enum: - number-null description: Null number value title: Null number value description: Number list value title: Number list value - type: object required: - type - value properties: type: type: string enum: - text-list value: type: array items: oneOf: - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type properties: type: type: string enum: - text-null description: Null text value title: Null text value description: Text list value title: Text list value - type: object required: - type - value properties: type: type: string enum: - date-list value: type: array items: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date list value title: Date list value description: List value title: List value - type: object required: - type - value properties: type: type: string enum: - hierarchical-list value: type: array items: type: array items: type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value 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"}]]`' title: Hierarchy paths description: Hierarchical list value title: Hierarchical list value - type: object required: - type - min - max properties: type: type: string enum: - date-range min: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection max: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection description: Date range value title: Date range value - allOf: - type: object required: - type properties: type: type: string enum: - number-range - type: object properties: min: type: number description: Minimum value of the range title: Minimum value max: type: number description: Maximum value of the range title: Maximum value description: Number range value title: Number range value - oneOf: - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value - type: object required: - type properties: type: type: string enum: - number-null description: Null number value title: Null number value - type: object required: - type properties: type: type: string enum: - text-null description: Null text value title: Null text value - type: object required: - type properties: type: type: string enum: - boolean-null description: Null boolean value title: Null boolean value description: Null value title: Null value description: Variable value title: Variable value type: object description: This object maps control IDs to the values that they should have when exporting the workbook. title: Control values description: Report settings title: Report settings description: Configuration settings for the export schedule. - type: object properties: description: type: - string - 'null' description: Description of the scheduled export responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - scheduledNotificationId - reportId - schedule - configV2 - isSuspended - ownerId - lastUpdatedByUser - disabledAt - disabledBy properties: scheduledNotificationId: type: string description: Unique identifier of the scheduled export. title: Schedule ID reportId: type: string description: Unique identifier of the report. title: Report ID schedule: type: object required: - cronSpec - timezone 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`. configV2: allOf: - type: object required: - title - messageBody - notificationAttachments properties: title: type: string messageBody: type: string notificationAttachments: type: array items: allOf: - type: object required: - formatOptions properties: formatOptions: oneOf: - allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number - type: object required: - type properties: type: type: string enum: - NONE - type: object properties: workbookExportSource: type: object required: - type properties: type: type: string enum: - report - type: object properties: includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean conditionOptions: oneOf: - type: object required: - type properties: type: type: string enum: - always - type: object required: - type - conditions properties: type: type: string enum: - workbook conditions: type: array items: oneOf: - type: object required: - type - sheetId properties: type: type: string enum: - isEmpty sheetId: type: string - type: object required: - type - sheetId properties: type: type: string enum: - isNotEmpty sheetId: type: string - allOf: - type: object required: - type - sheetId - mode - columnId - op properties: type: type: string enum: - sheetColumn sheetId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - worksheet conditions: type: array items: oneOf: - type: object required: - type properties: type: type: string enum: - isEmpty - type: object required: - type properties: type: type: string enum: - isNotEmpty - allOf: - type: object required: - type - mode - columnId - op properties: type: type: string enum: - queryColumn mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - dashboard conditions: type: array items: oneOf: - type: object required: - type - tileId properties: type: type: string enum: - isEmpty tileId: type: string - type: object required: - type - tileId properties: type: type: string enum: - isNotEmpty tileId: type: string - allOf: - type: object required: - type - tileId - mode - columnId - op properties: type: type: string enum: - chartColumn tileId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' alertConfig: allOf: - type: object required: - window properties: window: type: string enum: - alltime - daily - weekly - always - type: object properties: volume: oneOf: - type: number - type: 'null' notificationName: type: string reportSettings: type: object properties: filters: type: array items: type: object required: - id - filterStr properties: id: type: string filterStr: type: string variableValues: $ref: '#/components/schemas/DashVariables' dynamicExportSettings: type: object properties: variables: type: object additionalProperties: oneOf: - type: object required: - type properties: type: type: string enum: - boolean - type: object required: - type properties: type: type: string enum: - number - type: object required: - type properties: type: type: string enum: - text - type: object required: - type properties: type: type: string enum: - date - type: object required: - type properties: type: type: string enum: - number-list - type: object required: - type properties: type: type: string enum: - text-list - type: object required: - type properties: type: type: string enum: - date-list - type: object required: - type properties: type: type: string enum: - boolean-list - type: object required: - type properties: type: type: string enum: - date-range - type: object required: - type properties: type: type: string enum: - number-range - type: object required: - type properties: type: type: string enum: - date-null - type: object required: - type properties: type: type: string enum: - number-null - type: object required: - type properties: type: type: string enum: - text-null - type: object required: - type properties: type: type: string enum: - boolean-null type: object dynamicRecipientSettings: type: object required: - sourceNodeId - recipientColumnId properties: sourceNodeId: type: string recipientColumnId: type: string rowLimit: type: number reportVariant: type: object properties: tagId: type: string embedOpts: type: object properties: embedId: type: string evalConnectionId: type: string isSuspended: type: boolean description: Whether the schedule is currently suspended. ownerId: type: string description: Unique identifier of the user who owns the schedule. title: Owner ID lastUpdatedByUser: type: string description: Unique identifier of the user who last updated the schedule. title: Last Updated By disabledAt: type: - string - 'null' format: date-time description: Timestamp when the schedule was disabled, or null if the schedule is active. title: Disabled At disabledBy: type: - string - 'null' description: Unique identifier of the member who disabled the schedule, or null if the schedule is active. title: Disabled By - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/schedules/{scheduleId}: patch: summary: Update a report schedule description: "This endpoint allows you to update an existing scheduled report export.\n\n ### Usage notes\n - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Retrieve the **scheduleId** by calling the [/v2/reports/{reportId}/schedules](https://help.sigmacomputing.com/reference/list-report-schedules) endpoint.\n - To add or update a team recipient, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n\n ### Usage scenarios\n - **Audit schedules**: Update schedules to ensure they are being exported at the correct times or to the correct recipients." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: scheduleId schema: type: string description: Unique identifier of the schedule. title: Schedule ID in: path required: true operationId: updateReportSchedule requestBody: description: The request body. content: application/json: schema: type: object properties: target: type: array items: 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 description: One or more targets to send the report to. schedule: 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`. description: When to send the report export. configV2: type: object properties: title: type: string description: Title of the message messageBody: type: string description: Body of the message exportAttachments: type: array items: type: object required: - formatOptions properties: formatOptions: allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number description: Export format options. Reports only support PDF. description: Attachments to include in the export. Reports only support PDF. exportName: type: string description: Name of the scheduled export title: Export name includeLink: type: boolean description: Include a link to the exported report title: Include link runAsRecipient: type: boolean description: Run the export queries as the recipient title: Run as recipient attachmentSettings: type: object properties: mergeAttachments: type: boolean description: Combines multiple PDF attachments into a single file title: Merge attachments zipAttachments: type: boolean description: Send attachments as a .zip file title: Zip attachments description: Export attachment settings title: Export attachment settings reportVariant: type: object properties: tagId: type: string description: Version tag to export title: Version tag ID description: Report variant title: Report variant conditionOptions: oneOf: - type: object required: - type properties: type: type: string enum: - always description: Always send the export title: Always - type: object required: - type - condition properties: type: type: string enum: - workbook condition: oneOf: - type: object required: - type - elementId properties: type: type: string enum: - isEmpty description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID description: If there's no data title: Element is empty - type: object required: - type - elementId properties: type: type: string enum: - isNotEmpty description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID description: If there's data title: Element is not empty - allOf: - type: object required: - type - elementId - columnId - op - mode properties: type: type: string enum: - column description: Type of condition title: Condition type elementId: type: string description: ID of the element title: Element ID columnId: type: string description: ID of the column title: Column ID op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNull - IsNotNull - Contains - StartsWith - EndsWith description: Operator title: Operator mode: type: string enum: - any - all description: Kind of condition evaluation title: Condition check - type: object properties: value: oneOf: - type: object required: - type - value properties: type: type: string enum: - boolean value: type: boolean description: Boolean value title: Boolean value - type: object required: - type - value properties: type: type: string enum: - integer value: type: string description: Integer value title: Integer value - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection description: Column value title: Column value description: If a condition is met title: Column meets condition description: Send the export based on a condition title: Workbook condition description: Export condition options title: Export condition options reportSettings: type: object properties: controlValues: type: object additionalProperties: oneOf: - oneOf: - type: object required: - type - value properties: type: type: string enum: - boolean value: type: boolean description: Boolean value title: Boolean value - type: object required: - type - value properties: type: type: string enum: - number value: type: number description: Number value title: Number value - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type - value properties: type: type: string enum: - date value: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection description: Date value title: Date value description: Scalar value title: Scalar value - type: object required: - type - value properties: type: type: string enum: - boolean-list value: allOf: - type: object required: - 'true' - 'false' properties: 'true': type: boolean 'false': type: boolean - type: object properties: 'null': type: boolean description: Boolean list value title: Boolean list value - oneOf: - type: object required: - type - value properties: type: type: string enum: - number-list value: type: array items: oneOf: - type: object required: - type - value properties: type: type: string enum: - number value: type: number description: Number value title: Number value - type: object required: - type properties: type: type: string enum: - number-null description: Null number value title: Null number value description: Number list value title: Number list value - type: object required: - type - value properties: type: type: string enum: - text-list value: type: array items: oneOf: - type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value - type: object required: - type properties: type: type: string enum: - text-null description: Null text value title: Null text value description: Text list value title: Text list value - type: object required: - type - value properties: type: type: string enum: - date-list value: type: array items: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date list value title: Date list value description: List value title: List value - type: object required: - type - value properties: type: type: string enum: - hierarchical-list value: type: array items: type: array items: type: object required: - type - value properties: type: type: string enum: - text value: type: string description: Text value title: Text value 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"}]]`' title: Hierarchy paths description: Hierarchical list value title: Hierarchical list value - type: object required: - type - min - max properties: type: type: string enum: - date-range min: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection max: oneOf: - type: object required: - type - date properties: type: type: string enum: - fixed-date date: type: string description: ISO-8601 date string title: ISO-8601 date string description: Fixed date selection title: Fixed date selection - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: Relative date selection, for example "Next 4 days" title: Relative date selection - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value description: Date selection title: Date selection description: Date range value title: Date range value - allOf: - type: object required: - type properties: type: type: string enum: - number-range - type: object properties: min: type: number description: Minimum value of the range title: Minimum value max: type: number description: Maximum value of the range title: Maximum value description: Number range value title: Number range value - oneOf: - type: object required: - type properties: type: type: string enum: - date-null description: Null date value title: Null date value - type: object required: - type properties: type: type: string enum: - number-null description: Null number value title: Null number value - type: object required: - type properties: type: type: string enum: - text-null description: Null text value title: Null text value - type: object required: - type properties: type: type: string enum: - boolean-null description: Null boolean value title: Null boolean value description: Null value title: Null value description: Variable value title: Variable value type: object description: This object maps control IDs to the values that they should have when exporting the workbook. title: Control values description: Report settings title: Report settings description: Configuration settings for the export schedule. description: type: - string - 'null' description: Description of the scheduled export suspensionAction: type: string enum: - pause - resume description: Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule. responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - scheduledNotificationId - reportId - schedule - configV2 - isSuspended - ownerId - lastUpdatedByUser - disabledAt - disabledBy properties: scheduledNotificationId: type: string description: Unique identifier of the scheduled export. title: Schedule ID reportId: type: string description: Unique identifier of the report. title: Report ID schedule: type: object required: - cronSpec - timezone 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`. configV2: allOf: - type: object required: - title - messageBody - notificationAttachments properties: title: type: string messageBody: type: string notificationAttachments: type: array items: allOf: - type: object required: - formatOptions properties: formatOptions: oneOf: - allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number - type: object required: - type properties: type: type: string enum: - NONE - type: object properties: workbookExportSource: type: object required: - type properties: type: type: string enum: - report - type: object properties: includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean conditionOptions: oneOf: - type: object required: - type properties: type: type: string enum: - always - type: object required: - type - conditions properties: type: type: string enum: - workbook conditions: type: array items: oneOf: - type: object required: - type - sheetId properties: type: type: string enum: - isEmpty sheetId: type: string - type: object required: - type - sheetId properties: type: type: string enum: - isNotEmpty sheetId: type: string - allOf: - type: object required: - type - sheetId - mode - columnId - op properties: type: type: string enum: - sheetColumn sheetId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - worksheet conditions: type: array items: oneOf: - type: object required: - type properties: type: type: string enum: - isEmpty - type: object required: - type properties: type: type: string enum: - isNotEmpty - allOf: - type: object required: - type - mode - columnId - op properties: type: type: string enum: - queryColumn mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' - type: object required: - type - conditions properties: type: type: string enum: - dashboard conditions: type: array items: oneOf: - type: object required: - type - tileId properties: type: type: string enum: - isEmpty tileId: type: string - type: object required: - type - tileId properties: type: type: string enum: - isNotEmpty tileId: type: string - allOf: - type: object required: - type - tileId - mode - columnId - op properties: type: type: string enum: - chartColumn tileId: type: string mode: oneOf: - type: string enum: - any - type: string enum: - all columnId: type: string op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith - type: object properties: value: oneOf: - type: object required: - type properties: type: type: string enum: - 'null' - type: object required: - type - val properties: type: type: string enum: - bool val: type: boolean - type: object required: - type - val properties: type: type: string enum: - number val: type: number - type: object required: - type - val properties: type: type: string enum: - integer val: type: string - type: object required: - type - val properties: type: type: string enum: - string val: type: string - type: object required: - type - val properties: type: type: string enum: - datetime val: type: string - type: object required: - type - val properties: type: type: string enum: - error val: type: string - type: object required: - type - val properties: type: type: string enum: - record val: type: object additionalProperties: {} - type: object required: - type - val properties: type: type: string enum: - array val: oneOf: - type: object required: - type - data properties: type: type: string enum: - boolArr data: type: array items: type: - boolean - 'null' - type: object required: - type - data properties: type: type: string enum: - numberArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bigintArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - stringArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - datetimeArr data: type: array items: type: - number - 'null' - type: object required: - type - data properties: type: type: string enum: - bytesArr data: type: array items: type: - string - 'null' - type: object required: - type - data properties: type: type: string enum: - variantArr data: type: array items: type: - string - 'null' - type: object required: - type - val properties: type: type: string enum: - variant val: type: string type: 'null' alertConfig: allOf: - type: object required: - window properties: window: type: string enum: - alltime - daily - weekly - always - type: object properties: volume: oneOf: - type: number - type: 'null' notificationName: type: string reportSettings: type: object properties: filters: type: array items: type: object required: - id - filterStr properties: id: type: string filterStr: type: string variableValues: $ref: '#/components/schemas/DashVariables' dynamicExportSettings: type: object properties: variables: type: object additionalProperties: oneOf: - type: object required: - type properties: type: type: string enum: - boolean - type: object required: - type properties: type: type: string enum: - number - type: object required: - type properties: type: type: string enum: - text - type: object required: - type properties: type: type: string enum: - date - type: object required: - type properties: type: type: string enum: - number-list - type: object required: - type properties: type: type: string enum: - text-list - type: object required: - type properties: type: type: string enum: - date-list - type: object required: - type properties: type: type: string enum: - boolean-list - type: object required: - type properties: type: type: string enum: - date-range - type: object required: - type properties: type: type: string enum: - number-range - type: object required: - type properties: type: type: string enum: - date-null - type: object required: - type properties: type: type: string enum: - number-null - type: object required: - type properties: type: type: string enum: - text-null - type: object required: - type properties: type: type: string enum: - boolean-null type: object dynamicRecipientSettings: type: object required: - sourceNodeId - recipientColumnId properties: sourceNodeId: type: string recipientColumnId: type: string rowLimit: type: number reportVariant: type: object properties: tagId: type: string embedOpts: type: object properties: embedId: type: string evalConnectionId: type: string isSuspended: type: boolean description: Whether the schedule is currently suspended. ownerId: type: string description: Unique identifier of the user who owns the schedule. title: Owner ID lastUpdatedByUser: type: string description: Unique identifier of the user who last updated the schedule. title: Last Updated By disabledAt: type: - string - 'null' format: date-time description: Timestamp when the schedule was disabled, or null if the schedule is active. title: Disabled At disabledBy: type: - string - 'null' description: Unique identifier of the member who disabled the schedule, or null if the schedule is active. title: Disabled By - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] delete: summary: Delete a scheduled export for a report description: "This endpoint deletes a specific scheduled export from a report. Deleting a schedule prevents any previously configured exports or alerts from being triggered at the scheduled times.\n\n ### Usage notes\n - The `reportId` in the path is required to identify the report. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - The `scheduleId` in the path is required to specify which schedule to delete. Retrieve the **scheduleId** by calling the [/v2/reports/{reportId}/schedules](https://help.sigmacomputing.com/reference/list-report-schedules) endpoint and using the `scheduledNotificationId` in the response.\n\n ### Usage scenarios\n - **Audit operations**: Use this endpoint to remove unnecessary or outdated schedules that are no longer relevant to the report's current use case.\n\n ### Best practices\n - Make sure that deleting a given schedule is in compliance with your organization's data governance and operational policies.\n - Verify the `scheduleId` and `reportId` before making a deletion request to prevent errors." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: scheduleId schema: type: string description: Unique identifier of the schedule. title: Schedule ID in: path required: true operationId: deleteReportSchedule responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/send: post: summary: Export a report description: 'Export a report to one or more specified destinations or recipients. Supported destinations include Slack channels, Google Drive, cloud storage, and webhooks. Supported recipients include an organization member, team, or email address. If you want to download a report PDF instead, see the [/v2/reports/{reportId}/export](https://help.sigmacomputing.com/reference/export-report) endpoint. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - Only PDF exports are supported for reports. - This endpoint is rate limited to 100 requests per minute.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: sendReport requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - targets - config - attachments properties: targets: type: array items: oneOf: - type: object required: - type - userId properties: type: type: string enum: - member userId: type: string description: '' title: User - type: object required: - type - teamId properties: type: type: string enum: - team teamId: type: string description: '' title: Team - type: object required: - type - email properties: type: type: string enum: - email email: type: string description: '' title: Email - type: object required: - type - slackConversationId properties: type: type: string enum: - slackChannel slackConversationId: type: string description: '' title: Slack channel - type: object required: - type - googleDriveFolderUrl properties: type: type: string enum: - gdrive googleDriveFolderUrl: type: string description: '' title: Google Drive - type: object required: - type - cloudExport properties: type: type: string enum: - cloud-export cloudExport: oneOf: - type: object required: - bq properties: bq: type: object required: - bqDestination properties: bqDestination: type: string - type: object required: - sf properties: sf: type: object required: - sfDestination - authorization properties: sfDestination: type: string authorization: type: string - type: object required: - rs properties: rs: type: object required: - rsDestination - authorization properties: rsDestination: type: string authorization: type: string description: '' title: Cloud Storage - type: object required: - type - webhookUrl properties: type: type: string enum: - webhook webhookUrl: type: string description: '' title: Webhook config: allOf: - type: object required: - title - messageBody properties: title: type: string messageBody: type: string - type: object properties: includeLink: type: boolean runAsRecipient: type: boolean attachments: type: array items: type: object required: - formatOptions properties: formatOptions: allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number - type: object properties: parameters: type: object additionalProperties: type: string timeout: type: number examples: Export a report as PDF via email: value: targets: - type: email email: test@example.com config: title: My report messageBody: Please find the report attached. includeLink: true attachments: - formatOptions: type: PDF responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/sources: get: summary: List report sources description: 'Get the data sources of a report given the reportId. The response can be a dataset (deprecated), table, custom SQL element, or the data model document and specific elements used as a source. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. ### Best practices - Validate the **reportId** on the client side before making a request to avoid unnecessary server load caused by invalid requests.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: listReportSources responses: '200': description: The response body. content: application/json: schema: type: array items: oneOf: - allOf: - type: object required: - type - dataModelId - elementIds properties: type: type: string enum: - data-model dataModelId: type: string elementIds: type: array items: type: string - type: object properties: versionTagId: type: string title: Data model source - type: object required: - type - inodeId properties: type: type: string enum: - dataset description: Dataset (deprecated) inodeId: type: string title: Dataset source (deprecated) - type: object required: - type - inodeId properties: type: type: string enum: - table inodeId: type: string title: Table source - type: object required: - type - connectionId - definition - customSqlId properties: type: type: string enum: - custom-sql connectionId: type: string description: ID of the connection where the custom SQL element is run. definition: type: string description: Raw SQL definition for the custom SQL element. customSqlId: type: string description: Element ID of the custom SQL. title: Custom SQL element default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/swapSources: post: summary: Swap report data sources description: 'Swap each data source used by a report. You can swap from one table, dataset (deprecated), or data model element to another for each data source. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. - Retrieve report sources by calling the [/v2/reports/{reportId}/sources](https://help.sigmacomputing.com/reference/list-report-sources) endpoint. - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint. - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint. - Retrieve the **tableId** by calling the [/v2/connection](https://help.sigmacomputing.com/reference/lookup-connection) endpoint. - Use the `sourceMapping` options in the request body to swap specific sources. For each source in the source mapping, provide the current source in use in the **from** object, and provide the source that you want to use instead in the **to** object. - If your source is a data model with one or more tagged versions, you can also provide a `versionTagId` to swap to or from a tagged version of the data model. The data model version must already be tagged. - If your source is a data model or a dataset, you can use the `metricMapping` option to map metrics that rely on column names from the old source to the new one so that they continue to work. - If the source that you swap from uses column names, links, or relationships different from the source that you are swapping to, use the `columnMapping` option to map each column in the original source to a corresponding column in the new source. ### Usage scenarios - **Report development**: Use a test data source during development, then swap to a production source when ready to share the report. - **Dataset migration**: Update references to deprecated dataset sources with data model sources by mapping dataset IDs to their new data model equivalents. ' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true operationId: sourceSwapReport requestBody: description: The request body. content: application/json: schema: type: object required: - sourceMapping properties: sourceMapping: type: array items: allOf: - type: object required: - from - to properties: from: oneOf: - type: object required: - type - tableId properties: type: type: string enum: - table tableId: type: string description: '' title: Table source - type: object required: - type - datasetId properties: type: type: string enum: - dataset datasetId: type: string description: '' title: Dataset source (deprecated) - allOf: - type: object required: - type - dataModelId - elementId properties: type: type: string enum: - data-model dataModelId: type: string elementId: type: string description: ID of the element in the data model title: Data model element ID - type: object properties: versionTagId: type: string description: '' title: Data model source - type: object required: - type - customSqlId properties: type: type: string enum: - custom-sql customSqlId: type: string description: ID of the element associated with the custom SQL element. title: Custom SQL element ID description: '' title: Custom SQL element description: Source to swap from. title: From data source to: oneOf: - type: object required: - type - tableId properties: type: type: string enum: - table tableId: type: string description: '' title: Table source - type: object required: - type - datasetId properties: type: type: string enum: - dataset datasetId: type: string description: '' title: Dataset source (deprecated) - allOf: - type: object required: - type - dataModelId - elementId properties: type: type: string enum: - data-model dataModelId: type: string elementId: type: string description: ID of the element in the data model title: Data model element ID - type: object properties: versionTagId: type: string description: '' title: Data model source - type: object required: - type - connectionId - definition properties: type: type: string enum: - custom-sql connectionId: type: string description: ID of the connection that the new custom SQL element will run against. title: Connection ID definition: type: string description: SQL query that defines the new custom SQL element. title: SQL definition description: '' title: Custom SQL element description: Source to swap to. title: To data source - type: object properties: metricMapping: type: array items: type: object required: - fromMetricId - toMetricId properties: fromMetricId: type: string description: Identifier of the metric in the data source title: Metric ID toMetricId: type: string description: Identifier of the metric in the data source title: Metric ID columnMapping: type: array items: type: object required: - fromColumn - toColumn properties: fromColumn: oneOf: - type: array items: type: string description: Column ID in the form ["column_id"] title: Column ID - type: array items: type: string description: Dataset or table link in the form ["link_name", "column_name"] title: Link - type: array items: type: string description: Relationship in the form ["relationship_id", "column_name"] title: Relationship toColumn: oneOf: - type: array items: type: string description: Column ID in the form ["column_id"] title: Column ID - type: array items: type: string description: Dataset or table link in the form ["link_name", "column_name"] title: Link - type: array items: type: string description: Relationship in the form ["relationship_id", "column_name"] title: Relationship responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/tag/{versionTag}/copy: post: summary: Duplicate a tagged report description: "This endpoint lets you duplicate a tagged report, creating a new report from the tagged version. The report copy can be placed in a different folder from the original report, potentially with a different name and description. This is useful for creating report templates or backups.\n### Usage notes\n- The reportId and version tag in the URL specify the tagged version of the report to duplicate. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. For the **versionTag**, you can specify either the tag name or ID. Retrieve the version tag name or ID by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint.\n- The `destinationFolderId` in the request body specifies where to place the new report.\n - To use the \"My Documents\" folder for a specific user as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n - Retrieve the **folderId** of all folders by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n### Best practices\n- Always verify that the destination folder has the correct permissions set to avoid access issues." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: versionTag schema: type: string description: The id or name of the version tag to use. title: versionTag in: path required: true operationId: copyTaggedReport requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - destinationFolderId - name properties: destinationFolderId: type: string description: ID of the folder in which to place the copied report. title: Destination Folder ID name: type: string description: Name for the copied report as it appears in Sigma. title: New Report Name - type: object properties: description: type: string description: A description for the new report. title: New Description description: Body parameters for copying a report. responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId properties: reportId: type: string description: Unique identifier of the report. title: Report ID reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number ownerId: type: string - type: object required: - createdBy - updatedBy - createdAt - updatedAt properties: 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. - type: object properties: isArchived: type: boolean tags: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: type: string default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/tags: get: summary: List tags for a report description: "Retrieve the version tag information for a report. Returns the same tag metadata as the [GET /v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint returns for a tagged report.\n ### Usage notes\n - Use this endpoint to provide on-demand access to version tag information for a report. For example, call the [GET /v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint with the \"excludeTags\" parameter set to `True` to improve performance, then use this endpoint to return tag information for specific reports." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query operationId: listReportTags responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - versionTagId - tagName - sourceVersion - taggedAt properties: versionTagId: type: string description: Unique identifier of the tag. title: Tag ID tagName: type: string sourceVersion: type: number taggedAt: type: string format: date-time - type: object required: - taggedReportId properties: taggedReportId: type: string description: Unique identifier of the tagged report. title: Report ID description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/tags/{tagId}: delete: summary: Remove a tag from a report description: "This endpoint allows you to remove outdated or unnecessary version tags from a report.\n\n ### Usage notes\n - **reportId:** The unique identifier for the report to remove the tag from. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - **tagId:** The unique identifier for the tag to remove. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.\n\n ### Usage scenarios\n - **Organizational updates:** Useful for administrators who need to update tagging schemes as project requirements change.\n - **Data management:** Ensures report metadata is relevant and current for easier access and identification.\n\n ### Best practices\n - Verify that the correct tag is being removed by reviewing its associated reports and the implications of its removal." parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: tagId schema: type: string description: Unique identifier of the version tag. title: Tag ID in: path required: true operationId: deleteTaggedReport responses: '200': description: The response body. content: application/json: schema: type: object properties: {} default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/{reportId}/version-history: get: summary: Get version history for a report description: 'Get version history for a report given the reportId. If the version history contains any tagged versions, the response includes information about those tags. ### Usage notes - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint. ### Usage scenarios - **Audit and compliance**: Demonstrate the history of changes to a report for audit and compliance purposes. - **Restoring previous versions**: Locate a prior version to compare against or restore after an unwanted change. ### Best practices - Validate the **reportId** before making a request to avoid invalid requests.' parameters: - name: reportId schema: type: string description: Unique identifier of the report. title: Report ID in: path required: true - name: pageToken schema: type: string description: Use to specify the next set of results with the string returned in the `nextPageToken` field of the previous response. title: Page token in: query - name: pageSize schema: type: integer description: Number of results to return per page, with a maximum of 1000. Defaults to 50. title: Page size in: query operationId: getReportVersionHistory responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries properties: entries: type: array items: allOf: - type: object required: - version - publishedAt - publishedBy properties: version: type: number publishedAt: type: string format: date-time publishedBy: type: string - type: object properties: tags: type: array items: type: object required: - versionTagId - taggedAt - taggedBy properties: versionTagId: type: string taggedAt: type: string format: date-time taggedBy: type: string description: Array of results returned by the endpoint title: Result entries - type: object properties: nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' title: Next page token default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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 /v2/reports/tag: post: summary: Tag a report description: "Add a version tag to a report and optionally set up a connection to swap to for a specific version of the report.\n\n ### Usage notes\n - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n - Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n - Retrieve the **connectionId** to use as the **fromId** or **toId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n - If your report includes a source that is not mapped to a new source, that source is not swapped.\n - When swapping data models used as the source for the report:\n - You can only swap a data model source to another version of the same data model source. You cannot swap a data model source to a table in your data warehouse or a dataset.\n - When you swap sources from one data model version to a new one, specify the version tag of the data model that you swap to with `toVersionTagId`:\n - To swap to the latest published version of the data model, specify `toVersionTagId` as `null`.\n - To swap to a specific tagged version of the data model, specify the `toVersionTagId` of the data model.\n - If the report already uses a specific tagged version of a data model as a source, use `fromVersionTagId` to indicate which tagged version to swap from.\n - To swap from the latest published version of the data model, specify `fromVersionTagId` as `null`.\n - To swap from a specific tagged version of the data model, specify the `fromVersionTagId` of the data model.\n - To retrieve the `fromVersionTagId` for a data model used as the report source, call the [/v2/reports/{reportId}/sources](https://help.sigmacomputing.com/reference/list-report-sources) endpoint and use the `versionTagId` in the response.\n - To retrieve the `versionTagId` for a data model, call the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint and use the `versionTagId` in the response.\n\n ### Usage scenarios\n - **Lifecycle management**: Identify production and development resources.\n " parameters: [] operationId: tagReport requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - reportId - tagName properties: reportId: type: string description: Unique identifier of the report. title: Report ID tagName: type: string description: Name of the version tag to apply. title: Version tag name - type: object properties: reportVersion: type: number description: Specific version of the published report to tag. sourceMappingConfig: type: array items: type: object required: - fromConnectionId - toConnectionId - paths properties: fromConnectionId: type: string toConnectionId: type: string paths: type: array items: type: object required: - fromPath - toPath properties: fromPath: type: array items: type: string toPath: type: array items: type: string description: Swap sources for the report when you add a tag. dataModelSourceTaggedVersions: type: array items: type: object required: - dataModelId - fromVersionTagId - toVersionTagId properties: dataModelId: type: string fromVersionTagId: type: - string - 'null' toVersionTagId: type: - string - 'null' description: Which tagged version of the data model to use as the source. isDefault: type: boolean description: Whether to make this tag the default tagged version to load if the user doesn't have access to the published version. examples: Request Example: value: reportId: 00000000-0000-0000-0000-000000000000 reportVersion: 4 tagName: production sourceMappingConfig: - fromConnectionId: 00000000-0000-0000-0000-000000000000 toConnectionId: 00000000-0000-0000-0000-000000000001 paths: - fromPath: - SNOWFLAKE_DEVELOPMENT - WEATHER - DAILY_14_TOTAL toPath: - SNOWFLAKE_PRODUCTION - WEATHER - DAILY_16_TOTAL isDefault: true responses: '200': description: The response body. content: application/json: schema: type: object required: - versionTagId - taggedReportId - taggedReportVersion properties: versionTagId: type: string taggedReportId: type: string description: Unique identifier of the report. title: Report ID taggedReportVersion: type: number default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - reports security: - oauth2: [] 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: responses: ApiError: description: Sigma API Error content: application/json: schema: type: object properties: message: type: string code: type: string requestId: type: string schemas: DashVariables: type: object additionalProperties: oneOf: - type: object required: - type - value properties: type: type: string enum: - boolean value: type: - boolean - 'null' description: '' title: boolean - type: object required: - type - value properties: type: type: string enum: - number value: type: - number - 'null' description: '' title: number - type: object required: - type - value properties: type: type: string enum: - text value: type: - string - 'null' description: '' title: text - type: object required: - type - value properties: type: type: string enum: - date value: oneOf: - type: 'null' - type: object required: - type - date properties: type: type: string enum: - fixed date: type: number - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: '' title: date - type: object required: - type - value properties: type: type: string enum: - number-list value: type: array items: oneOf: - type: number - type: 'null' description: '' title: number-list - type: object required: - type - value properties: type: type: string enum: - text-list value: type: array items: oneOf: - type: string - type: 'null' description: '' title: text-list - type: object required: - type - value properties: type: type: string enum: - date-list value: type: array items: oneOf: - type: number - type: 'null' description: '' title: date-list - type: object required: - type - value properties: type: type: string enum: - boolean-list value: allOf: - type: object required: - 'true' - 'false' properties: 'true': type: boolean 'false': type: boolean - type: object properties: 'null': type: boolean description: '' title: boolean-list - type: object required: - type - min - max properties: type: type: string enum: - date-range min: oneOf: - type: 'null' - type: object required: - type - date properties: type: type: string enum: - fixed date: type: number - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number max: oneOf: - type: 'null' - type: object required: - type - date properties: type: type: string enum: - fixed date: type: number - type: object required: - type - unit - x properties: type: type: string enum: - prior - next unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second x: type: number description: '' title: date-range - type: object required: - type - min - max properties: type: type: string enum: - number-range min: type: - number - 'null' max: type: - number - 'null' description: '' title: number-range - type: object required: - type properties: type: type: string enum: - date-null description: '' title: date-null - type: object required: - type properties: type: type: string enum: - number-null description: '' title: number-null - type: object required: - type properties: type: type: string enum: - text-null description: '' title: text-null - type: object required: - type properties: type: type: string enum: - boolean-null description: '' title: boolean-null - type: object required: - type - value properties: type: type: string enum: - hierarchical-list value: type: array items: type: string description: '' title: hierarchical-list - type: object required: - type - value properties: type: type: string enum: - file value: type: object required: - id - name - size - type - downloadUrl properties: id: type: string name: type: string size: type: number type: type: string downloadUrl: type: string description: '' title: file - type: object required: - type properties: type: type: string enum: - file-null description: '' title: file-null - type: object required: - type - value properties: type: type: string enum: - file-list value: type: array items: type: object required: - id - name - size - type - downloadUrl properties: id: type: string name: type: string size: type: number type: type: string downloadUrl: type: string description: '' title: file-list type: object DashVariables0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf0Type' value: type: - boolean - 'null' required: - type - value title: DashVariables0 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2' description: Date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type: type: string enum: - dashboard title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1: type: object properties: teamId: type: string required: - teamId description: The UUID of the team receiving the grant title: V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1: type: object properties: nodeId: type: string type: type: string name: type: string elementId: type: string required: - nodeId - type - name - elementId title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type' required: - type description: Null boolean value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings: type: object properties: filters: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems' variableValues: $ref: '#/components/schemas/DashVariables_2' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems: 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/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule' configV2: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2' 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: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems reports_listReportSchedules_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPage: type: - string - 'null' description: Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`. total: type: number format: double description: Total number of results. Useful to determine if there is a need to paginate. hasMore: type: boolean description: '**[Deprecated]** Indicates whether more results are available.' required: - entries - nextPage title: reports_listReportSchedules_Response_200 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type: type: string enum: - slackChannel title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type: type: string enum: - dashboard title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type 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 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type : type: string enum: - text-list title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type : type: string enum: - text title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type ReportsExportReportRequest0: type: object properties: format: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0Format' parameters: type: object additionalProperties: type: string description: "Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n - %Y-%m-%d\n - %Y-%m-%dT%H:%M\n - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n - \"Date-Range\": \"min:2020-04-01,max:\"\n - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\"" timeout: type: number format: double tag: type: string description: Specifies the version tag of the report to be exported. required: - format description: Export an entire report title: ReportsExportReportRequest0 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type: type: string enum: - number-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type: type: string enum: - isNotEmpty description: Type of condition title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom0' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom1' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom2' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom3' description: Source to swap from. title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3: type: string enum: - date title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode: type: string enum: - any - all description: Kind of condition evaluation title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType : type: string enum: - text title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type: type: string enum: - date-null title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type' description: Type of condition elementId: type: string description: ID of the element required: - type - elementId description: If there's data title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1 ? 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 reports_listReportQueries_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportQueries_Response_200 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf: type: object properties: sfDestination: type: string authorization: type: string required: - sfDestination - authorization title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5 reports_listReportControls_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportControls_Response_200 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3 V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies3: type: object properties: nodeId: type: string type: type: string name: type: string semanticViewTable: type: string required: - nodeId - type - name - semanticViewTable title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type: type: string enum: - date-range title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type' layout: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout' scaleFactor: type: number format: double required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2' description: Date selection title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type' condition: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition' required: - type - condition description: Send the export based on a condition title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type : type: string enum: - date-range title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op DashVariablesOneOf0Type: type: string enum: - boolean title: DashVariablesOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems: type: object properties: grantee: $ref: '#/components/schemas/V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee' permission: $ref: '#/components/schemas/V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission' description: Permission to grant for access to the report. tagId: type: string required: - grantee - permission title: V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2' title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type' required: - type description: Null boolean value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type: type: string enum: - worksheet title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems: 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: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type' connectionId: type: - string - 'null' name: type: - string - 'null' csvId: type: string description: Unique identifier of the uploaded CSV file required: - type - connectionId - name - csvId title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout: type: string enum: - portrait - landscape title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type reports_listReportElements_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportElements_Response_200 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type: type: string enum: - number-null title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22' description: List value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type' unit: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit' x: type: number format: double required: - type - unit - x description: Relative date selection, for example "Next 4 days" title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type: type: string enum: - text-list title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type: type: string enum: - isEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 reports_tagReport_Response_200: type: object properties: versionTagId: type: string taggedReportId: type: string description: Unique identifier of the report. taggedReportVersion: type: number format: double required: - versionTagId - taggedReportId - taggedReportVersion title: reports_tagReport_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type : type: string enum: - queryColumn title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2: type: object properties: title: type: string messageBody: type: string notificationAttachments: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems' includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings' conditionOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions' alertConfig: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig' notificationName: type: string reportSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings' dynamicExportSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings' dynamicRecipientSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings' rowLimit: type: number format: double reportVariant: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant' embedOpts: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts' required: - title - messageBody - notificationAttachments title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf2Type' dataModelId: type: string elementId: type: string description: ID of the element in the data model versionTagId: type: string required: - type - dataModelId - elementId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom2 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings: type: object properties: filters: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems' variableValues: $ref: '#/components/schemas/DashVariables_2' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type' slackConversationId: type: string required: - type - slackConversationId title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10 DashVariablesOneOf15Type: type: string enum: - file title: DashVariablesOneOf15Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type : type: string enum: - text-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type : type: string enum: - PDF title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings: type: object properties: filters: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems' variableValues: $ref: '#/components/schemas/DashVariables_2' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType : type: string enum: - report title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant: type: object properties: tagId: type: string title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf6Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf6Type DashVariablesOneOf6Type: type: string enum: - date-list title: DashVariablesOneOf6Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type : type: string enum: - NONE title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type' layout: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout' scaleFactor: type: number format: double required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts: type: object properties: embedId: type: string evalConnectionId: type: string title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: columnId: type: string description: Column ID label: type: string description: Column name formula: type: string description: Column formula type: $ref: '#/components/schemas/V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType' description: The column's data type, represented as a recursive type object. required: - columnId - label - formula - type title: V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type V2ReportsReportIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: elementId: type: string name: type: string sql: type: string error: type: string required: - elementId title: V2ReportsReportIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type' value: type: string required: - type - value description: Integer value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType : type: string enum: - report title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1' description: Export condition options title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2' description: Date selection title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min reports_deleteReportSchedule_Response_200: type: object properties: {} title: reports_deleteReportSchedule_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type' value: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems' required: - type - value description: Text list value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type: type: string enum: - email title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type DashVariablesOneOf1Type: type: string enum: - number title: DashVariablesOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 V2ReportsReportIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: elementId: type: string name: type: string type: type: string columns: type: array items: type: string vizualizationType: type: string error: type: string required: - elementId title: V2ReportsReportIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op DashVariablesOneOf12Type: type: string enum: - text-null title: DashVariablesOneOf12Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type' tileId: type: string mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value' required: - type - tileId - mode - columnId - op title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType' layout: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout' scaleFactor: type: number format: double required: - type description: Export format options. Reports only support PDF. title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant: type: object properties: tagId: type: string description: Version tag to export description: Report variant title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf7Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf7Type V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatLayout: type: string enum: - portrait - landscape title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatLayout ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type : type: string enum: - PDF title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type : type: string enum: - number-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3 V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: reportId: type: string description: Unique identifier of the report. reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number format: double ownerId: type: string 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. isArchived: type: boolean tags: type: array items: $ref: '#/components/schemas/V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems' description: type: string required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId - createdBy - updatedBy - createdAt - updatedAt title: V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems DashVariablesOneOf8MinOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf8MinOneOf1Unit ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2: 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/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems' 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/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings' description: Export attachment settings reportVariant: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant' description: Report variant conditionOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions' description: Export condition options reportSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings' description: Report settings description: Configuration settings for the export schedule. title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type' 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: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type' unit: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit' x: type: number format: double required: - type - unit - x description: Relative date selection, for example "Next 4 days" title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3 DashVariables10: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf10Type' required: - type title: DashVariables10 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value : type: object properties: 'true': type: boolean 'false': type: boolean 'null': type: boolean required: - 'true' - 'false' title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type DashVariables14: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf14Type' value: type: array items: type: string required: - type - value title: DashVariables14 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type' value: type: boolean required: - type - value description: Boolean value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type: type: string enum: - webhook title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type' mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value' required: - type - mode - columnId - op title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type: type: string enum: - hierarchical-list title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions' description: Export format options. Reports only support PDF. required: - formatOptions title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow: type: string enum: - alltime - daily - weekly - always title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaConfig: type: object properties: title: type: string messageBody: type: string includeLink: type: boolean runAsRecipient: type: boolean required: - title - messageBody title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaConfig ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout : type: string enum: - portrait - landscape title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type' date: type: string description: ISO-8601 date string required: - type - date description: Fixed date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts: type: object properties: embedId: type: string evalConnectionId: type: string title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type : type: string enum: - boolean-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8: type: string enum: - date-range title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8 reports_listReportElementColumns_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportElementColumns_Response_200 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type: type: string enum: - number-list title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2: type: object properties: title: type: string messageBody: type: string notificationAttachments: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems' includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings' conditionOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions' alertConfig: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig' notificationName: type: string reportSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings' dynamicExportSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings' dynamicRecipientSettings: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings' rowLimit: type: number format: double reportVariant: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant' embedOpts: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts' required: - title - messageBody - notificationAttachments title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type : type: string enum: - sheetColumn title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf1Type: type: string enum: - dataset title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11 ? 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 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type : type: string enum: - boolean-null title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type: type: string enum: - data-model title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2: type: string enum: - text title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType : type: string enum: - report title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val reports_getReport_Response_200: type: object properties: reportId: type: string description: Unique identifier of the report. reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number format: double ownerId: type: string 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. isArchived: type: boolean tags: type: array items: $ref: '#/components/schemas/V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems' description: type: string required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId - createdBy - updatedBy - createdAt - updatedAt title: reports_getReport_Response_200 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type' date: type: string description: ISO-8601 date string required: - type - date description: Fixed date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1' title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1' description: Export condition options title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type: type: string enum: - cloud-export title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type : type: string enum: - text-list title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatLayout: type: string enum: - portrait - landscape title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatLayout V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig: type: object properties: window: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow' volume: type: - number - 'null' format: double required: - window title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0: type: object properties: bq: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq' required: - bq title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type : type: string enum: - boolean title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type DashVariables16: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf16Type' required: - type title: DashVariables16 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type: type: string enum: - date title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type' teamId: type: string required: - type - teamId title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type' required: - type description: Null number value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1 reports_getReportElementQuery_Response_200: type: object properties: elementId: type: string name: type: string sql: type: string error: type: string required: - elementId title: reports_getReportElementQuery_Response_200 reports_createReport_Response_200: type: object properties: reportId: type: string description: Unique identifier of the report. reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number format: double ownerId: type: string 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. isArchived: type: boolean tags: type: array items: $ref: '#/components/schemas/V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems' description: type: string required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId - createdBy - updatedBy - createdAt - updatedAt title: reports_createReport_Response_200 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type ? 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 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf3Type: type: string enum: - custom-sql title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type : type: string enum: - queryColumn title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf3Type' customSqlId: type: string description: ID of the element associated with the custom SQL element. required: - type - customSqlId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type: type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1' title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems 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 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant: type: object properties: tagId: type: string description: Version tag to export description: Report variant title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type: type: string enum: - sheetColumn title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type : type: string enum: - boolean-list title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11: type: string enum: - number-null title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value' description: Date selection required: - type - value description: Date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03 V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type: type: string enum: - custom-sql title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2: type: object properties: nodeId: type: string type: type: string name: type: string required: - nodeId - type - name title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type : type: string enum: - boolean-null title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow: type: string enum: - alltime - daily - weekly - always title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type : type: string enum: - number-null title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type' sourceIds: type: - array - 'null' items: type: string description: List of direct sources for the element. Either element IDs or data source IDs. elementId: type: string description: Unique identifier of the element dataSourceIds: type: - array - 'null' items: type: string description: List of root sources for the element as data source IDs. required: - type - sourceIds - elementId - dataSourceIds title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings: type: object properties: variables: type: object additionalProperties: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs: type: object properties: rsDestination: type: string authorization: type: string required: - rsDestination - authorization title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22' description: List value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2 V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1Format: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatType' layout: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatLayout' required: - type - layout title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1Format V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type 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 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type' connectionId: type: - string - 'null' name: type: - string - 'null' definition: type: string required: - type - connectionId - name - definition title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type : type: string enum: - chartColumn title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 reports_exportReport_Response_200: type: object properties: jobComplete: type: boolean queryId: type: string rows: type: array items: type: object additionalProperties: description: Any type message: type: string required: - jobComplete - queryId title: reports_exportReport_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type : type: string enum: - isEmpty description: Type of condition title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type DashVariablesOneOf3ValueOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf3ValueOneOf0Type DashVariablesOneOf16Type: type: string enum: - file-null title: DashVariablesOneOf16Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type DashVariablesOneOf13Type: type: string enum: - boolean-null title: DashVariablesOneOf13Type 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 reports_listReportTags_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportTags_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type' connectionId: type: - string - 'null' name: type: - string - 'null' dataModelId: type: string required: - type - connectionId - name - dataModelId title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0 V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0' - $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1' - $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2' - $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies3' title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type : type: string enum: - text title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type: type: string enum: - number title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions' required: - formatOptions title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type: type: string enum: - isEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type: type: string enum: - boolean title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type' date: type: string description: ISO-8601 date string required: - type - date description: Fixed date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type : type: string enum: - date-list title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems5' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems6' - $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems7' title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3' description: Column value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings: type: object properties: sourceNodeId: type: string recipientColumnId: type: string required: - sourceNodeId - recipientColumnId title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value ReportsExportReportRequest1: type: object properties: pageId: type: string description: Identifier of the report page. format: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1Format' parameters: type: object additionalProperties: type: string description: "Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n - %Y-%m-%d\n - %Y-%m-%dT%H:%M\n - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n - \"Date-Range\": \"min:2020-04-01,max:\"\n - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\"" timeout: type: number format: double tag: type: string description: Specifies the version tag of the report to be exported. required: - pageId - format description: Export a page of a report title: ReportsExportReportRequest1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type' layout: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout' scaleFactor: type: number format: double required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 DashVariablesOneOf8Type: type: string enum: - date-range title: DashVariablesOneOf8Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type : type: string enum: - NONE title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type DashVariables12: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf12Type' required: - type title: DashVariables12 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type : type: string enum: - boolean title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode DashVariablesOneOf8Min0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf8MinOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf8Min0 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type' email: type: string required: - type - email title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type : type: string enum: - date-list title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12: type: string enum: - text-null title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf0Type' tableId: type: string required: - type - tableId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom0 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2' title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type' mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value' required: - type - mode - columnId - op title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type : type: string enum: - date title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type : type: string enum: - column description: Type of condition title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type : type: string enum: - date-list title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type: type: string enum: - team title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type' required: - type description: Null number value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions' workbookExportSource: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource' required: - formatOptions title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 DashVariables_2: 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type: type: string enum: - date-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type : type: string enum: - integer title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type' connectionId: type: string description: ID of the connection where the custom SQL element is run. definition: type: string description: Raw SQL definition for the custom SQL element. customSqlId: type: string description: Element ID of the custom SQL. required: - type - connectionId - definition - customSqlId title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type : type: string enum: - number-null title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type DashVariablesOneOf3ValueOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf3ValueOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type' cloudExport: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport' required: - type - cloudExport title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7: type: string enum: - boolean-list title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7 DashVariablesOneOf8Min: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf8Min0' - $ref: '#/components/schemas/DashVariablesOneOf8Min1' title: DashVariablesOneOf8Min ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType : type: string enum: - PDF title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions' description: Export format options. Reports only support PDF. required: - formatOptions title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings DashVariablesOneOf3ValueOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf3ValueOneOf1Unit ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op: type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNull - IsNotNull - Contains - StartsWith - EndsWith description: Operator title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type DashVariablesOneOf2Type: type: string enum: - text title: DashVariablesOneOf2Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type' required: - type description: Null number value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems: type: object properties: id: type: string filterStr: type: string required: - id - filterStr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo0' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo1' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo2' - $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo3' description: Source to swap to. title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo 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 V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems: type: object properties: versionTagId: type: string taggedAt: type: string format: date-time taggedBy: type: string required: - versionTagId - taggedAt - taggedBy title: V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type : type: string enum: - chartColumn title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type: type: string enum: - worksheet title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type' value: type: boolean required: - type - value description: Boolean value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf5Type' connectionId: type: - string - 'null' name: type: - string - 'null' semanticViewId: type: string description: Unique identifier of the semantic view semanticViewTable: type: string description: Name of the table within the semantic view required: - type - connectionId - name - semanticViewId - semanticViewTable title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems5 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type: type: string enum: - isEmpty description: Type of condition title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type reports_deleteTaggedReport_Response_200: type: object properties: {} title: reports_deleteTaggedReport_Response_200 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type : type: string enum: - text title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type' value: type: string required: - type - value description: Integer value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1 V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0: type: object properties: memberId: type: string required: - memberId description: The UUID of the member receiving the grant title: V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0 DashVariablesOneOf8MinOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf8MinOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0 DashVariablesOneOf8Max0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf8MaxOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf8Max0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type' value: type: boolean required: - type - value description: Boolean value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type : type: string enum: - date-range title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type: type: string enum: - member title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1' title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type' value: type: number format: double required: - type - value description: Number value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type' webhookUrl: type: string required: - type - webhookUrl title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatType: type: string enum: - pdf title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatType V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems DashVariables2: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf2Type' value: type: - string - 'null' required: - type - value title: DashVariables2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 DashVariablesOneOf4Type: type: string enum: - number-list title: DashVariablesOneOf4Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type : type: string enum: - number-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant: type: object properties: tagId: type: string title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant DashVariablesOneOf3Type: type: string enum: - date title: DashVariablesOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0: type: string enum: - boolean title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf5Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type : type: string enum: - boolean title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems7: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf7Type' connectionId: type: - string - 'null' name: type: - string - 'null' worksheetId: type: string description: Unique identifier of the worksheet required: - type - connectionId - name - worksheetId title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems7 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type DashVariables6: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf6Type' value: type: array items: type: - number - 'null' format: double required: - type - value title: DashVariables6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf0Type: type: string enum: - table title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf0Type 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 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions' workbookExportSource: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource' required: - formatOptions title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10: type: string enum: - date-null title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type' date: type: string description: ISO-8601 date string required: - type - date description: Fixed date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5: type: string enum: - text-list title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig: type: object properties: window: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow' volume: type: - number - 'null' format: double required: - window title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type: type: string enum: - dashboard title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 reports_copyTaggedReport_Response_200: type: object properties: reportId: type: string description: Unique identifier of the report. reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number format: double ownerId: type: string 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. isArchived: type: boolean tags: type: array items: $ref: '#/components/schemas/V2ReportsReportIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems' description: type: string required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId - createdBy - updatedBy - createdAt - updatedAt title: reports_copyTaggedReport_Response_200 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type: type: string enum: - boolean-null title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule: 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: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type' required: - type description: Null number value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61 reports_getReportVersionHistory_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_getReportVersionHistory_Response_200 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type' required: - type description: Null text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType: type: object properties: {} description: The column's data type, represented as a recursive type object. title: V2ReportsReportIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type 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 reports_listReportElementLineage_Response_200: type: object properties: dependencies: type: object additionalProperties: $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies' edges: type: array items: $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems' required: - dependencies - edges title: reports_listReportElementLineage_Response_200 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf0Type: type: string enum: - table title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf0Type DashVariables7: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf7Type' value: $ref: '#/components/schemas/DashVariablesOneOf7Value' required: - type - value title: DashVariables7 ? 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf2Type: type: string enum: - data-model title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1: type: object properties: sf: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf' required: - sf title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 ? 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 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type: type: string enum: - date-list title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type: type: string enum: - number-range title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings: type: object properties: sourceNodeId: type: string recipientColumnId: type: string required: - sourceNodeId - recipientColumnId title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value' required: - type - value description: Boolean list value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type : type: string enum: - date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems: type: object properties: fromColumn: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn' toColumn: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn' required: - fromColumn - toColumn title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type reports_sourceSwapReport_Response_200: type: object properties: {} title: reports_sourceSwapReport_Response_200 DashVariablesOneOf10Type: type: string enum: - date-null title: DashVariablesOneOf10Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type : type: string enum: - boolean title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf0Type' tableId: type: string required: - type - tableId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo0 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type : type: string enum: - number-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings: type: object properties: sourceNodeId: type: string recipientColumnId: type: string required: - sourceNodeId - recipientColumnId title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings DashVariables17: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf17Type' value: type: array items: $ref: '#/components/schemas/DashVariablesOneOf17ValueItems' required: - type - value title: DashVariables17 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type' sheetId: type: string mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value' required: - type - sheetId - mode - columnId - op title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type' min: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min' description: Date selection max: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max' description: Date selection required: - type - min - max description: Date range value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type: type: string enum: - chartColumn title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type DashVariablesOneOf3Value0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf3ValueOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf3Value0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule: 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`. description: When to send the report export. title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule reports_updateReportSchedule_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/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule' configV2: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2' 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_updateReportSchedule_Response_200 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type : type: string enum: - text title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type : type: string enum: - number-range title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode : type: string enum: - any - all description: Kind of condition evaluation title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type: type: string enum: - dataset description: Dataset (deprecated) title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type : type: string enum: - text title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type : type: string enum: - isNotEmpty description: Type of condition title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type' date: type: string description: ISO-8601 date string required: - type - date description: Fixed date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0 DashVariables15: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf15Type' value: $ref: '#/components/schemas/DashVariablesOneOf15Value' required: - type - value title: DashVariables15 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf1Type' datasetId: type: string required: - type - datasetId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type reports_listReportPages_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportPages_Response_200 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type : type: string enum: - number-list title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type: type: string enum: - boolean-list title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type : type: string enum: - integer title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type' dataModelId: type: string elementIds: type: array items: type: string versionTagId: type: string required: - type - dataModelId - elementIds title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type' unit: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit' x: type: number format: double required: - type - unit - x description: Relative date selection, for example "Next 4 days" title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings: type: object properties: variables: type: object additionalProperties: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource 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 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type' value: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems' required: - type - value description: Number list value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf3Type: type: string enum: - custom-sql title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFromOneOf3Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout: type: string enum: - portrait - landscape title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type: type: string enum: - number-list title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type' googleDriveFolderUrl: type: string required: - type - googleDriveFolderUrl title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule: 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: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type' connectionId: type: - string - 'null' name: type: - string - 'null' inodeId: type: string required: - type - connectionId - name - inodeId title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf1Type' datasetId: type: string required: - type - datasetId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo1 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type' required: - type description: Always send the export title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03' description: Scalar value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value: type: object properties: 'true': type: boolean 'false': type: boolean 'null': type: boolean required: - 'true' - 'false' title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1' title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2' title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNull - IsNotNull - Contains - StartsWith - EndsWith description: Operator title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq: type: object properties: bqDestination: type: string required: - bqDestination title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq reports_listReportColumns_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportColumns_Response_200 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type 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 V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: version: type: number format: double publishedAt: type: string format: date-time publishedBy: type: string tags: type: array items: $ref: '#/components/schemas/V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems' required: - version - publishedAt - publishedBy title: V2ReportsReportIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 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 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 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 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts: type: object properties: embedId: type: string evalConnectionId: type: string title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1' title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9: type: string enum: - number-range title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems: type: object properties: fromMetricId: type: string description: Identifier of the metric in the data source toMetricId: type: string description: Identifier of the metric in the data source required: - fromMetricId - toMetricId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type: type: string enum: - column description: Type of condition title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type reports_listReports_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPage: type: - string - 'null' description: Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`. total: type: number format: double description: Total number of results. Useful to determine if there is a need to paginate. hasMore: type: boolean description: '**[Deprecated]** Indicates whether more results are available.' required: - entries - nextPage title: reports_listReports_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13 V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0Format: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatType' layout: $ref: '#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0FormatLayout' required: - type - layout title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf0Format V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit DashVariablesOneOf8MaxOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf8MaxOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type : type: string enum: - number-list title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12' - $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13' description: Value of the control title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type: type: string enum: - date-range title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow: type: string enum: - alltime - daily - weekly - always title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type: type: string enum: - number-range title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type DashVariablesOneOf8MaxOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf8MaxOneOf1Unit V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type: type: string enum: - text-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type : type: string enum: - boolean-list title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems: type: object properties: from: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsFrom' description: Source to swap from. to: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo' description: Source to swap to. metricMapping: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems' columnMapping: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems' required: - from - to title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type' sheetId: type: string required: - type - sheetId title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type : type: string enum: - fixed-date title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf2Type: type: string enum: - data-model title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type : type: string enum: - text-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type DashVariablesOneOf11Type: type: string enum: - number-null title: DashVariablesOneOf11Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType : type: string enum: - text title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType DashVariablesOneOf3Value: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf3Value0' - $ref: '#/components/schemas/DashVariablesOneOf3Value1' title: DashVariablesOneOf3Value V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7 V2ReportsReportIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: elementId: type: string name: type: string type: type: string columns: type: array items: type: string vizualizationType: type: string error: type: string required: - elementId title: V2ReportsReportIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type : type: string enum: - text title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType' layout: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout' scaleFactor: type: number format: double required: - type title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6: type: string enum: - date-list title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type' sheetId: type: string mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value' required: - type - sheetId - mode - columnId - op title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: name: type: string valueType: $ref: '#/components/schemas/V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType' description: Value of the control required: - name - valueType title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig: type: object properties: window: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow' volume: type: - number - 'null' format: double required: - window title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type' value: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems' required: - type - value description: Date list value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type : type: string enum: - boolean-list title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type DashVariables1: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf1Type' value: type: - number - 'null' format: double required: - type - value title: DashVariables1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type : type: string enum: - text-null title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems6: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf6Type' connectionId: type: - string - 'null' name: type: - string - 'null' sqlDocumentId: type: string required: - type - connectionId - name - sqlDocumentId title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems6 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type: type: string enum: - date title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type : type: string enum: - hierarchical-list title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 DashVariables4: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf4Type' value: type: array items: type: - number - 'null' format: double required: - type - value title: DashVariables4 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4: type: string enum: - number-list title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4 V2ReportsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems: type: object properties: fromConnectionId: type: string toConnectionId: type: string paths: type: array items: $ref: '#/components/schemas/V2ReportsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems' required: - fromConnectionId - toConnectionId - paths title: V2ReportsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type' description: Type of condition elementId: type: string description: ID of the element columnId: type: string description: ID of the column op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op' description: Operator mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode' description: Kind of condition evaluation value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value' description: Column value required: - type - elementId - columnId - op - mode description: If a condition is met title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2 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 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings: type: object properties: variables: type: object additionalProperties: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 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 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13: type: string enum: - boolean-null title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5' - $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6' title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn: oneOf: - type: array items: type: string - type: array items: type: string - type: array items: type: string title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0 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 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13 V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type' description: Dataset (deprecated) inodeId: type: string required: - type - inodeId title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type : type: string enum: - number-list title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03' description: Scalar value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0 V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0' - $ref: '#/components/schemas/V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1' title: V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type : type: string enum: - number-range title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type' tileId: type: string required: - type - tileId title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type: type: string enum: - boolean-list title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type ? 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 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type 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 reports_copyReport_Response_200: type: object properties: reportId: type: string description: Unique identifier of the report. reportUrlId: type: string name: type: string url: type: string path: type: string latestVersion: type: number format: double ownerId: type: string 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. isArchived: type: boolean tags: type: array items: $ref: '#/components/schemas/V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems' description: type: string required: - reportId - reportUrlId - name - url - path - latestVersion - ownerId - createdBy - updatedBy - createdAt - updatedAt title: reports_copyReport_Response_200 V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type' userId: type: string required: - type - userId title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0 reports_createReportGrant_Response_200: type: object properties: {} title: reports_createReportGrant_Response_200 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type: type: string enum: - number title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type DashVariablesOneOf5Type: type: string enum: - text-list title: DashVariablesOneOf5Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0 DashVariablesOneOf14Type: type: string enum: - hierarchical-list title: DashVariablesOneOf14Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type: type: string enum: - worksheet title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0: type: object properties: nodeId: type: string type: type: string required: - nodeId - type title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10 V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType: type: string enum: - lookup - source - dependency title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings: type: object properties: controlValues: type: object additionalProperties: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues' description: This object maps control IDs to the values that they should have when exporting the workbook. description: Report settings title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings reports_exportReport_Request: oneOf: - $ref: '#/components/schemas/ReportsExportReportRequest0' - $ref: '#/components/schemas/ReportsExportReportRequest1' title: reports_exportReport_Request V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type' required: - type description: Always send the export title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0 DashVariablesOneOf9Type: type: string enum: - number-range title: DashVariablesOneOf9Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type : type: string enum: - prior - next title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type 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 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type: type: string enum: - date-list title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60 V2ReportsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems: type: object properties: fromPath: type: array items: type: string toPath: type: array items: type: string required: - fromPath - toPath title: V2ReportsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2: type: object properties: rs: $ref: '#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs' required: - rs title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type : type: string enum: - text title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type DashVariablesOneOf8Max: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf8Max0' - $ref: '#/components/schemas/DashVariablesOneOf8Max1' title: DashVariablesOneOf8Max V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type : type: string enum: - text-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type ? 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 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 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type : type: string enum: - date-null title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type: type: string enum: - table title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63' description: Null value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6 DashVariables11: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf11Type' required: - type title: DashVariables11 reports_sendReport_Response_200: type: object properties: {} title: reports_sendReport_Response_200 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type : type: string enum: - NONE title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout : type: string enum: - portrait - landscape title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 V2ReportsReportIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsReportIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type: type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction: type: string enum: - pause - resume description: Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule. title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 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 DashVariables13: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf13Type' required: - type title: DashVariables13 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1' title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type' required: - type description: Null text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 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 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout : type: string enum: - portrait - landscape title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout : type: string enum: - portrait - landscape title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type : type: string enum: - sheetColumn title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3' description: Column value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type : type: string enum: - date title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type: type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type : type: string enum: - text-list title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type' required: - type description: Null text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1 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 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType: type: string enum: - PDF title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions' workbookExportSource: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource' required: - formatOptions title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type : type: string enum: - boolean title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type : type: string enum: - text-null title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems: type: object properties: source: type: string target: type: string type: $ref: '#/components/schemas/V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType' required: - source - target - type title: V2ReportsReportIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf1Type: type: string enum: - dataset title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type' tileId: type: string mode: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value' required: - type - tileId - mode - columnId - op title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1' title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type' inodeId: type: string required: - type - inodeId title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type: type: string enum: - boolean title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant: type: object properties: tagId: type: string title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type' conditions: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems' required: - type - conditions title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type: type: string enum: - isEmpty title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2' description: Date selection title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type V2ReportsReportIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: pageId: type: string description: Unique identifier of the report page. name: type: string description: Display name of the report page. hidden: type: boolean description: Whether the page is hidden from end users. required: - pageId title: V2ReportsReportIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type: type: string enum: - text-list title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type : type: string enum: - PDF title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings: 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: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings DashVariablesOneOf7Type: type: string enum: - boolean-list title: DashVariablesOneOf7Type V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType: type: object properties: {} description: The column's data type, represented as a recursive type object. title: V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type: type: string enum: - text title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type DashVariablesOneOf7Value: type: object properties: 'true': type: boolean 'false': type: boolean 'null': type: boolean required: - 'true' - 'false' title: DashVariablesOneOf7Value ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType: type: string enum: - PDF title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type : type: string enum: - date-range title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type' value: type: number format: double required: - type - value description: Number value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0 V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatType: type: string enum: - pdf title: V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaOneOf1FormatType ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit : type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type : type: string enum: - number title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type: type: string enum: - gdrive title: V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2' title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2' description: Date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type: type: string enum: - boolean-null title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type DashVariablesOneOf8MinOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf8MinOneOf0Type V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems: type: object properties: id: type: string filterStr: type: string required: - id - filterStr title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type' value: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value' required: - type - value description: Boolean list value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf3Type' connectionId: type: string description: ID of the connection that the new custom SQL element will run against. definition: type: string description: SQL query that defines the new custom SQL element. required: - type - connectionId - definition title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo3 V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: columnId: type: string description: Column ID name: type: string description: Column name formula: type: string description: Column formula or source column reference. type: $ref: '#/components/schemas/V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType' description: The column's data type, represented as a recursive type object. elementId: type: string description: Element ID required: - columnId - name - formula - type - elementId title: V2ReportsReportIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 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 DashVariables5: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf5Type' value: type: array items: type: - string - 'null' required: - type - value title: DashVariables5 ? V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type : type: string enum: - number title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type reports_deleteReportGrant_Response_200: type: object properties: {} title: reports_deleteReportGrant_Response_200 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type : type: string enum: - number title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6' description: Variable value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues reports_listReportPageElements_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportPageElements_Response_200 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type' value: type: boolean required: - type - value description: Boolean value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00 V2ReportsTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems: type: object properties: dataModelId: type: string fromVersionTagId: type: - string - 'null' toVersionTagId: type: - string - 'null' required: - dataModelId - fromVersionTagId - toVersionTagId title: V2ReportsTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 reports_listReportLineageTree_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems' description: Array of results returned by the endpoint nextPageToken: type: string description: 'A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results. **Must be treated as an opaque string.**' required: - entries title: reports_listReportLineageTree_Response_200 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn: oneOf: - type: array items: type: string - type: array items: type: string - type: array items: type: string title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type' required: - type description: Null date value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2 ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min : oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2' description: Date selection title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type: type: string enum: - table - dataset - data-model - element - customSQL - csv-upload - semantic-view - sql-document - worksheet title: V2ReportsReportIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type 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 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1 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 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type: type: string enum: - queryColumn title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 DashVariables3: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf3Type' value: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf3Value' - type: 'null' required: - type - value title: DashVariables3 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type' description: Type of condition elementId: type: string description: ID of the element required: - type - elementId description: If there's no data title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0 V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type' required: - type description: Null text value title: V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0 V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1: type: string enum: - number title: V2ReportsReportIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1 DashVariablesOneOf8MaxOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf8MaxOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62' - $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63' description: Null value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6 V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0 V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission: type: string enum: - view - edit description: Permission to grant for access to the report. title: V2ReportsReportIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type : type: string enum: - number-range title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type 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 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type: type: string enum: - text-null title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo2: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsToOneOf2Type' dataModelId: type: string elementId: type: string description: ID of the element in the data model versionTagId: type: string required: - type - dataModelId - elementId title: V2ReportsReportIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsTo2 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems: oneOf: - $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0' - $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1' - $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2' - $ref: '#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3' title: V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type' value: type: array items: type: array items: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems' 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: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3 V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems: type: object properties: id: type: string filterStr: type: string required: - id - filterStr title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems ? V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 V2ReportsReportIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: versionTagId: type: string description: Unique identifier of the tag. tagName: type: string sourceVersion: type: number format: double taggedAt: type: string format: date-time taggedReportId: type: string description: Unique identifier of the tagged report. required: - versionTagId - tagName - sourceVersion - taggedAt - taggedReportId title: V2ReportsReportIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type' value: type: number format: double required: - type - value description: Number value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0 DashVariablesOneOf17Type: type: string enum: - file-list title: DashVariablesOneOf17Type V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1 ? V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02: type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type' value: type: string required: - type - value description: Text value title: V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02 ? V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 securitySchemes: basicAuth: type: http scheme: basic bearerAuth: type: http scheme: bearer oauth2: type: oauth2 flows: clientCredentials: tokenUrl: /v2/auth/token refreshUrl: /v2/auth/token scopes: {} OAuth: type: http scheme: bearer description: OAuth 2.0 authentication x-refined-from: - sigma-computing-public-rest-api-openapi.json - sigma-computing-rest-api-openapi.yaml