openapi: 3.2.0 info: title: Sigma Computing Members API version: '1.0' description: 'Operations tagged members 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: members paths: /v2/members: get: summary: List members description: "\n **Attention**: This endpoint will return only paginated responses starting June 2, 2026. To start returning paginated responses before that date, include the query parameter `limit` in your request.\n\n List all users in Sigma.\n\n ### Usage notes\n - Filter your results using the `email` query parameter.\n - If using `email` to filter by email address, you must URL encode the \"@\" character as `%40`.\n - **[Deprecated]** Using the `search` parameter is deprecated. If using `search` to filter by email address, you must URL encode the \"@\" character as `%40`.\n - Using `email` and `search` together is not supported.\n " 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: search schema: type: string description: '**[Deprecated]** Use the `email` query parameter instead.' in: query - name: email schema: type: string description: Filter by email address. You must URL encode the "@" character as `%40`. in: query - name: includeArchived schema: type: boolean in: query - name: includeInactive schema: type: boolean in: query operationId: listMembers responses: '200': description: The response body. content: application/json: schema: oneOf: - type: array items: allOf: - type: object required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. - type: object required: - entries - nextPage properties: entries: type: array items: allOf: - type: object required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. nextPage: type: - string - 'null' default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members security: - oauth2: [] post: summary: Create a member description: "Create a user.\n\n ### Usage notes\n - Creating a user with this endpoint sends an email invitation to the user. Embed users are not sent email invitations.\n - Review the account types returned by the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint to understand the format of the **memberType** string.\n - If **memberType** is omitted, the organization's Invitation default account type (configured in Admin > Account types) is used. If no Invitation default is configured, a built-in default account type is used.\n - Retrieve the **teamId**(s) by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoints.\n " parameters: - name: sendInvite schema: type: boolean description: Whether to send an email invitation for non-embed users. If not included, an email is sent title: Send Invite in: query operationId: createMember requestBody: description: The request body. content: application/json: schema: allOf: - type: object required: - email - firstName - lastName properties: email: type: string format: email firstName: type: string lastName: type: string - type: object properties: memberType: type: string description: Account type isGuest: type: boolean userKind: type: string enum: - internal - guest - embed addToTeams: type: array items: allOf: - type: object required: - teamId properties: teamId: type: string - type: object properties: isTeamAdmin: type: boolean description: Whether to set the user as an admin for this team. description: Add user to one or more teams. responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members 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/members/{memberId}: get: summary: Get member description: "Returns a specific user by member ID.\n\n### Usage notes\n- Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n " parameters: - name: memberId schema: type: string in: path required: true operationId: getMember responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members security: - oauth2: [] patch: summary: Update member description: "Update a specific user by memberId.\n\n ### Usage notes\n - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n - Review the account types returned by the same endpoint to understand the format of the **memberType** string.\n - To deactivate a user and reassign their documents to a specific user, set `newOwnerId`to the user ID of the desired document owner, and `isArchived` to `True`. For more details, see [Deactivate a user](/docs/deactivate-users).\n " parameters: - name: memberId schema: type: string in: path required: true operationId: updateMember requestBody: description: The request body. content: application/json: schema: type: object properties: memberType: type: string description: Account type firstName: type: string lastName: type: string profileImgUrl: type: - string - 'null' email: type: string isArchived: type: boolean description: Whether to deactivate a user in Sigma. isInactive: type: boolean description: Whether to archive a user with SCIM. userKind: type: string enum: - internal - guest - embed newOwnerId: type: string archiveDocuments: type: boolean description: Archive a user's documents instead of transferring them. Can only be used if either `isArchived` or `isInactive` is set to `true`. Also archives scheduled exports. archiveScheduledExports: type: boolean description: Archive a user's scheduled exports instead of transferring them. Can only be used if either `isArchived` or `isInactive` is set to `true` responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members security: - oauth2: [] delete: summary: Deactivate member description: "Deactivate a specific user by memberId. Users cannot be fully deleted, only deactivated. The deactivated user's documents are reassigned to the user associated with the API client credentials. For more information, see [Deactivate users](/docs/deactivate-users).\n\n### Usage notes\n- Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n- The user is directly marked **archived** by this API. See [Deactivate users](/docs/deactivate-users) for more details on deactivation.\n\n### Usage scenarios\n- **User offboarding**: Manage your user base by efficiently offboarding users after they leave your organization.\n\n### Best practices\n- **Confirm memberId**: Before deactivating a user, make sure the memberId is correct.\n- Do **not** use this for members provisioned through SCIM.\n " parameters: - name: memberId schema: type: string in: path required: true operationId: deleteMember 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: - members 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/members/{memberId}/files: get: summary: List member files description: "List all documents and folders accessible to a specific user.\n\n ### Usage notes\n - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n - Filter to documents with specific permissions granted on them, or to specific types of documents like workbooks, workbook templates, data models, datasets (deprecated), reports, workspaces, database tables, and others.\n " parameters: - name: memberId schema: type: string in: path required: true - name: name schema: type: string in: query - name: permissionFilter schema: oneOf: - type: string enum: - view - explore - edit description: '' title: Workbook Permission - type: string enum: - view - explore - organize - edit description: Choose **organize** for Can Contribute permissions or **edit** for Can Manage permissions. title: Folder Permission in: query - name: typeFilters schema: oneOf: - type: array items: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report description: '**Note**: Workspaces are not returned as part of the response. To retrieve a workspace, use the **Single Document Type**.' title: Multiple Document Types - type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report description: '' title: Single Document Type in: query - name: page schema: type: string in: query - name: limit schema: type: number in: query - name: parentId schema: type: string description: Parent folder in: query - name: directChildFilter schema: type: boolean in: query operationId: listAccessibleInodes 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: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived properties: id: type: string urlId: type: string name: type: string type: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report parentId: type: string parentUrlId: type: string permission: type: string enum: - create - annotate - organize - explore - view - edit - apply path: type: string badge: type: - string - 'null' isArchived: type: boolean - type: object properties: description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. title: Parent Source URL ID - 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.' examples: Response Example: value: entries: - id: 00000000-0000-0000-0000-000000000000 urlId: 57a96EMo3GVJG73179MV2l name: Examples description: Examples description type: folder parentId: 00000000-0000-0000-0000-000000000001 parentUrlId: 57a96EMo3GVJG73179MV2G permission: edit path: My Documents/Examples badge: Endorsed ownerId: createdBy: updatedBy: createdAt: '2022-11-22T22:33:47.323Z' updatedAt: '2022-11-22T22:33:47.323Z' isArchived: false hasMore: false total: 1 nextPage: null default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members 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/members/{memberId}/files/favorites: get: summary: List all favorite documents of a member description: "List the favorite documents for a specific user.\n\n ### Usage notes\n - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n " parameters: - name: memberId schema: type: string 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: listFavoriteInodes 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: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived properties: id: type: string urlId: type: string name: type: string type: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report parentId: type: string parentUrlId: type: string permission: type: string enum: - create - annotate - organize - explore - view - edit - apply path: type: string badge: type: - string - 'null' isArchived: type: boolean - type: object properties: description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. title: Parent Source URL ID - 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.' examples: Response Example: value: entries: - id: 00000000-0000-0000-0000-000000000000 urlId: 57a96EMo3GVJG73179MV2l name: Examples description: Examples description type: folder parentId: 00000000-0000-0000-0000-000000000001 parentUrlId: 57a96EMo3GVJG73179MV2G permission: edit path: My Documents/Examples badge: Endorsed ownerId: createdBy: updatedBy: createdAt: '2022-11-22T22:33:47.323Z' updatedAt: '2022-11-22T22:33:47.323Z' isArchived: false hasMore: false total: 1 nextPage: null default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members 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/members/{memberId}/files/recents: get: summary: List recent files for a member description: "List all recent documents and folders accessible to a specific user. By default, ignores explorations in the returned list.\n\n ### Usage notes\n - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n " parameters: - name: memberId schema: type: string 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 - name: includeExplorations schema: type: string enum: - 'true' - 'false' description: Include explorations in the response. title: Include Explorations in: query operationId: listRecentInodes responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries - nextPage properties: entries: type: array items: allOf: - allOf: - type: object required: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived properties: id: type: string urlId: type: string name: type: string type: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report parentId: type: string parentUrlId: type: string permission: type: string enum: - create - annotate - organize - explore - view - edit - apply path: type: string badge: type: - string - 'null' isArchived: type: boolean - type: object properties: description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. title: Parent Source URL ID - 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: lastInteractionAt: type: string format: date-time 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.' examples: Response Example: value: entries: - id: 00000000-0000-0000-0000-000000000000 urlId: 57a96EMo3GVJG73179MV2l name: Examples description: Examples description type: folder parentId: 00000000-0000-0000-0000-000000000001 parentUrlId: 57a96EMo3GVJG73179MV2G permission: edit path: My Documents/Examples badge: Endorsed ownerId: createdBy: updatedBy: createdAt: '2022-11-22T22:33:47.323Z' updatedAt: '2022-11-22T22:33:47.323Z' isArchived: false lastInteractionAt: '2023-11-22T22:33:47.323Z' hasMore: false total: 1 nextPage: null default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members 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/members/{memberId}/revoke: post: summary: Revoke a user's OAuth tokens description: "Revoke a user's OAuth refresh tokens used for OIDC single sign-on and warehouse connections, so Sigma can no longer issue new access tokens on the user's behalf.\n\nAfter making a request to this endpoint, refresh tokens are revoked immediately. However, a user's existing session is not interrupted. Already-issued access tokens lapse at their normal TTL.\n\n### Usage notes\n- Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n- You must use API credentials owned by a user assigned the Admin account type.\n " parameters: - name: memberId schema: type: string in: path required: true operationId: revokeMemberTokens requestBody: description: The request body. content: application/json: schema: type: object properties: {} responses: '200': description: The response body. content: application/json: schema: type: object required: - memberId - results properties: memberId: type: string description: Unique identifier of the user whose tokens were revoked. results: type: object required: - oauth properties: oauth: type: object required: - tokensRevoked properties: tokensRevoked: type: number description: Number of refresh tokens revoked. description: Revocation result per token type. default: $ref: '#/components/responses/ApiError' externalDocs: url: '' description: 'Sigma API documentation:' tags: - members 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/members/{memberId}/schedules: get: summary: List scheduled exports for a user description: "Retrieve all scheduled exports owned by a specific user across all workbooks and reports that they have access to.\n\n### Usage notes\n- Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n- To perform this operation for another user, you must use API credentials owned by a user assigned the Admin account type.\n- Non-admin users can only retrieve their own schedules.\n- To retrieve scheduled exports for a specific workbook, call the [/v2/workbooks/{workbookId}/schedules](https://help.sigmacomputing.com/reference/list-workbook-schedules) endpoint.\n\n### Usage scenarios\n- **User dashboard:** Display all scheduled exports owned by a user in a centralized dashboard.\n- **Scheduled export management:** Allow users to view and manage all their scheduled exports across different workbooks and reports.\n- **Audit and compliance:** Review all scheduled exports created by a specific user for governance purposes.\n- **Cross-user management:** Admins can view and manage schedules on behalf of other users.\n " parameters: - name: memberId schema: type: string 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: listMemberSchedules responses: '200': description: The response body. content: application/json: schema: allOf: - type: object required: - entries - nextPage properties: entries: type: array items: oneOf: - allOf: - type: object required: - scheduledNotificationId - workbookId - schedule - configV2 - isSuspended - ownerId - lastUpdatedByUser - disabledAt - disabledBy properties: scheduledNotificationId: type: string description: Unique identifier of the scheduled export. title: Schedule ID workbookId: type: string description: Unique identifier of the workbook. title: Workbook 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: - type: object required: - type properties: type: type: string enum: - CSV - type: object required: - type properties: type: type: string enum: - JSON - type: object required: - type properties: type: type: string enum: - JSONL - type: object required: - type properties: type: type: string enum: - EXCEL - allOf: - type: object required: - type properties: type: type: string enum: - PDF - type: object properties: layout: type: string enum: - portrait - landscape scaleFactor: type: number - allOf: - type: object required: - type properties: type: type: string enum: - PNG - type: object properties: pixelWidth: type: - number - 'null' pixelHeight: type: - number - 'null' - type: object required: - type properties: type: type: string enum: - NONE - type: object properties: chartId: type: string workbookExportSource: oneOf: - type: object required: - type - elementId properties: type: type: string enum: - element elementId: type: string description: Export one element title: One element - type: object required: - type - pageId properties: type: type: string enum: - page pageId: type: string description: Export one page title: One page - type: object required: - type - nodeIds properties: type: type: string enum: - element nodeIds: type: array items: type: string description: Export multiple elements title: Multiple elements - type: object required: - type - nodeIds properties: type: type: string enum: - page nodeIds: type: array items: type: string description: Export multiple pages title: Multiple pages - type: object required: - type properties: type: type: string enum: - all description: Export all pages and elements in a workbook title: Entire workbook - 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 dashboardSettings: 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 workbookVariant: type: object properties: tagId: type: string exploreKey: type: string bookmarkId: type: string embedOpts: type: object properties: embedId: type: string evalConnectionId: type: string formatting: type: - object - 'null' properties: pivotHeaderStyle: type: - string - 'null' enum: - merged - repeated 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. - 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: - members 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/members/{memberId}/teams: get: summary: List teams for a member description: "Retrieve a list of teams for a specific user.\n\n### Usage notes\n- Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n " parameters: - name: memberId schema: type: string 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: listMemberTeams 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: - teamId - createdBy - updatedBy - createdAt - updatedAt - name - description - visibility properties: teamId: type: string createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time name: type: string description: type: - string - 'null' visibility: type: - string - 'null' enum: - public - private - type: object properties: isArchived: type: boolean 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: - members 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.1/members: get: summary: List members (Paginated) description: ' **Attention:** This API endpoint uses pagination by default. List all users in Sigma. ### Usage notes - Filter your results using the `email` query parameter. - If using `email` to filter by email address, you must URL encode the "@" character as `%40`. - **[Deprecated]** Using the `search` parameter is deprecated. If using `search` to filter by email address, you must URL encode the "@" character as `%40`. - Using `email` and `search` together is not supported. ' 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: search schema: type: string description: '**[Deprecated]** Use the `email` query parameter instead.' in: query - name: email schema: type: string description: Filter by email address. You must URL encode the "@" character as `%40`. in: query - name: includeArchived schema: type: boolean in: query - name: includeInactive schema: type: boolean in: query operationId: v2_1_listMembers 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: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string - type: object properties: isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. 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: - members 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 V2MembersMemberIdFilesGetParametersPermissionFilter1: type: string enum: - view - explore - organize - edit description: Choose **organize** for Can Contribute permissions or **edit** for Can Manage permissions. title: V2MembersMemberIdFilesGetParametersPermissionFilter1 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 members_updateMember_Response_200: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: members_updateMember_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AttachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AttachmentSettings ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions1 V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsType: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report title: V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsType ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type' sheetId: type: string mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value' required: - type - sheetId - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables9 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type' tileId: type: string required: - type - tileId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type : type: string enum: - boolean-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2: type: object properties: title: type: string messageBody: type: string notificationAttachments: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItems' includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AttachmentSettings' conditionOptions: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions' alertConfig: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfig' notificationName: type: string dashboardSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettings' dynamicExportSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettings' dynamicRecipientSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicRecipientSettings' rowLimit: type: number format: double workbookVariant: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2WorkbookVariant' embedOpts: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2EmbedOpts' formatting: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2Formatting' - type: 'null' required: - title - messageBody - notificationAttachments title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicRecipientSettings: type: object properties: sourceNodeId: type: string recipientColumnId: type: string required: - sourceNodeId - recipientColumnId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicRecipientSettings ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1 DashVariablesOneOf0Type: type: string enum: - boolean title: DashVariablesOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions3 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type : type: string enum: - chartColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type : type: string enum: - EXCEL title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type : type: string enum: - number-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type : type: string enum: - number-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type DashVariablesOneOf15Type: type: string enum: - file title: DashVariablesOneOf15Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type : type: string enum: - CSV title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type : type: string enum: - number-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type DashVariablesOneOf6Type: type: string enum: - date-list title: DashVariablesOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type' sheetId: type: string required: - type - sheetId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type' pixelWidth: type: - number - 'null' format: double pixelHeight: type: - number - 'null' format: double required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type : type: string enum: - sheetColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type : type: string enum: - text-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type : type: string enum: - date title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type DashVariablesOneOf1Type: type: string enum: - number title: DashVariablesOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables9' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables10' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables11' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables12' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables13' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type : type: string enum: - boolean title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables5 DashVariablesOneOf12Type: type: string enum: - text-null title: DashVariablesOneOf12Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type : type: string enum: - date title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type V2MembersGetResponsesContentApplicationJsonSchemaOneOf0Items: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: V2MembersGetResponsesContentApplicationJsonSchemaOneOf0Items ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables13 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables13 DashVariablesOneOf8MinOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf8MinOneOf1Unit V2MembersGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: V2MembersGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfig: type: object properties: window: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow' volume: type: - number - 'null' format: double required: - window title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfig V2MembersMemberIdPatchRequestBodyContentApplicationJsonSchemaUserKind: type: string enum: - internal - guest - embed title: V2MembersMemberIdPatchRequestBodyContentApplicationJsonSchemaUserKind DashVariables10: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf10Type' required: - type title: DashVariables10 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type : type: string enum: - NONE title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value DashVariables14: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf14Type' value: type: array items: type: string required: - type - value title: DashVariables14 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type : type: string enum: - text-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type' tileId: type: string required: - type - tileId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables9' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables10' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables11' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables12' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables13' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables12 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables12 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type' tileId: type: string mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value' required: - type - tileId - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type : type: string enum: - page title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems1: 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/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Schedule' configV2: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2' 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: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type' mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value' required: - type - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type : type: string enum: - text-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type DashVariables16: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf16Type' required: - type title: DashVariables16 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type : type: string enum: - date-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type V2MembersMemberIdFilesGetParametersTypeFilters1: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report title: V2MembersMemberIdFilesGetParametersTypeFilters1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility: type: string enum: - public - private title: V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables1 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2Type: type: string enum: - worksheet title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2Type DashVariablesOneOf3ValueOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf3ValueOneOf0Type DashVariablesOneOf16Type: type: string enum: - file-null title: DashVariablesOneOf16Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type : type: string enum: - number-range title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type DashVariablesOneOf13Type: type: string enum: - boolean-null title: DashVariablesOneOf13Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type : type: string enum: - PNG title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type V2MembersMemberIdFilesGetParametersTypeFiltersSchemaOneOf0Items: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report title: V2MembersMemberIdFilesGetParametersTypeFiltersSchemaOneOf0Items ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type : type: string enum: - JSON title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission: type: string enum: - create - annotate - organize - explore - view - edit - apply title: V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type : type: string enum: - element title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables13 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables13 members_deleteMember_Response_200: type: object properties: {} title: members_deleteMember_Response_200 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems: type: object properties: id: type: string filterStr: type: string required: - id - filterStr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems DashVariablesOneOf8Type: type: string enum: - date-range title: DashVariablesOneOf8Type V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsType: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report title: V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsType ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResults: type: object properties: oauth: $ref: '#/components/schemas/V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth' required: - oauth description: Revocation result per token type. title: V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResults ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type' sheetId: type: string required: - type - sheetId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0 DashVariables12: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf12Type' required: - type title: DashVariables12 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type : type: string enum: - number-range title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type DashVariablesOneOf8Min0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf8MinOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf8Min0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions' chartId: type: string workbookExportSource: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource' required: - formatOptions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type : type: string enum: - element title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type DashVariablesOneOf3ValueOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf3ValueOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type' nodeIds: type: array items: type: string required: - type - nodeIds description: Export multiple elements title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type DashVariablesOneOf8Min: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf8Min0' - $ref: '#/components/schemas/DashVariablesOneOf8Min1' title: DashVariablesOneOf8Min ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type DashVariablesOneOf3ValueOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf3ValueOneOf1Unit V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type: type: string enum: - dashboard title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4 DashVariablesOneOf2Type: type: string enum: - text title: DashVariablesOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type : type: string enum: - chartColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: id: type: string urlId: type: string name: type: string type: $ref: '#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsType' parentId: type: string parentUrlId: type: string permission: $ref: '#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission' path: type: string badge: type: - string - 'null' isArchived: type: boolean description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. 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: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived - createdBy - updatedBy - createdAt - updatedAt title: V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: id: type: string urlId: type: string name: type: string type: $ref: '#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsType' parentId: type: string parentUrlId: type: string permission: $ref: '#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission' path: type: string badge: type: - string - 'null' isArchived: type: boolean description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. 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: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived - createdBy - updatedBy - createdAt - updatedAt title: V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type DashVariablesOneOf8MinOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf8MinOneOf1Type DashVariablesOneOf8Max0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf8MaxOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf8Max0 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicRecipientSettings: type: object properties: sourceNodeId: type: string recipientColumnId: type: string required: - sourceNodeId - recipientColumnId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicRecipientSettings ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables2 V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission: type: string enum: - create - annotate - organize - explore - view - edit - apply title: V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val DashVariables2: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf2Type' value: type: - string - 'null' required: - type - value title: DashVariables2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type : type: string enum: - NONE title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type DashVariablesOneOf4Type: type: string enum: - number-list title: DashVariablesOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4 V2MembersMemberIdFilesGetParametersPermissionFilter0: type: string enum: - view - explore - edit title: V2MembersMemberIdFilesGetParametersPermissionFilter0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type' required: - type description: Export all pages and elements in a workbook title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 DashVariablesOneOf3Type: type: string enum: - date title: DashVariablesOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission: type: string enum: - create - annotate - organize - explore - view - edit - apply title: V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsPermission ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettings: type: object properties: variables: type: object additionalProperties: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettings DashVariables6: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf6Type' value: type: array items: type: - number - 'null' format: double required: - type - value title: DashVariables6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3 MembersListMembersResponse2001: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems' nextPage: type: - string - 'null' required: - entries - nextPage title: MembersListMembersResponse2001 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type members_listRecentInodes_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_listRecentInodes_Response_200 members_createMember_Response_200: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: members_createMember_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op V2MembersMemberIdFilesGetParametersPermissionFilter: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdFilesGetParametersPermissionFilter0' - $ref: '#/components/schemas/V2MembersMemberIdFilesGetParametersPermissionFilter1' title: V2MembersMemberIdFilesGetParametersPermissionFilter V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow: type: string enum: - alltime - daily - weekly - always title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type' sheetId: type: string required: - type - sheetId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1 DashVariables7: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf7Type' value: $ref: '#/components/schemas/DashVariablesOneOf7Value' required: - type - value title: DashVariables7 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettings: type: object properties: variables: type: object additionalProperties: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettings ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 members_listMemberSchedules_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_listMemberSchedules_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type DashVariablesOneOf10Type: type: string enum: - date-null title: DashVariablesOneOf10Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type : type: string enum: - date-range title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type DashVariables17: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf17Type' value: type: array items: $ref: '#/components/schemas/DashVariablesOneOf17ValueItems' required: - type - value title: DashVariables17 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type : type: string enum: - text-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type : type: string enum: - boolean-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value DashVariablesOneOf3Value0: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf3ValueOneOf0Type' date: type: number format: double required: - type - date title: DashVariablesOneOf3Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type : type: string enum: - text title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions2 MembersListMembersResponse2000: type: array items: $ref: '#/components/schemas/V2MembersGetResponsesContentApplicationJsonSchemaOneOf0Items' title: MembersListMembersResponse2000 members_listAccessibleInodes_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_listAccessibleInodes_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type' layout: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout' scaleFactor: type: number format: double required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type : type: string enum: - boolean title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type DashVariables15: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf15Type' value: $ref: '#/components/schemas/DashVariablesOneOf15Value' required: - type - value title: DashVariables15 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type : type: string enum: - page title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type members_listFavoriteInodes_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_listFavoriteInodes_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type : type: string enum: - PDF title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type' sheetId: type: string required: - type - sheetId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type : type: string enum: - boolean-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow: type: string enum: - alltime - daily - weekly - always title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type : type: string enum: - boolean-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type : type: string enum: - boolArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type : type: string enum: - array title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7 V2MembersPostRequestBodyContentApplicationJsonSchemaAddToTeamsItems: type: object properties: teamId: type: string isTeamAdmin: type: boolean required: - teamId description: Whether to set the user as an admin for this team. title: V2MembersPostRequestBodyContentApplicationJsonSchemaAddToTeamsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettings: type: object properties: filters: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems' variableValues: $ref: '#/components/schemas/DashVariables_2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettings V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Schedule: 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: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Schedule ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1 members_revokeMemberTokens_Response_200: type: object properties: memberId: type: string description: Unique identifier of the user whose tokens were revoked. results: $ref: '#/components/schemas/V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResults' description: Revocation result per token type. required: - memberId - results title: members_revokeMemberTokens_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems: type: object properties: id: type: string filterStr: type: string required: - id - filterStr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0 members_listMembers_Response_200: oneOf: - $ref: '#/components/schemas/MembersListMembersResponse2000' - $ref: '#/components/schemas/MembersListMembersResponse2001' title: members_listMembers_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type' val: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val' required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables5 V21MembersGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: V21MembersGetResponsesContentApplicationJsonSchemaEntriesItems DashVariablesOneOf8MaxOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf8MaxOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type' tileId: type: string mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value' required: - type - tileId - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItems: type: object properties: formatOptions: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions' workbookExportSource: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource' required: - formatOptions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type : type: string enum: - datetime title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type : type: string enum: - date-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 V2MembersMemberIdFilesGetParametersTypeFilters: oneOf: - $ref: '#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFilters0' - $ref: '#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFilters1' title: V2MembersMemberIdFilesGetParametersTypeFilters ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 DashVariablesOneOf8MaxOneOf1Unit: type: string enum: - year - quarter - month - week - isoWeek - day - hour - minute - second title: DashVariablesOneOf8MaxOneOf1Unit ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type' layout: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout' scaleFactor: type: number format: double required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: id: type: string urlId: type: string name: type: string type: $ref: '#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsType' parentId: type: string parentUrlId: type: string permission: $ref: '#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission' path: type: string badge: type: - string - 'null' isArchived: type: boolean description: type: string ownerId: type: - string - 'null' parentSourceUrlId: type: string description: For a document deployed to a tenant organization, the `urlId` of the source document in the parent organization. Only present when the document was deployed from a parent organization. The source document can be a workbook, template, data model, dataset, or report. 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. lastInteractionAt: type: string format: date-time required: - id - urlId - name - type - parentId - parentUrlId - permission - path - badge - isArchived - createdBy - updatedBy - createdAt - updatedAt title: V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type: type: string enum: - always title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2: type: object properties: title: type: string messageBody: type: string notificationAttachments: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItems' includeLink: type: boolean runAsRecipient: type: boolean attachmentSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AttachmentSettings' conditionOptions: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions' alertConfig: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfig' notificationName: type: string reportSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettings' dynamicExportSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettings' dynamicRecipientSettings: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicRecipientSettings' rowLimit: type: number format: double reportVariant: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportVariant' embedOpts: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2EmbedOpts' required: - title - messageBody - notificationAttachments title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type : type: string enum: - queryColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type DashVariablesOneOf11Type: type: string enum: - number-null title: DashVariablesOneOf11Type DashVariablesOneOf3Value: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf3Value0' - $ref: '#/components/schemas/DashVariablesOneOf3Value1' title: DashVariablesOneOf3Value ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2Formatting: type: object properties: pivotHeaderStyle: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2Formatting ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type : type: string enum: - sheetColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2EmbedOpts: type: object properties: embedId: type: string evalConnectionId: type: string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2EmbedOpts ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type : type: string enum: - text title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables10 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables10 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type' tileId: type: string required: - type - tileId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfig: type: object properties: window: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow' volume: type: - number - 'null' format: double required: - window title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfig ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettings: type: object properties: filters: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems' variableValues: $ref: '#/components/schemas/DashVariables_2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettings V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems: type: object properties: teamId: type: string createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time name: type: string description: type: - string - 'null' visibility: $ref: '#/components/schemas/V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility' isArchived: type: boolean required: - teamId - createdBy - updatedBy - createdAt - updatedAt - name - description - visibility title: V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables11 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables11 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type' tileId: type: string required: - type - tileId title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type' mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value' required: - type - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type DashVariables1: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf1Type' value: type: - number - 'null' format: double required: - type - value title: DashVariables1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3 DashVariables4: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf4Type' value: type: array items: type: - number - 'null' format: double required: - type - value title: DashVariables4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type : type: string enum: - JSONL title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type' val: type: object additionalProperties: description: Any type required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type members_getMember_Response_200: type: object properties: organizationId: type: string memberId: type: string memberType: type: string firstName: type: string lastName: type: string email: type: string profileImgUrl: type: - string - 'null' createdBy: type: string updatedBy: type: string createdAt: type: string format: date-time updatedAt: type: string format: date-time homeFolderId: type: string description: ID of the My Documents folder for the user userKind: type: string isArchived: type: boolean description: Whether a user is deactivated in Sigma. isInactive: type: boolean description: Whether a user is archived by SCIM. required: - organizationId - memberId - memberType - firstName - lastName - email - profileImgUrl - createdBy - updatedBy - createdAt - updatedAt - homeFolderId - userKind title: members_getMember_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type : type: string enum: - number title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables11 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables11 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3 DashVariablesOneOf5Type: type: string enum: - text-list title: DashVariablesOneOf5Type V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsType: type: string enum: - workspace - folder - workbook - dataset - data-model - sql - worksheet - dashboard - template - table - symlink - report title: V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsType ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type : type: string enum: - variant title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type DashVariablesOneOf14Type: type: string enum: - hierarchical-list title: DashVariablesOneOf14Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type' sheetId: type: string mode: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode' columnId: type: string op: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op' value: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value' required: - type - sheetId - mode - columnId - op title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value V2MembersPostRequestBodyContentApplicationJsonSchemaUserKind: type: string enum: - internal - guest - embed title: V2MembersPostRequestBodyContentApplicationJsonSchemaUserKind ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions0 members_v2_1_listMembers_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V21MembersGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_v2_1_listMembers_Response_200 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type' nodeIds: type: array items: type: string required: - type - nodeIds description: Export multiple pages title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2EmbedOpts: type: object properties: embedId: type: string evalConnectionId: type: string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2EmbedOpts DashVariablesOneOf9Type: type: string enum: - number-range title: DashVariablesOneOf9Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Schedule: 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: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Schedule V2MembersMemberIdFilesGetParametersTypeFilters0: type: array items: $ref: '#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFiltersSchemaOneOf0Items' description: '**Note**: Workspaces are not returned as part of the response. To retrieve a workspace, use the **Single Document Type**.' title: V2MembersMemberIdFilesGetParametersTypeFilters0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type : type: string enum: - date-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type DashVariablesOneOf8Max: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf8Max0' - $ref: '#/components/schemas/DashVariablesOneOf8Max1' title: DashVariablesOneOf8Max ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type : type: string enum: - isNotEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems0: type: object properties: scheduledNotificationId: type: string description: Unique identifier of the scheduled export. workbookId: type: string description: Unique identifier of the workbook. schedule: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Schedule' configV2: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2' 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 - workbookId - schedule - configV2 - isSuspended - ownerId - lastUpdatedByUser - disabledAt - disabledBy - createdBy - updatedBy - createdAt - updatedAt title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type : type: string enum: - date-null title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables10 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables10 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout : type: string enum: - portrait - landscape title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource V2MembersMemberIdFilesRecentsGetParametersIncludeExplorations: type: string enum: - 'true' - 'false' description: Include explorations in the response. title: V2MembersMemberIdFilesRecentsGetParametersIncludeExplorations ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type' data: type: array items: type: - number - 'null' format: double required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 : type: string enum: - all title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type DashVariables11: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf11Type' required: - type title: DashVariables11 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables7 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables7 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type' elementId: type: string required: - type - elementId description: Export one element title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0 DashVariables13: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf13Type' required: - type title: DashVariables13 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables12 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables12 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType : type: string enum: - report title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type : type: string enum: - PDF title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables1 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 : type: string enum: - any title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type' val: type: boolean required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type: type: string enum: - workbook title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportVariant: type: object properties: tagId: type: string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportVariant ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type : type: string enum: - variantArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems2' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions2: type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2Type' conditions: type: array items: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems' required: - type - conditions title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions2 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3Type: type: string enum: - dashboard title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type: type: string enum: - worksheet title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type DashVariablesOneOf7Type: type: string enum: - boolean-list title: DashVariablesOneOf7Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type : type: string enum: - number-list title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type' val: type: number format: double required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2 V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth: type: object properties: tokensRevoked: type: number format: double description: Number of refresh tokens revoked. required: - tokensRevoked title: V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables4 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables4 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type' pageId: type: string required: - type - pageId description: Export one page title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1 DashVariablesOneOf7Value: type: object properties: 'true': type: boolean 'false': type: boolean 'null': type: boolean required: - 'true' - 'false' title: DashVariablesOneOf7Value ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type : type: string enum: - 'null' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle: type: string enum: - merged - repeated title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2WorkbookVariant: type: object properties: tagId: type: string exploreKey: type: string bookmarkId: type: string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2WorkbookVariant ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type : type: string enum: - queryColumn title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type DashVariablesOneOf8MinOneOf0Type: type: string enum: - fixed title: DashVariablesOneOf8MinOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5 DashVariables5: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf5Type' value: type: array items: type: - string - 'null' required: - type - value title: DashVariables5 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type : type: string enum: - bigintArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type' data: type: array items: type: - boolean - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type : type: string enum: - date-range title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type : type: string enum: - record title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type DashVariables3: type: object properties: type: $ref: '#/components/schemas/DashVariablesOneOf3Type' value: oneOf: - $ref: '#/components/schemas/DashVariablesOneOf3Value' - type: 'null' required: - type - value title: DashVariables3 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type : type: string enum: - string title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1 DashVariablesOneOf8MaxOneOf1Type: type: string enum: - prior - next title: DashVariablesOneOf8MaxOneOf1Type 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 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables3 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type' required: - type title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables3 members_listMemberTeams_Response_200: type: object properties: entries: type: array items: $ref: '#/components/schemas/V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems' 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: members_listMemberTeams_Response_200 V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AttachmentSettings: type: object properties: mergePdfAttachments: type: boolean zipAttachments: type: boolean title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AttachmentSettings ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type : type: string enum: - isEmpty title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val : oneOf: - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5' - $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6' title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type : type: string enum: - numberArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type : type: string enum: - stringArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout : type: string enum: - portrait - landscape title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type : type: string enum: - integer title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type' val: type: string required: - type - val title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6 ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type : type: string enum: - bytesArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type : type: string enum: - bool title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op : type: string enum: - Equals - GreaterThan - GreaterThanEq - LessThan - LessThanEq - NotEquals - IsNotNull - IsNull - Contains - StartsWith - EndsWith title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type : type: string enum: - datetimeArr title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type : type: string enum: - error title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type DashVariablesOneOf17Type: type: string enum: - file-list title: DashVariablesOneOf17Type ? V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 : type: object properties: type: $ref: '#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type' data: type: array items: type: - string - 'null' required: - type - data title: V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6 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