{"openapi":"3.1.0","info":{"title":"Sigma REST API","version":"1.0.0"},"paths":{"/v2/accountTypes":{"get":{"operationId":"listAccountTypes","summary":"List account types","description":"Returns a list of all account types available in the organization.\n\n  ### Usage notes\n  - Use the **accountTypeId** with the [/v2/accountTypes/:accountTypeId/permissions](https://help.sigmacomputing.com/reference/list-account-type-permissions) endpoint to retrieve more detailed permissions.\n  - To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n\n  ### Usage scenarios\n  - Display available account types in an admin interface.\n  - Show an overview of account types for management.\n  ","tags":["accountTypes"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/accountTypes_listAccountTypes_Response_200"}}}}}},"post":{"operationId":"createAccountType","summary":"Create an account type","description":"Create a custom account type with specified permissions.\n\n  ### Usage notes\n  - To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n  - Use the permission names from the [/v2/accountTypes/:accountTypeId/permissions](https://help.sigmacomputing.com/reference/list-account-type-permissions) endpoint.\n\n  ### Usage scenarios\n  - Create custom account types to define specific permission sets for your organization's users.\n  ","tags":["accountTypes"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"201":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/accountTypes_createAccountType_Response_201"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"The name of the account type."},"description":{"type":"string","description":"A description of the account type."},"permissions":{"type":"array","items":{"type":"string"},"description":"An array of permissions to enable for this account type. Use the permission names from the [/v2/accountTypes/:accountTypeId/permissions](https://help.sigmacomputing.com/reference/list-account-type-permissions) endpoint."}},"required":["name","description","permissions"]}}}}}},"/v2/accountTypes/{accountTypeId}/permissions":{"get":{"operationId":"listAccountTypePermissions","summary":"List account type permissions","description":"Returns all feature permissions for a specific account type.\n\n  ### Usage notes\n  - Retrieve the **accountTypeId** by calling the [/v2/accountTypes](https://help.sigmacomputing.com/reference/list-account-types) endpoint.\n  - To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n\n  ### Usage scenarios\n  - Display permission details in an admin interface.\n  - Validate user capabilities based on account type.\n  - Compare permissions across different account types.\n  ","tags":["accountTypes"],"parameters":[{"name":"accountTypeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/V2AccountTypesAccountTypeIdPermissionsGetResponsesContentApplicationJsonSchemaItems"}}}}}}}},"/v2/accountTypes/{accountTypeId}":{"delete":{"operationId":"deleteAccountType","summary":"Delete an account type","description":"Delete a custom account type and reassign its users to another account type.\n\n  ### Usage notes\n  - To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n  - Default Sigma account types cannot be deleted.\n  - All users assigned to the deleted account type will be reassigned to the specified **reassignToAccountTypeId**.\n  - Retrieve account type IDs by calling the [/v2/accountTypes](https://help.sigmacomputing.com/reference/list-account-types) endpoint.\n\n  ### Usage scenarios\n  - Remove custom account types that are no longer needed.\n  - Consolidate account types by moving users to a different account type before deletion.\n  ","tags":["accountTypes"],"parameters":[{"name":"accountTypeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"reassignToAccountTypeId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/accountTypes_deleteAccountType_Response_200"}}}}}}},"/v2/api-connectors":{"get":{"operationId":"listApiConnectors","summary":"List API connectors","description":"This endpoint returns a paginated list of API connectors. For more information on API connectors, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- Only returns API connectors that the user making this request has at least **Can view** access to.\n- Use the `name` query parameter to filter by connector name.\n- Use the `orderBy` query parameter to set sort order.\n\n### Usage scenarios\n- **Connector discovery:** Retrieve a list of available API connectors available to users configuring **Call API** actions.\n- **Connector management:** View and audit the organization's API connectors.","tags":["apiConnectors"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"orderBy","in":"query","required":false,"schema":{"type":"string"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-connectors_listApiConnectors_Response_200"}}}}}},"post":{"operationId":"createApiConnector","summary":"Create an API connector","description":"This endpoint creates a new API connector that defines how to call an external HTTP endpoint from within Sigma. For more information on API connectors, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled.\n- If a credential is provided using the `authId` parameter, the user making this request must have at least **Can view** permission on the credential and the request URL must match the credential's allowlist.\n- Retrieve the **apiCredentialId** (used as `authId`) by calling the [/v2/api-credentials](https://help.sigmacomputing.com/reference/list-api-credentials) endpoint.\n\n### Usage scenarios\n- **Programmatic connector setup:** Automate creation of API connectors as part of an environment provisioning workflow.\n- **Integration onboarding:** Create connectors for each external service your workbooks need to interact with.","tags":["apiConnectors"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-connectors_createApiConnector_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Display name of the connector."},"params":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParams"},"description":{"type":"string","description":"Human-readable description."},"config":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfig"},"authId":{"type":"string","description":"Identifier of the API credential (`apiCredentialId`) used to authenticate requests."}},"required":["name","params"]}}}}}},"/v2/api-connectors/{apiConnectorId}":{"get":{"operationId":"getApiConnector","summary":"Get an API connector","description":"This endpoint returns full details for a single API connector, including its request parameters and configuration. For more information on API connectors, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- Only returns API connectors that the user making this request has at least **Can view** access to.\n- Retrieve the **apiConnectorId** by calling the [/v2/api-connectors](https://help.sigmacomputing.com/reference/list-api-connectors) endpoint.\n\n### Usage scenarios\n- **Connector inspection:** Retrieve the full configuration of a connector for display or validation before use.\n- **Connector duplication:** Read an existing connector's configuration to use as the basis for a new one.","tags":["apiConnectors"],"parameters":[{"name":"apiConnectorId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-connectors_getApiConnector_Response_200"}}}}}},"delete":{"operationId":"deleteApiConnector","summary":"Delete an API connector","description":"This endpoint archives an API connector, preventing it from being used in new workbook actions. For more information on API connectors, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- Retrieve the **apiConnectorId** by calling the [/v2/api-connectors](https://help.sigmacomputing.com/reference/list-api-connectors) endpoint.\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled and must have **Can edit** access to the connector.\n\n### Usage scenarios\n- **Cleanup:** Remove connectors that are no longer in use to keep the organization's connector list tidy.\n- **Decommissioning:** Archive connectors associated with deprecated or retired external services.","tags":["apiConnectors"],"parameters":[{"name":"apiConnectorId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-connectors_deleteApiConnector_Response_200"}}}}}},"patch":{"operationId":"updateApiConnector","summary":"Update an API connector","description":"This endpoint updates one or more fields on an existing API connector. For more information on API connectors, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- Retrieve the **apiConnectorId** by calling the [/v2/api-connectors](https://help.sigmacomputing.com/reference/list-api-connectors) endpoint.\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled and must have **Can edit** access to the connector.\n- Omitted fields are left unchanged. Pass `null` for `authId` to remove the credential association.\n\n### Usage scenarios\n- **Endpoint migration:** Update the connector URL or parameters when an external API changes its interface.\n- **Credential rotation:** Rebind the connector to a new credential after rotating secrets.","tags":["apiConnectors"],"parameters":[{"name":"apiConnectorId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-connectors_updateApiConnector_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"New display name."},"description":{"type":["string","null"],"description":"New description. Pass `null` to clear."},"params":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParams"},"config":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfig"},"authId":{"type":["string","null"],"description":"New credential binding. Pass `null` to remove the credential."}}}}}}}},"/v2/api-credentials":{"get":{"operationId":"listApiCredentials","summary":"List API credentials","description":"This endpoint returns a paginated list of API credentials. For more information on API credentials, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled.\n- Only returns [API credentials](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma#add-a-new-api-credential-to-sigma) that the user making this request has at least **Can view** access to.\n- Secret fields such as passwords, tokens, and client secrets are never included in the response.\n- Use the `name` query parameter to filter by credential name.\n- Use the `orderBy` query parameter to set sort order.\n\n### Usage scenarios\n- **Credential management:** View and audit the credentials used by API connectors in your Sigma organization.\n- **API connector creation:** Retrieve available credentials to present as options when creating an API connector.","tags":["apiCredentials"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"orderBy","in":"query","required":false,"schema":{"type":"string"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-credentials_listApiCredentials_Response_200"}}}}}},"post":{"operationId":"createApiCredential","summary":"Create an API credential","description":"This endpoint creates a new API credential for use with API connectors and the **Call API** action in Sigma. For more information on API credentials, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled.\n- The `allowlist` parameter is required and must contain at least one hostname glob pattern. Use `[\"*\"]` to allow the credential to be used against any host.\n- The following authentication methods are supported: `basic`, `bearer`, `apiKey`, `oAuthClientCredentials`, `oAuthAuthorizationCode`, `oAuthPasswordCredentials`, `awsSigV4`.\n- Secret fields are encrypted at rest and are never returned in subsequent read responses.\n\n### Usage scenarios\n- **Credential provisioning:** Automate credential creation as part of environment setup or onboarding.\n- **Multi-service authentication:** Create separate credentials for each external service, with allowlists scoped to only that service's domains.","tags":["apiCredentials"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-credentials_createApiCredential_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Display name of the credential."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Hostname glob patterns the credential may be used against (e.g. `[\"*.example.com\"]`). Required and must not be empty; use `[\"*\"]` to allow every host."},"credential":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential"},"description":{"type":"string","description":"Human-readable description."}},"required":["name","allowlist","credential"]}}}}}},"/v2/api-credentials/{apiCredentialId}":{"get":{"operationId":"getApiCredential","summary":"Get an API credential","description":"This endpoint returns nonsensitive details for a single API credential. For more information on API credentials, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled and have at least **Can view** access on the credential.\n- Retrieve the **apiCredentialId** by calling the [/v2/api-credentials](https://help.sigmacomputing.com/reference/list-api-credentials) endpoint.\n- Secret fields (passwords, tokens, client secrets, secret access keys) are never returned.\n\n### Usage scenarios\n- **Credential inspection:** Retrieve the configuration of a credential to verify its settings before using it with a connector.","tags":["apiCredentials"],"parameters":[{"name":"apiCredentialId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-credentials_getApiCredential_Response_200"}}}}}},"delete":{"operationId":"deleteApiCredential","summary":"Delete an API credential","description":"This endpoint archives an API credential so it can no longer be associated with new API connectors. For more information on API credentials, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled and have **Can edit** access to the API credential.\n- Retrieve the **apiCredentialId** by calling the [/v2/api-credentials](https://help.sigmacomputing.com/reference/list-api-credentials) endpoint.\n- Archiving a credential does not automatically unbind any API connectors that reference it.\n\n### Usage scenarios\n- **Credential decommissioning:** Remove credentials for decommissioned services or expired tokens.\n- **Security cleanup:** Archive compromised or rotated credentials to prevent accidental reuse.","tags":["apiCredentials"],"parameters":[{"name":"apiCredentialId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-credentials_deleteApiCredential_Response_200"}}}}}},"patch":{"operationId":"updateApiCredential","summary":"Update an API credential","description":"This endpoint updates one or more fields on an existing API credential. For more information on API credentials, see [Configure API credentials and connectors in Sigma](https://help.sigmacomputing.com/docs/configure-api-credentials-and-connectors-in-sigma).\n\n### Usage notes\n- The user making this request must be assigned an account type with the **Manage API connectors** permission enabled and have **Can edit** access to the API credential.\n- Retrieve the **apiCredentialId** by calling the [/v2/api-credentials](https://help.sigmacomputing.com/reference/list-api-credentials) endpoint.\n- Omitted fields are left unchanged.\n- If a `credential` is provided, the provided authentication details (ID, secret, etc.) replace the previous values. To leave secrets unchanged, omit the `credential` parameter.\n\n### Usage scenarios\n- **Secret rotation:** Update the secret fields for a credential automatically for an external service.\n- **Allowlist updates:** Expand or restrict the set of hostnames the credential can be used against.","tags":["apiCredentials"],"parameters":[{"name":"apiCredentialId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api-credentials_updateApiCredential_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"New display name."},"description":{"type":["string","null"],"description":"New description. Pass `null` to clear."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Replacement list of hostname glob patterns. Must not be empty; use `[\"*\"]` to allow every host."},"credential":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential"}}}}}}}},"/v2/auth/token":{"post":{"operationId":"postToken","summary":"Get access token","description":"Use your Sigma client ID and secret with this endpoint to generate an access token valid for one hour, or to refresh your token. You can then use the access token to authenticate requests made to the Sigma API.\n\nTo make any API call with the Sigma API, including calls from the API documentation, you must have a valid bearer token. To generate a token, you must have a valid **Client ID** and **Secret**. See [Generate Sigma API client credentials](generate-client-credentials).\n\nYou make all API calls to a specific URL that corresponds to the cloud where your Sigma environment is hosted. Set the **Base URL** to the relevant URL for your environment. For details, see [Identify your API request URL](get-started-sigma-api#identify-your-api-request-url).\n\nGenerate a token by sending a POST request to this `/v2/auth/token` endpoint, or use the **Try It!** option on this page.\n\n### Usage notes\n\n- The API token is valid for 1 hour. When the token expires, an endpoint response returns an unauthorized error.\n- Refresh your access token before it expires using the `refresh_token` option.\n- If your client credentials are owned by a user assigned the Admin account type, you can generate an access token as a specific user using impersonation.\n  ","tags":["Auth"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/auth_postToken_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grant_type":{"type":"string","description":"Set to `client_credentials` to retrieve an access token."},"client_id":{"type":"string","description":"Your API client ID."},"client_secret":{"type":"string","description":"Your API client secret."}},"required":["grant_type","client_id","client_secret"]}}}}}},"/v2/connections":{"get":{"operationId":"listConnections","summary":"List connections","description":"Get a list of available connections and the connection IDs.","tags":["Connections"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"includeArchived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_listConnections_Response_200"}}}}}},"post":{"operationId":"createConnection","summary":"Create a connection","description":"Create a connection to a cloud data warehouse from Sigma. For additional details, see [Connect to data sources](https://help.sigmacomputing.com/docs/connect-to-data-sources).","tags":["Connections"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"201":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_createConnection_Response_201"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails"},"name":{"type":"string"},"description":{"type":"object","additionalProperties":{"description":"Any type"}},"timeoutSecs":{"type":"number","format":"double"},"useFriendlyNames":{"type":"boolean"}},"required":["details","name"]}}}}}},"/v2/connections/{connectionId}":{"get":{"operationId":"getConnection","summary":"Get connection details","description":"Get the metadata of a specific connection by connection ID.\n\n### Usage notes\n- Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_getConnection_Response_200"}}}}}},"put":{"operationId":"updateConnection","summary":"Update a connection","description":"Update a specific connection by connection ID. When updating the connection, send any connection details that you want to keep. Retrieve the current state of a connection by calling the [/v2/connections/{connectionId}](https://help.sigmacomputing.com/reference/get-connection) endpoint.\n\n  ### Usage notes\n  - To restore a deleted connection, pass the `restore` parameter.\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n\n      ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_updateConnection_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"details":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails"},"name":{"type":"string"},"description":{"type":"object","additionalProperties":{"description":"Any type"}},"timeoutSecs":{"type":"number","format":"double"},"useFriendlyNames":{"type":"boolean"},"restore":{"type":"boolean"}},"required":["details","name"]}}}}},"delete":{"operationId":"deleteConnection","summary":"Delete a connection","description":"Delete a specific connection by connection ID.\n\n  ### Usage notes\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n    ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_deleteConnection_Response_200"}}}}}},"patch":{"operationId":"updateConnectionDeprecated","summary":"Update a connection","description":"Update the metadata of a specific connection. This endpoint is deprecated. Instead, use the [PUT endpoint](https://help.sigmacomputing.com/reference/updateconnection).","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_updateConnectionDeprecated_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"useOauth":{"type":"boolean"}}}}}}}},"/v2/connections/{connectionId}/test":{"get":{"operationId":"testConnection","summary":"Test a connection","description":"Test whether an existing connection allows read and write operations for the user associated with the API credentials.\n\n  ### Usage notes\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n      ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_testConnection_Response_200"}}}}}}},"/v2/connections/{connectionId}/dbtArtifacts":{"post":{"operationId":"postConnectionDbtArtifacts","summary":"Add dbt metadata for a connection","description":"Add dbt run artifacts for a given connection. For more details, see [Configure dbt Core integration](/docs/manage-dbt-integration#configure-dbt-core-integration-beta).\n\n  ### Usage notes\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Create a tar.gz file containing the target directory of your dbt project that contains run artifacts.\n  - Provide the file in the request with the field name 'artifacts'.\n    ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"201":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_postConnectionDbtArtifacts_Response_201"}}}}},"requestBody":{"description":"The request body.","content":{"multipart/form-data":{"schema":{"type":"object","properties":{"artifacts":{"type":"string","format":"binary","description":"Compressed (tar.gz) file containing the artifacts of a dbt run."}},"required":["artifacts"]}}}}}},"/v2/connections/{connectionId}/grants":{"get":{"operationId":"listConnectionGrants","summary":"List grants for a connection","description":"Get a list of permissions granted to users or teams on a specific connection.\n\n### Usage notes\n- Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_listConnectionGrants_Response_200"}}}}}},"post":{"operationId":"createConnectionGrant","summary":"Add grants to a connection","description":"Add grants to grant permissions on a connection to specific users or teams.\n\n  ### Usage notes\n  - See [Data permissions overview](https://help.sigmacomputing.com/docs/data-permissions-overview) for details about permissions that can be granted on a connection.\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Specify the team or user IDs to grant permissions:\n\n    - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n\n  ### Usage scenarios\n  - Grant a specific team `Can use` access to a connection. ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_createConnectionGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grants":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"}}},"required":["grants"]}}}}}},"/v2/connections/{connectionId}/grants/{grantId}":{"delete":{"operationId":"deleteConnectionGrant","summary":"Delete a grant for a connection","description":"Deletes a specific permission granted on a specific connection.\n\n  ### Usage notes\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n\n  ### Usage scenarios\n  - **Principle of least privilege**: Reduce the permissions granted to specific users and teams on a connection to only what is needed.\n  - **User offboarding**: Remove connection permissions granted to a user that will be deactivated.\n    ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_deleteConnectionGrant_Response_200"}}}}}}},"/v2/connections/paths":{"get":{"operationId":"listConnectionPaths","summary":"List connection paths","description":"List all paths for all connections available to the user.\n\n  ### Usage notes\n  - Call this endpoint to retrieve the specific databases, catalogs, schemas, and tables available to the user associated with the API credentials.\n  - Pass `connectionId` to restrict results to a single connection.\n    ","tags":["Connections"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"connectionId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_listConnectionPaths_Response_200"}}}}}}},"/v2/connections/paths/{inodeId}":{"get":{"operationId":"getInodeConnectionPath","summary":"Get connection path for a table","description":"Get the connection path for a specific table. If the inodeId is not for a table, this endpoint returns an error.\n\n  ### Usage notes\n  - Retrieve the **inodeId** by calling the [/v2/workbooks/{workbookId}/sources](https://help.sigmacomputing.com/reference/get-workbook-sources) or [/v2/datasets/{datasetId}/source](https://help.sigmacomputing.com/reference/get-dataset-sources) endpoint.\n    ","tags":["Connections"],"parameters":[{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_getInodeConnectionPath_Response_200"}}}}}}},"/v2/connection/{connectionId}/lookup":{"post":{"operationId":"lookupConnection","summary":"Look up connections by path","description":"This endpoint returns details about the fully qualified path to an object in a specific connection by connection ID.\n\n  ### Usage notes\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n\n  Different connections support different paths:\n\n  - For a Snowflake connection, you can specify `DATABASE.SCHEMA.TABLE`, `DATABASE.SCHEMA.STORED_PROCEDURE`, or a less-specific path.\n  - For Amazon Redshift, you can specify `SCHEMA.TABLE`, `SCHEMA.STORED_PROCEDURE`, or a less-specific path.\n  - For Databricks, you can specify `CATALOG.SCHEMA.TABLE` or a less-specific path.\n\n  Connection path details include the connection path ID, called the `inodeId` in the response, and the type of object in the connection path, either a table or a scope (database, schema, catalog, or other higher-level object).","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_lookupConnection_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"path":{"$ref":"#/components/schemas/V2ConnectionConnectionIdLookupPostRequestBodyContentApplicationJsonSchemaPath"}},"required":["path"]}}}}}},"/v2/connections/tables/{tableId}/columns":{"get":{"operationId":"listConnectionTableColumns","summary":"List columns for a warehouse table","description":"Returns column names, types, and other details for a table in a data warehouse connection.\n\n### Usage notes\n- Retrieve the **tableId** by first calling the [/v2/connections/paths](https://help.sigmacomputing.com/reference/list-connection-paths) endpoint to discover available paths, then calling the [/v2/connection/{connectionId}/lookup](https://help.sigmacomputing.com/reference/lookup-connection) endpoint with the path to the desired table and using the `inodeId` included in the response.","tags":["Connections"],"parameters":[{"name":"tableId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_listConnectionTableColumns_Response_200"}}}}}}},"/v2/connections/{connectionId}/sync":{"post":{"operationId":"syncConnectionPath","summary":"Sync a connection by path","description":"\n  Sync the connection for a data source to retrieve any changes from the data warehouse.\n\n  ### Usage notes\n  - Specify the path to a table, stored procedure, schema, or database in your data warehouse that you want to sync. To trigger a full connection sync, provide an empty path (`[]`).\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Different connections support different paths:\n\n    - For a Snowflake connection, you can specify `DATABASE.SCHEMA.TABLE`, `DATABASE.SCHEMA.STORED_PROCEDURE`, or a less-specific path.\n    - For Amazon Redshift, you can specify `SCHEMA.TABLE`, `SCHEMA.STORED_PROCEDURE`, or a less-specific path.\n    - For Databricks, you can specify `CATALOG.SCHEMA.TABLE` or a less-specific path.\n    ","tags":["Connections"],"parameters":[{"name":"connectionId","in":"path","required":true,"schema":{"type":"string"}},{"name":"useServiceAccount","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_syncConnectionPath_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"path":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdSyncPostRequestBodyContentApplicationJsonSchemaPath"}},"required":["path"]}}}}}},"/v2/connections/paths/{connectionPathId}/grants":{"get":{"operationId":"listConnectionPathGrants","summary":"List grants for a connection path","description":"Get a list of permissions granted to a specific connection path.\n\n  ### Usage notes\n  - Retrieve the **connectionPathId** by calling the [/v2/connection/{connectionId}/lookup](https://help.sigmacomputing.com/reference/lookup-connection) endpoint and using the `inodeId` included in the response, or by calling the [/v2/connections/paths](https://help.sigmacomputing.com/reference/list-connection-paths) endpoint and using the `urlId` included in the response.\n  ","tags":["Connections"],"parameters":[{"name":"connectionPathId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_listConnectionPathGrants_Response_200"}}}}}},"post":{"operationId":"createConnectionPathGrant","summary":"Add grants to a connection path","description":"Add a grant to a specific connection path to grant permissions for users or teams.\n\n  ### Usage notes\n  - Retrieve the **connectionPathId** by calling the [/v2/connection/{connectionId}/lookup](https://help.sigmacomputing.com/reference/lookup-connection) endpoint and using the `inodeId` included in the response, or by calling the [/v2/connections/paths](https://help.sigmacomputing.com/reference/list-connection-paths) endpoint and using the `urlId` included in the response.\n  - Specify the team or user IDs to grant permissions:\n\n    - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n    ","tags":["Connections"],"parameters":[{"name":"connectionPathId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_createConnectionPathGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grants":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"}}},"required":["grants"]}}}}}},"/v2/connections/paths/{connectionPathId}/grants/{grantId}":{"delete":{"operationId":"deleteConnectionPathGrant","summary":"Delete a grant for a connection path","description":"Delete a specific permission granted to a specific connection path for a user or team.\n\n  ### Usage notes\n  - Retrieve the **connectionPathId** by calling the [/v2/connection/{connectionId}/lookup](https://help.sigmacomputing.com/reference/lookup-connection) endpoint and using the `inodeId` included in the response, or by calling the [/v2/connections/paths](https://help.sigmacomputing.com/reference/list-connection-paths) endpoint and using the `urlId` included in the response.\n  - Retrieve the **grantId** by calling the [/v2/connections/paths/{connectionPathId}/grants](https://help.sigmacomputing.com/reference/list-connection-path-grants) endpoint.\n  ","tags":["Connections"],"parameters":[{"name":"connectionPathId","in":"path","required":true,"schema":{"type":"string"}},{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/connections_deleteConnectionPathGrant_Response_200"}}}}}}},"/v2/credentials":{"post":{"operationId":"createCredentials","summary":"Create API credentials","description":"Create API client credentials for a given user. To make this request, your API client credentials must be associated with a Sigma admin user for the same Sigma organization.\n\n  **Important:** The response includes sensitive information. Ensure that you securely store and handle the returned `clientId` and `clientSecret`. These credentials grant access to your Sigma account and should never be exposed publicly or shared unnecessarily.\n\n  ### Usage Notes:\n  - Retrieve the **ownerId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.","tags":["Credentials"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/credentials_createCredentials_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"ownerId":{"type":"string","description":"Unique identifier of the user."},"name":{"type":"string","description":"Name of the credentials."},"description":{"type":"string","description":"Description of the credentials"},"scopes":{"type":"array","items":{"$ref":"#/components/schemas/V2CredentialsPostRequestBodyContentApplicationJsonSchemaScopesItems"},"description":"Scopes to assign to the credentials. If not provided, defaults to \"api\"."}},"required":["ownerId","name"]}}}}}},"/v2/credentials/{clientId}":{"delete":{"operationId":"deleteCredentials","summary":"Delete API credentials","description":"Revoke the API client credentials associated with a given client ID. To make this request, your API client credentials must be associated with a Sigma admin user for the same Sigma organization.","tags":["Credentials"],"parameters":[{"name":"clientId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/credentials_deleteCredentials_Response_200"}}}}}}},"/v2/dataModels":{"get":{"operationId":"listDataModels","summary":"List data models","description":"This endpoint retrieves a list of all data models available. You can use the response from this endpoint to review existing data models and determine if there are duplicates or gaps.\n\n### Usage notes\nThis endpoint requires no parameters for basic requests, but supports query parameters for pagination and response limit.\n\nUsers with the Admin account type can optionally retrieve all data models in the organization.\n\n#### Pagination\nThis endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows:\n- hasMore: A boolean value indicating whether there are more pages of data available beyond the current page.\n- total: The total number of entries available across all pages.\n- nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data.\n\n#### Example response for pagination\n{\n  \"hasMore\": true,\n  \"total\": 104,\n  \"nextPage\": \"50\"\n}\nTo request additional pages, include the `nextPage` option in your followup request according to the endpoint's parameter requirements. This process can be repeated until the `nextPage` option returns `null`, indicating that no further data is available.\n\n### Usage scenarios\n- **Data model navigation:** Allows users to easily navigate through their available of data models and access the one they need.\n- **Track lineage**: Identify dependencies and lineage of data sources and data models.\n","tags":["dataModels"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"excludeTags","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"skipPermissionCheck","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModels_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}":{"get":{"operationId":"getDataModel","summary":"Get a data model","description":"Get details of a specific data model by `dataModelId`.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"excludeTags","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_getDataModel_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}/sources":{"get":{"operationId":"listDataModelSources","summary":"List data model sources","description":"List data sources of a data model given the dataModelId. The response can be a dataset (deprecated), table, custom SQL element, or the data model document and specific elements used as a source.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModelSources_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}/tags":{"get":{"operationId":"listDataModelTags","summary":"List tags for a data model","description":"Retrieve the version tag information for a specific data model.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n  ### Usage scenarios\n\n  - Provide on-demand performant access to version tag details for a data model. For example, make a GET request to the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint with the `excludeTags` parameter set to `True` to improve performance, then use this endpoint to return tag information for specific data models.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModelTags_Response_200"}}}}}}},"/v2/dataModels/tag":{"post":{"operationId":"tagDataModel","summary":"Tag a data model","description":"Add a version tag to a data model and optionally set up a connection to swap to for a specific version of the data model.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n  - Retrieve the **tag** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n  - Retrieve the **connectionId** to use as the **fromId** or **toId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - If your data model includes a source that is not mapped to a new source, that source is not swapped.\n  - When swapping data models used as the source for the data model:\n    - You can only swap a data model source to another version of the same data model source. You cannot swap a data model source to a table in your data warehouse or a dataset.\n    - When you swap sources from one data model version to a new one, specify the version tag of the data model that you swap to with `toVersionTagId`:\n      - To swap to the latest published version of the data model, specify `toVersionTagId` as `null`.\n      - To swap to a specific tagged version of the data model, specify the `toVersionTagId` of the data model.\n    - If the data model already uses a specific tagged version of a data model as a source, use `fromVersionTagId` to indicate which tagged version to swap from.\n      - To swap from the latest published version of the data model, specify `fromVersionTagId` as `null`.\n      - To swap from a specific tagged version of the data model, specify the `fromVersionTagId` of the data model.\n  - To retrieve the `fromVersionTagId` for a data model used as the data model source, call the [/v2/dataModels/{dataModelId}/sources](https://help.sigmacomputing.com/reference/list-data-model-sources) endpoint and use the `versionTagId` in the response.\n  - To retrieve the `versionTagId` for a data model, call the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint and use the `versionTagId` in the response.\n\n  ### Usage scenarios\n  - **Lifecycle management**: Identify production and development resources.\n    ","tags":["dataModels"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_tagDataModel_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"dataModelId":{"type":"string","description":"Unique identifier of the data model."},"tag":{"type":"string","description":"Name of the version tag to apply."},"dataModelVersion":{"type":"number","format":"double","description":"Specific version of the published data model to tag."},"sourceMappingConfig":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems"},"description":"Swap sources for the data model when you add a tag."},"dataModelSourceTaggedVersions":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems"},"description":"Which tagged version of the data model to use as the source."},"isDefault":{"type":"boolean","description":"Whether to make this tag the default tagged version to load if the user doesn't have access to the published version."}},"required":["dataModelId","tag"]}}}}}},"/v2/dataModels/{dataModelId}/materializationSchedules":{"get":{"operationId":"listDataModelMaterializationSchedules","summary":"List materialization schedules for a data model","description":"\n  This endpoint retrieves a list of all materialization schedules associated with a data model. Each schedule details when and how often specific data model elements are automatically materialized to optimize performance and data freshness.\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n  - To retrieve additional pages of results, use the response of the `nextPageToken` parameter as the `pageToken` query parameter in the following request.\n\n  ### Usage scenarios\n  - **Monitoring and management:** Administrators can monitor and manage the schedules for materialization to ensure optimal system performance.\n  - **Audit and review:** Periodic reviews of materialization schedules can help in assessing the efficiency of data processes and making necessary adjustments.\n\n  ### Best practices\n  - Regularly review materialization schedules to align them with current data usage patterns and business needs.\n  - Use pagination to manage large sets of data and improve response times of API calls.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModelMaterializationSchedules_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}/materializations/{materializationId}":{"get":{"operationId":"getDataModelMaterialization","summary":"Get a materialization job","description":"This endpoint retrieves details of a specific materialization job. It provides comprehensive information including status, start and completion times, which helps for monitoring and troubleshooting materialization.\n\n### Usage notes\n- Retrieve the **materializationId** by calling the [/v2/dataModels/materializations](https://help.sigmacomputing.com/reference/materialize-data-model-element) endpoint.\n\n### Usage scenarios\n- **Job Monitoring:** Enables administrators to track the progress and status of materialization jobs, aiding in operational oversight.\n- **Troubleshooting:** Provides detailed information needed to diagnose and resolve issues in materialization processes.\n\n### Best practices\n- Monitor materialization jobs regularly to detect and resolve issues promptly.\n- Use the detailed information provided by this endpoint to optimize materialization settings and performance.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"materializationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_getDataModelMaterialization_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}:materialize":{"post":{"operationId":"materializeDataModelElement","summary":"Run materialization for a data model element","description":"This endpoint runs a scheduled materialization for an element in a data model. Materialization processes the data of the specified element, allowing the data to be stored or cached for optimized access and performance.\n\n  For more details on materialization, see [Materialization](https://help.sigmacomputing.com/docs/materialization).\n\n  ### Usage notes\n  - The materialization schedule for the specified element must be created beforehand.\n  - Retrieve the **sheetId** by calling the [/v2/dataModels/{dataModelId}/materialization-schedules](https://help.sigmacomputing.com/reference/list-data-model-materialization-schedules) endpoint.\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n  ### Usage scenarios\n  - **Performance optimization:** Use this endpoint to improve response times for frequently accessed data model elements.\n  - **Data refresh:** Allows users to manually (programmatically) refresh the data of specific data model elements to ensure that the latest data is available for analysis and reporting.\n\n  ### Best practices\n  - Prioritize materialization for elements that are heavily used or form critical components of business reports.\n  - Monitor the performance impacts of materialization and adjust strategies as necessary to optimize resource usage and response times.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_materializeDataModelElement_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier for the materialization schedule of this element."}},"required":["sheetId"]}}}}}},"/v2/dataModels/{dataModelId}/swapSources":{"post":{"operationId":"swapDataModelSources","summary":"Swap data model sources","description":"Swap the data sources used by a data model. You can swap from one connection to another, and/or from one dataset or table to another.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - To map the sources of a specific element, you can use the table or dataset ID:\n\n    - List sources of data model by calling the [/v2/dataModels/{dataModelId}/sources](https://help.sigmacomputing.com/reference/list-data-model-sources) endpoint.\n    - Retrieve table and dataset IDs by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint. Use the `typeFilters` option to filter for table and dataset files. Use `id` field in the response as the `fromId` or `toId`, as relevant.\n\n  - To swap all tables in a connection, set the `swapTables` option to `true`.\n\n    - Use the `paths` option to specify the connection paths to swap. The connection path is a list of strings that represents the path to the table in the cloud data warehouse. For example, `[\"database\", \"schema\", \"table\"]`.\n    - If the table schema is the same in both connections, leave the `paths` option empty to swap all tables in the connection. You can also pass a partial path to swap between databases, catalogs, or schemas.\n    - If `sourceMapping` is provided, those mappings take precedence over the connection swaps.\n    - If `swapTables` is not set to `true`, only Custom SQL elements have their connections changed.\n\n  ### Usage scenarios\n  - **Data model development**: Use a test data source while developing a data model, then swap the source to a production database when ready to share the data model for production use.\n    ","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_swapDataModelSources_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"sourceMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"}},"connectionMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"}},"copyInputTableData":{"type":"boolean"}}}}}}}},"/v2/dataModels/{dataModelId}/lineage":{"get":{"operationId":"listDataModelLineageTree","summary":"List lineage for a data model","description":"This endpoint lists the elements, data sources, and upstream lineage for those data sources in a data model, providing a detailed view of how data is interconnected within a data model.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n  ### Usage scenarios\n  - **Data governance:** Allows data managers to track how information is used and propagated through different data model elements.\n  - **Debugging and optimization:** Helps with identifying and resolving issues in data processing or data model structure.\n  - **Data source management**: Identify the dependencies of data sources in use in a specific data model.\n\n  ### Best practices\n  - Integrate this information into documentation or data dictionaries to enhance transparency and understanding across teams.\n  - Use this endpoint to regularly audit data model structures, ensuring that all data connections and transformations are correct and optimized.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModelLineageTree_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}/elements":{"get":{"operationId":"listDataModelElements","summary":"List elements in a data model","description":"This endpoint retrieves details of all elements in a data model, which helps you understand and interact with the individual components that make up the data model, such as tables or controls.\n### Usage notes\n- Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n- To retrieve elements from version-tagged data models, pass the `tagName` in the query parameters with the tag name. Retrieve the tag name by calling the [/v2/dataModels/{dataModelId}/tags](https://help.sigmacomputing.com/reference/list-data-model-tags) endpoint and using the `tags.name` included in the response for a given data model.\n### Usage scenarios\n- **Detailed analysis:** Developers and users can retrieve specific elements for detailed data analysis or further manipulation.\n- **Interface customization:** Allows for dynamic interface construction where users can choose which elements to display or interact with.\n### Best practices\n- Use pagination to handle large numbers of elements efficiently, reducing load times and improving user experience.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"tagName","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_listDataModelElements_Response_200"}}}}}}},"/v2/dataModels/{dataModelId}/columns":{"get":{"operationId":"getDataModelColumns","summary":"List columns for all elements in a data model","description":"This endpoint retrieves all columns in a data model for all elements in the data model.\n\n  ### Usage notes\n  - Retrieve the **dataModelId** by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n  ### Usage scenarios\n  - **Data exploration:** Enable users to explore the data structure of a data model element, facilitating deeper analysis and understanding.\n  - **Integration tasks:** Useful for developers integrating Sigma with other tools that need to know the data structure to map data accurately.\n\n  ### Best practices\n  - Use this endpoint when setting up interfaces that require specific knowledge about the data structure.","tags":["dataModels"],"parameters":[{"name":"dataModelId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/dataModels_getDataModelColumns_Response_200"}}}}}}},"/v2/datasets":{"get":{"operationId":"listDatasets","summary":"List datasets (Deprecated)","description":"Get a list of available datasets. Available datasets include any datasets in your My Documents folder and any datasets you have access to.\n\n **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n ### Usage scenarios\n - **Plan dataset migration**: Review the owner, location (path) of the dataset, migration status, and total number of documents that reference the dataset to plan dataset migration tasks.\n - **Clean up after dataset migration**: Retrieve the `dataModelId` of the data model created for the dataset. Make a GET request to the [/v2/dataModels/{dataModelId}](https://help.sigmacomputing.com/reference/get-data-model) endpoint to retrieve more details about the created data model.\n - **Identify unused datasets**: Review datasets that have 0 documents referencing it as a source and delete those datasets by making a DELETE request to the [/v2/files/{inodeId}](https://help.sigmacomputing.com/reference/delete-file) endpoint.\n   ","tags":["Datasets"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"skipPermissionCheck","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_listDatasets_Response_200"}}}}}}},"/v2/datasets/{datasetId}":{"get":{"operationId":"getDataset","summary":"Get a dataset (Deprecated)","description":"Get a specific dataset by datasetId\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_getDataset_Response_200"}}}}}}},"/v2/datasets/{datasetId}/sources":{"get":{"operationId":"getDatasetSources","summary":"List dataset sources (Deprecated)","description":"Retrieve the sources of a dataset if the source is a table or a dataset. Returns the inode IDs.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItems"}}}}}}}},"/v2/datasets/{datasetId}/materialization":{"post":{"operationId":"materializeDataset","summary":"Materialize a dataset (Deprecated)","description":"Start a materialization run for a specific dataset. The materialization schedule for the dataset must already exist.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_materializeDataset_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{}}}}}},"get":{"operationId":"listDatasetMaterializations","summary":"List materializations for a dataset (Deprecated)","description":"List materialization jobs for a dataset.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_listDatasetMaterializations_Response_200"}}}}}}},"/v2/datasets/{datasetId}/grants":{"get":{"operationId":"listDatasetGrants","summary":"Get grants for a dataset (Deprecated)","description":"Get a list of permissions granted to teams and users for a specific dataset.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_listDatasetGrants_Response_200"}}}}}},"post":{"operationId":"createDatasetGrant","summary":"Grant permissions on a dataset (Deprecated)","description":"Grant permissions to a specific dataset for users or teams.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  - Grant permissions to one user or team at a time using the relevant IDs:\n\n    - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n    ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_createDatasetGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grants":{"type":"array","items":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"}}},"required":["grants"]}}}}}},"/v2/datasets/{datasetId}/grants/{grantId}":{"delete":{"operationId":"deleteDatasetGrant","summary":"Delete a dataset permission (Deprecated)","description":"Delete a permission granted on a specific dataset by grantId.\n\n  **Deprecation notice**: [Datasets](/docs/datasets) are deprecated. Starting June 2, 2026, you will no longer be able to create datasets or edit existing datasets. Migrate your datasets to data models and update any documents that use datasets as a data source to use a different source. See [Migrate a dataset to a data model](/docs/migrate-a-dataset-to-a-data-model).\n\n  ### Usage notes\n  - Retrieve the **datasetId** by calling the [/v2/datasets](https://help.sigmacomputing.com/reference/list-datasets) endpoint.\n  - Retrieve the **grantId** by calling the [/v2/datasets/{datasetId}/grants](https://help.sigmacomputing.com/reference/list-dataset-grants) endpoint.\n  ","tags":["Datasets"],"parameters":[{"name":"datasetId","in":"path","required":true,"schema":{"type":"string"}},{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/datasets_deleteDatasetGrant_Response_200"}}}}}}},"/v2/deploymentPolicies":{"get":{"operationId":"listDeployments","summary":"List deployment policies (Beta)","description":"List all deployment policies set up for an organization.\n    \n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_listDeployments_Response_200"}}}}}},"post":{"operationId":"createDeployment","summary":"Create a deployment policy (Beta)","description":"Create a deployment policy to define what documents to deploy to a tenant organization and how to swap sources for those documents.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the **versionTagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint.\n- Retrieve the identifier for `sourceSwapPolicies` by calling the [/v2/sourceSwapPolicies](https://help.sigmacomputing.com/reference/list-source-swap-policies) endpoint and using the `policyId` in the response.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_createDeployment_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the deployment policy."},"versionTagId":{"type":"string"},"sourceSwapPolicies":{"type":"array","items":{"type":"string"},"description":"Unique identifiers of the source swap policies used to swap connections when deploying documents."},"nameInTenant":{"type":"string","description":"Name to use for the workspace created by the deployment policy in the receiving tenant."},"copyInputTableData":{"type":"boolean","description":"Whether to copy input table data to receiving tenant organizations when deploying documents. Only applies to input tables that are editable in draft mode. Defaults to false."}},"required":["name"]}}}}}},"/v2/deploymentPolicies/{deploymentPolicyId}":{"get":{"operationId":"getDeployment","summary":"Get a deployment policy (Beta)","description":"Get details for a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_getDeployment_Response_200"}}}}}},"patch":{"operationId":"updateDeployment","summary":"Update a deployment policy (Beta)","description":"Update a deployment policy. Only the fields included in the request are changed.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- Retrieve the identifier for `sourceSwapPolicies` by calling the [/v2/sourceSwapPolicies](https://help.sigmacomputing.com/reference/list-source-swap-policies) endpoint and using the `policyId` in the response.\n- The version tag cannot be changed after a deployment policy is created.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_updateDeployment_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the deployment policy."},"nameInTenant":{"type":"string","description":"Name to use for the workspace created by the deployment policy in the receiving tenant."},"sourceSwapPolicies":{"type":"array","items":{"type":"string"},"description":"Unique identifiers of the source swap policies used to swap connections when deploying documents. Replaces the existing set."},"copyInputTableData":{"type":"boolean","description":"Whether to copy input table data to receiving tenant organizations when deploying documents. Only applies to input tables that are editable in draft mode."}}}}}}},"delete":{"operationId":"archiveDeployment","summary":"Archive a deployment policy (Beta)","description":"Archive a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_archiveDeployment_Response_200"}}}}}}},"/v2/deploymentPolicies/{deploymentPolicyId}/tenants":{"get":{"operationId":"listTenantsForDeployment","summary":"List tenants for a deployment policy (Beta)","description":"List tenants for a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n\n### Usage scenarios\n- Review and audit documents deployed to specific tenant organizations.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_listTenantsForDeployment_Response_200"}}}}}},"post":{"operationId":"addTenantToDeployment","summary":"Add a tenant to a deployment policy (Beta)","description":"Add a tenant to a deployment policy.\n    \n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- Retrieve the `tenantId` from the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.\n\n### Usage scenarios\n- Deploy documents in a deployment policy to a specific tenant organization.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_addTenantToDeployment_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant organization."}},"required":["tenantOrganizationId"]}}}}}},"/v2/deploymentPolicies/{deploymentPolicyId}/files":{"post":{"operationId":"addInodesToDeployment","summary":"Add documents to a deployment policy (Beta)","description":"Add documents to a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- To add workbooks to a deployment policy, retrieve the relevant `workbookId` from the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- To add data models to a deployment policy, retrieve the relevant `dataModelId` from the [/v2/datamodels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n### Usage scenarios\n- Centrally manage documents that are deployed to specific tenant organizations.\n","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_addInodesToDeployment_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"inodeIds":{"type":"array","items":{"type":"string"},"description":"Unique identifier of the document."}},"required":["inodeIds"]}}}}},"get":{"operationId":"listInodesForDeployment","summary":"List documents for a deployment policy (Beta)","description":"List documents for a deployment policy\n    \n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- If the user associated with the API key does not have access to the document, the `inode` field is `null`.\n\n### Usage scenarios\n- Review and audit documents deployed to specific tenant organizations.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_listInodesForDeployment_Response_200"}}}}}}},"/v2/deploymentPolicies/{deploymentPolicyId}/files/{inodeId}":{"delete":{"operationId":"removeInodesFromDeployment","summary":"Remove a document from a deployment policy (Beta)","description":"Remove a document from a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- To remove workbooks from a deployment policy, retrieve the relevant `workbookId` from the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- To remove data models from a deployment policy, retrieve the relevant `dataModelId` from the [/v2/datamodels](https://help.sigmacomputing.com/reference/list-data-models) endpoint.\n\n### Usage scenarios\n- Revoke access to outdated documents from tenant organizations.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_removeInodesFromDeployment_Response_200"}}}}}}},"/v2/deploymentPolicies/tenants":{"get":{"operationId":"listDeployableTenants","summary":"List deployable tenant organizations (Beta)","description":"Returns a paginated list of tenant organizations that the calling organization can deploy to.\n\n- **Parent organizations**: Returns all tenant organizations.\n- **Tenant organizations**: Returns tenant organizations that the calling tenant has been granted deployment capabilities to.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned an account type with the **Manage deployment policies** permission enabled.","tags":["deploymentPolicies"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_listDeployableTenants_Response_200"}}}}}}},"/v2/deploymentPolicies/{deploymentPolicyId}/tenants/{tenantOrganizationId}":{"delete":{"operationId":"removeTenantFromDeployment","summary":"Remove a tenant from a deployment policy (Beta)","description":"Remove a tenant from a deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- Retrieve the `deploymentPolicyId` from the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint.\n- Retrieve the `tenantOrganizationId` from the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint or from the [/v2/deploymentPolicies/{deploymentPolicyId}/tenants](https://help.sigmacomputing.com/reference/list-tenants-for-deployment) endpoint.\n\n### Usage scenarios\n- Remove documents in a deployment policy from a tenant organization.\n- Clean up tenant assignments when a tenant is no longer needed.\n    ","tags":["deploymentPolicies"],"parameters":[{"name":"deploymentPolicyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/deploymentPolicies_removeTenantFromDeployment_Response_200"}}}}}}},"/v2/favorites":{"post":{"operationId":"addFavorite","summary":"Favorite a document","description":"Favorite a folder or document 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  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n      ","tags":["Favorites"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/favorites_addFavorite_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"memberId":{"type":"string","description":"Unique identifier of the member."},"inodeId":{"type":"string","description":"Unique identifier of the document or folder."}},"required":["memberId","inodeId"]}}}}}},"/v2/favorites/member/{memberId}":{"get":{"operationId":"listFavorites","summary":"Get favorite documents for a user","description":"Get the favorite documents for a specific user. This endpoint has the same functionality as the [List all favorite documents of a member](https://help.sigmacomputing.com/reference/listfavoriteinodes) endpoint.\n\n  ### Usage notes\n  - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    ","tags":["Favorites"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/favorites_listFavorites_Response_200"}}}}}}},"/v2/favorites/member/{memberId}/file/{inodeId}":{"delete":{"operationId":"removeFavorite","summary":"Unfavorite a document","description":"Unfavorite a folder or document 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  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the **id** included in the response.\n    ","tags":["Favorites"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/favorites_removeFavorite_Response_200"}}}}}}},"/v2/files":{"get":{"operationId":"list","summary":"List files","description":"List all documents, such as workbooks and folders, accessible from the parent.\n\n  ### Which files are returned by this endpoint\n\n  The documents and folders accessible through this endpoint match those returned when you search in the Sigma UI. Some documents that you can view in the Sigma UI are not returned by this endpoint.\n\n  - Returned documents and folders are limited to those that you have access to, such as through ownership, a document directly shared with you, a document link shared with you that you have opened, or access inherited through a folder or a workspace. This restriction also applies to users granted the Admin account type.\n  - Newly created files are not returned immediately after creation. Updated files are reflected immediately.\n  - If no `typeFilters` are set, only workbooks, folders, data models, datasets (deprecated), and reports are returned. To return other file types, such as a shortcut (symlink), specify a file type using the `typeFilters` option.\n\n  ### Usage notes\n\n  - Use the **parentId** to specify a folder and return details about the nested files and documents:\n    - Retrieve the ID to use as a **parentId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n    - To use the \"My Documents\" folder as the parent folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n    - If parentId is not specified, it is assumed to be the root.\n  - Use the available filters to return files that contain a specific keyword in the name, files with specific permissions granted to the user associated with the API credentials, or files of a specific type.\n    ","tags":["Files"],"parameters":[{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"permissionFilter","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2FilesGetParametersPermissionFilter"}},{"name":"typeFilters","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2FilesGetParametersTypeFilters"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"parentId","in":"query","required":false,"schema":{"type":"string"}},{"name":"directChildFilter","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_list_Response_200"}}}}}},"post":{"operationId":"create","summary":"Create a file","description":"Create an empty workspace, folder, workbook, or report in Sigma.\n\n  ### Usage notes\n  - Specify a **parentId** for a folder, workbook, or report to place it within another folder. Retrieve the ID to use as a **parentId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n  - Specify an **ownerId** for a folder, workbook, or report to create it on behalf of another user. Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n\n  ### Usage scenarios\n  - **Project onboarding**: Start a new project by creating a workspace and folders to contain the workbooks for the project.\n    ","tags":["Files"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_create_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_create_Request"}}}}}},"/v2/files/{inodeId}":{"get":{"operationId":"get","summary":"Get file information","description":"Get information about a specific document or folder, such as a workbook, report, or data model.\n\n  ### Usage notes\n  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n  - Retrieve the **inodeId** for a data model by calling the [/v2/members/{memberId}/files/recents](https://help.sigmacomputing.com/reference/list-recent-inodes) endpoint and using the `id` included in the response.\n    ","tags":["Files"],"parameters":[{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_get_Response_200"}}}}}},"patch":{"operationId":"update","summary":"Update a file","description":"Update a folder or document, such as a workbook, data model, or report.\n\n  ### Usage notes\n  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n  - Specify a **parentId** to place the document within a folder. Retrieve the ID to use as a **parentId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n  - To restore a deleted folder or document, set the **restore** parameter to `true`.\n    ","tags":["Files"],"parameters":[{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_update_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"ownerId":{"type":"string"},"parentId":{"type":"string","description":"Folder ID to contain the folder or document"},"restore":{"type":"boolean"}}}}}}},"delete":{"operationId":"delete","summary":"Delete a file","description":"Delete a folder or document, such as a workbook, data model, or report.\n\n  ### Usage notes\n  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n    ","tags":["Files"],"parameters":[{"name":"inodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/files_delete_Response_200"}}}}}}},"/v2/grants":{"get":{"operationId":"listGrants","summary":"List grants","description":"List all grants for a given object.\n\n  ### Usage notes\n\n  You can specify one of the following:\n\n  - A user by userId. Retrieve the **userId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.\n  - A team by teamId. Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - A document (such as a workbook, report, data model, or dataset (deprecated)), folder, or workspace by inodeId.\n    - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n    - Retrieve the **inodeId** for a data model by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint and using the `dataModelId` included in the response.\n\n  ### Usage scenarios\n  - **Manage inherited permissions**: Identify files and folders that have permissions directly granted to them.\n  - **Review long-lived permissions**: Audit permissions granted more than a year ago and determine if they are still needed.\n    ","tags":["Grants"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"inodeId","in":"query","required":false,"schema":{"type":"string"}},{"name":"teamId","in":"query","required":false,"schema":{"type":"string"}},{"name":"userId","in":"query","required":false,"schema":{"type":"string"}},{"name":"directGrantsOnly","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/grants_listGrants_Response_200"}}}}}},"post":{"operationId":"createGrant","summary":"Create or update a grant","description":"Create a grant or update an existing grant on a document, folder, or workspace to a user or a team by ID.\n\n  ### Usage notes\n  - This endpoint can only be used to escalate the level of access that a user has to a document. To remove or reduce a user's access to a specific document, call [/v2/grants/{grantId}](https://help.sigmacomputing.com/reference/delete-grant) to delete the existing grant and re-grant the desired level of access.\n  - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Retrieve the **inodeId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and using the `id` included in the response.\n  - Retrieve the **inodeId** for a data model by calling the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint and using the `dataModelId` included in the response.\n  - Optionally specify a **tagId** to associate the permission with a specific version tag of a workbook, dataset (deprecated), or database table. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` included in the response.\n    ","tags":["Grants"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/grants_createGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee"},"permission":{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission"},"inodeId":{"type":"string"},"tagId":{"type":"string"}},"required":["grantee","permission","inodeId"]}}}}}},"/v2/grants/{grantId}":{"get":{"operationId":"getGrant","summary":"Get a grant","description":"Return a grant object by grant ID.\n\n  ### Usage notes\n\n  Depending on the grant object that you want to return details about, you can retrieve the grantId in different ways:\n\n  - For most documents, you can retrieve the **grantId** by calling the [/v2/grants](https://help.sigmacomputing.com/reference/list-grants) endpoint with the **inodeId** for the document. For example, use the **workbookId** as the **inodeId**.\n  - For a dataset (deprecated), you can also retrieve the **grantId** by calling the [/v2/datasets/{datasetId}/grants](https://help.sigmacomputing.com/reference/list-dataset-grants) endpoint.\n  - For a connection path, you can retrieve the **grantId** by calling the [/v2/connections/paths/{connectionPathId}/grants](https://help.sigmacomputing.com/reference/list-connection-path-grants) endpoint.\n    ","tags":["Grants"],"parameters":[{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/grants_getGrant_Response_200"}}}}}},"delete":{"operationId":"deleteGrant","summary":"Delete a grant","description":"Delete a grant by grant ID.\n\n  ### Usage notes\n  Depending on the grant object that you want to delete, you can retrieve the grantId in different ways:\n\n  - For most documents, you can retrieve the **grantId** by calling the [/v2/grants](https://help.sigmacomputing.com/reference/list-grants) endpoint with the **inodeId** for the document. For example, use the **workbookId** as the **inodeId**.\n  - For a dataset (deprecated), you can also retrieve the **grantId** by calling the [/v2/datasets/{datasetId}/grants](https://help.sigmacomputing.com/reference/list-dataset-grants) endpoint.\n  - For a connection path, you can retrieve the **grantId** by calling the [/v2/connections/paths/{connectionPathId}/grants](https://help.sigmacomputing.com/reference/list-connection-path-grants) endpoint.\n\n  ### Usage scenarios\n  - **Principle of least privilege**: Revoke unnecessary privileges on a document by removing the grant.\n    ","tags":["Grants"],"parameters":[{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/grants_deleteGrant_Response_200"}}}}}}},"/v2/members":{"get":{"operationId":"listMembers","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  ","tags":["Members"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}},{"name":"includeArchived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"includeInactive","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listMembers_Response_200"}}}}}},"post":{"operationId":"createMember","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    ","tags":["Members"],"parameters":[{"name":"sendInvite","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_createMember_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"email":{"type":"string","format":"email"},"firstName":{"type":"string"},"lastName":{"type":"string"},"memberType":{"type":"string","description":"Account type"},"isGuest":{"type":"boolean"},"userKind":{"$ref":"#/components/schemas/V2MembersPostRequestBodyContentApplicationJsonSchemaUserKind"},"addToTeams":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersPostRequestBodyContentApplicationJsonSchemaAddToTeamsItems"},"description":"Add user to one or more teams."}},"required":["email","firstName","lastName"]}}}}}},"/v2.1/members":{"get":{"operationId":"v2_1_listMembers","summary":"List members (Paginated)","description":"\n**Attention:** This API endpoint uses pagination by default.\n\nList 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","tags":["Members"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}},{"name":"includeArchived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"includeInactive","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_v2_1_listMembers_Response_200"}}}}}}},"/v2/members/{memberId}":{"get":{"operationId":"getMember","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  ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_getMember_Response_200"}}}}}},"patch":{"operationId":"updateMember","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    ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_updateMember_Response_200"}}}}},"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":{"$ref":"#/components/schemas/V2MembersMemberIdPatchRequestBodyContentApplicationJsonSchemaUserKind"},"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`"}}}}}}},"delete":{"operationId":"deleteMember","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  ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_deleteMember_Response_200"}}}}}}},"/v2/members/{memberId}/teams":{"get":{"operationId":"listMemberTeams","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  ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listMemberTeams_Response_200"}}}}}}},"/v2/members/{memberId}/schedules":{"get":{"operationId":"listMemberSchedules","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  ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listMemberSchedules_Response_200"}}}}}}},"/v2/members/{memberId}/revoke":{"post":{"operationId":"revokeMemberTokens","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  ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_revokeMemberTokens_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{}}}}}}},"/v2/members/{memberId}/files":{"get":{"operationId":"listAccessibleInodes","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    ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"permissionFilter","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersPermissionFilter"}},{"name":"typeFilters","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFilters"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"parentId","in":"query","required":false,"schema":{"type":"string"}},{"name":"directChildFilter","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listAccessibleInodes_Response_200"}}}}}}},"/v2/members/{memberId}/files/recents":{"get":{"operationId":"listRecentInodes","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    ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"includeExplorations","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetParametersIncludeExplorations"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listRecentInodes_Response_200"}}}}}}},"/v2/members/{memberId}/files/favorites":{"get":{"operationId":"listFavoriteInodes","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    ","tags":["Members"],"parameters":[{"name":"memberId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/members_listFavoriteInodes_Response_200"}}}}}}},"/v2/query/{queryId}/download":{"get":{"operationId":"downloadQuery","summary":"Download an exported file","description":"After making a request to the [/v2/workbooks/{workbookId}/export](https://help.sigmacomputing.com/reference/export-workbook) or [/v2/reports/{reportId}/export](https://help.sigmacomputing.com/reference/export-report) endpoint, you can use this endpoint to download the exported file using the queryId returned in the response.\n\n### Usage notes\n\n- This endpoint is rate limited to 400 requests per minute.\n- The export must be ready to download before you can download the results. The endpoint returns an error if the query is still processing or if the `queryId` is invalid or expired. Query results are typically available for a limited time, so make sure to download query results while they are available.\n- Retrieve the **queryId** by making a request to the [/v2/workbooks/{workbookId}/export](https://help.sigmacomputing.com/reference/export-workbook) or [/v2/reports/{reportId}/export](https://help.sigmacomputing.com/reference/export-report) endpoint.\n- Specify the file format when you make the export request. You cannot specify the file format when you download the file.\n\n### Usage scenarios\n- **Scheduled reporting**: Automate the downloading of reports generated on a scheduled basis.\n- **Data analysis**: Retrieve large sets of data for local analysis in external tools not integrated directly with Sigma.\n\n### Best practices\n- Monitor the status of the export query before attempting a download to make sure it is ready. For a code example, see [Export to CSV with Date Range Parameters](https://help.sigmacomputing.com/recipes/workbook-export-to-csv-with-date-range-parameters).\n- Handle errors gracefully in your application, providing users with clear messages regarding the status of their requested downloads.","tags":["Query"],"parameters":[{"name":"queryId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/query_downloadQuery_Response_200"}}}}}}},"/v2/reports":{"get":{"operationId":"listReports","summary":"List reports","description":"This endpoint retrieves a list of all available reports.\n\nAvailable reports include any reports in your My Documents folder and any reports you have access to.\n\nUsers with the Admin account type can optionally retrieve all reports in the organization.\n\n### Usage notes\nThis endpoint requires no parameters for basic requests, but supports query parameters for pagination and response limit.\n\n### Pagination\n\nThis endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows:\n\n- hasMore: A boolean value indicating whether there are more pages of data available beyond the current page.\n- total: The total number of entries available across all pages.\n- nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data.\n\n#### Example response for pagination\n```json\n{\n  \"hasMore\": true,\n  \"total\": 104,\n  \"nextPage\": \"50\"\n}\n```\n\nTo request additional pages, include the `nextPage` option in your next request as the value of the `page` option. Repeat this process until `nextPage` returns `null`, indicating that there are no more pages to return.\n\n### Usage scenarios\n- **Report navigation**: Allows users to view their collection of reports and locate ones they need.\n- **Integration points**: Useful for building integrations that need to present users with a list of their available reports, such as in custom applications using embeds.","tags":["Reports"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"excludeTags","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"skipPermissionCheck","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"isArchived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_listReports_Response_200"}}}}}},"post":{"operationId":"createReport","summary":"Create a report","description":"This endpoint lets you create an empty report in Sigma, enabling you to build presentation-ready documents for sharing insights with stakeholders.\n\n### Usage notes\n- The **name** parameter is required to provide a name for the new report.\n- Use the **folderId** to specify the folder in which to save the report. Retrieve the **folderId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n\n### Usage scenarios\n- **Reliable export formatting**: Users can quickly generate a new blank report to create predictable, paginated exports.\n\n### Best practices\n- **Naming conventions**: Establish and follow consistent naming conventions for reports to make it easier to manage and identify them within larger projects.\n- **Folder organization**: Use the **folderId** to organize reports into relevant folders, which helps in maintaining a tidy workspace, especially in environments with multiple users or teams.\n- **Access control**: Regularly review and manage access permissions for new reports, ensuring that only the appropriate personnel can view or edit sensitive data.","tags":["Reports"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_createReport_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"folderId":{"type":"string","description":"ID of the folder where the new report is created."},"name":{"type":"string","description":"Name of the new report."},"description":{"type":"string","description":"Description of the report."}},"required":["folderId","name"]}}}}}},"/v2/reports/{reportId}":{"get":{"operationId":"getReport","summary":"Get a report","description":"This endpoint retrieves a report by its unique identifier (`reportId`). It provides detailed information about the report, including its name, URL, path, and other metadata.\n\n### Usage notes\n- The **reportId** parameter must be a valid UUID that uniquely identifies the report. Invalid or nonexistent IDs return an error. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n\n### Usage scenarios\n- **Report search**: Allows users to view all of their reports and locate a specific one, as well as filter by criteria such as if it is archived.\n- **Data retrieval**: Developers can use this endpoint to programmatically retrieve details about a specific report to display its content or metadata in a custom user interface.\n- **Integration**: Use this endpoint for integrations where other systems need to fetch report details based on an ID provided through another interface or workflow.\n\n### Best practices\n- Validate the **reportId** on the client side before making a request to avoid unnecessary server load caused by invalid requests.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_getReport_Response_200"}}}}}}},"/v2/reports/{reportId}/copy":{"post":{"operationId":"copyReport","summary":"Duplicate a report","description":"This endpoint lets you duplicate an existing report. The report copy can be placed in a different folder from the original report, potentially with a different name and description.\n\n### Usage notes\n- The `reportId` parameter specifies the original report to be copied. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n- The `destinationFolderId` in the request body specifies where to place the new report.\n  - To use the \"My Documents\" folder for a specific user as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n  - Retrieve the **folderId** of all folders by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n\n### Usage scenarios\n- **Reuse report structure**: Use an existing report as a baseline to make changes to.\n- **Backup**: Make a backup of a report before making significant changes.\n\n### Best practices\n- Always verify that the destination folder has the correct permissions set to avoid access issues.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_copyReport_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"destinationFolderId":{"type":"string","description":"ID of the folder in which to place the copied report."},"name":{"type":"string","description":"Name for the copied report as it appears in Sigma."},"description":{"type":"string","description":"A description for the new report."}},"required":["destinationFolderId","name"]}}}}}},"/v2/reports/{reportId}/sources":{"get":{"operationId":"listReportSources","summary":"List report sources","description":"Get the data sources of a report given the reportId. The response can be a dataset (deprecated), table, custom SQL element, or the data model document and specific elements used as a source.\n\n### Usage notes\n- Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n\n### Best practices\n- Validate the **reportId** on the client side before making a request to avoid unnecessary server load caused by invalid requests.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems"}}}}}}}},"/v2/reports/{reportId}/send":{"post":{"operationId":"sendReport","summary":"Export a report","description":"Export a report to one or more specified destinations or recipients. Supported destinations include Slack channels, Google Drive, cloud storage, and webhooks. Supported recipients include an organization member, team, or email address.\n\nIf you want to download a report PDF instead, see the [/v2/reports/{reportId}/export](https://help.sigmacomputing.com/reference/export-report) endpoint.\n\n### Usage notes\n- Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n- Only PDF exports are supported for reports.\n- This endpoint is rate limited to 100 requests per minute.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_sendReport_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"targets":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems"}},"config":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaConfig"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems"}},"parameters":{"type":"object","additionalProperties":{"type":"string"}},"timeout":{"type":"number","format":"double"}},"required":["targets","config","attachments"]}}}}}},"/v2/reports/{reportId}/export":{"post":{"operationId":"exportReport","summary":"Export data from a report","description":"This endpoint lets you create a file containing data exported from a report. Reports are exported as entire PDF documents.\n\nSuccessful requests return a **queryId**. Use the **queryId** with the [/v2/query/{queryId}/download](https://help.sigmacomputing.com/reference/download-query) endpoint to download the file when it is ready. See [Download an exported file](https://help.sigmacomputing.com/reference/download-query).\n\nTo export a report to a specific destination or recipient, see the [/v2/reports/{reportId}/send](https://help.sigmacomputing.com/reference/send-report) endpoint.\n\n### Usage notes\n- Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n- Reports are exported as entire documents. You cannot export a specific page or element.\n- Only PDF exports are supported. Use the `layout` parameter to specify either `portrait` or `landscape` layout.\n- This endpoint is rate limited to 400 requests per minute.\n- For security and privacy reasons, the `queryId` used to download the exported file expires 1 hour after your request is received. You can extend this to 6 hours using the `resultsValidityTimeMs` parameter.\n\n### Usage scenarios\n- **Conditional report export**: Based on an external set of conditions, export a report from Sigma.\n- **Integration**: Integrate enriched and analyzed data with other applications, providing the necessary data in a format that these applications can process.\n\n### Best practices\n- Clearly specify parameters to retrieve only the necessary data, optimizing performance and reducing network load.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_exportReport_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"format":{"$ref":"#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormat"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"description":"Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n    - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n        - %Y-%m-%d\n        - %Y-%m-%dT%H:%M\n        - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n    - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n    - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n        - \"Date-Range\": \"min:2020-04-01,max:\"\n        - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\""},"timeout":{"type":"number","format":"double"},"tag":{"type":"string","description":"Specifies the version tag of the report to be exported."}},"required":["format"]}}}}}},"/v2/reports/{reportId}/schedules":{"get":{"operationId":"listReportSchedules","summary":"List scheduled report exports","description":"This endpoint retrieves a list of all scheduled exports for a specified report. These schedules represent planned events that can trigger exports based on various conditions and timings.\n\n  ### Usage Notes\n  - The **reportId** in the path parameter identifies the report whose scheduled exports are to be listed. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n  - Use pagination query parameters to manage the volume of data returned by this endpoint.\n\n  ### Usage Scenarios\n  - **Schedule overview**: Administrators or users with appropriate permissions can monitor and review all active scheduled exports associated with a report.\n  - **Audit and compliance**: This functionality is useful for auditing purposes to ensure that all scheduled operations are configured correctly and comply with organizational policies.\n\n  ### Best Practices\n  - Implement client-side handling to manage paginated data effectively, especially in cases where a report has a large number of scheduled exports.\n  - Regularly audit schedules to keep them up-to-date and aligned with current workflows.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_listReportSchedules_Response_200"}}}}}},"post":{"operationId":"createReportSchedule","summary":"Add report schedule","description":"This endpoint allows you to create a scheduled export of a report. Scheduled exports are triggered by specific conditions or timings.\n\n  ### Usage notes\n  - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n  - Retrieve relevant IDs based on the export contents and destination:\n    - To export to one or more Sigma users, retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    - To export to one or more Sigma teams, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Reports can only be exported as entire PDFs. Exporting a specific page or element is not supported.\n  - If you want to impersonate a user when scheduling a report export, use the [/v2/auth/token](https://help.sigmacomputing.com/reference/post-token) endpoint.\n\n  ### Usage scenarios\n  - **Periodic reporting**: Use this endpoint to trigger routine report exports at specific intervals (such as weekly or monthly) or when specific business conditions are met (such as specific sales targets or usage thresholds).\n\n  ### Best practices\n  - Regularly review and audit schedules to ensure unnecessary or expensive schedules are not being added.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_createReportSchedule_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems"},"description":"One or more targets to send the report to."},"schedule":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule","description":"When to send the report export."},"configV2":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2","description":"Configuration settings for the export schedule."},"description":{"type":["string","null"],"description":"Description of the scheduled export"}},"required":["target","schedule","configV2"]}}}}}},"/v2/reports/{reportId}/schedules/{scheduleId}":{"patch":{"operationId":"updateReportSchedule","summary":"Update a report schedule","description":"This endpoint allows you to update an existing scheduled report export.\n\n  ### Usage notes\n  - Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n  - Retrieve the **scheduleId** by calling the [/v2/reports/{reportId}/schedules](https://help.sigmacomputing.com/reference/list-report-schedules) endpoint.\n  - To add or update a team recipient, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n\n  ### Usage scenarios\n  - **Audit schedules**: Update schedules to ensure they are being exported at the correct times or to the correct recipients.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"scheduleId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_updateReportSchedule_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems"},"description":"One or more targets to send the report to."},"schedule":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule","description":"When to send the report export."},"configV2":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2","description":"Configuration settings for the export schedule."},"description":{"type":["string","null"],"description":"Description of the scheduled export"},"suspensionAction":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction","description":"Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule."}}}}}}},"delete":{"operationId":"deleteReportSchedule","summary":"Delete a scheduled export for a report","description":"This endpoint deletes a specific scheduled export from a report. Deleting a schedule prevents any previously configured exports or alerts from being triggered at the scheduled times.\n\n  ### Usage notes\n  - The `reportId` in the path is required to identify the report. Retrieve the **reportId** by calling the [/v2/reports](https://help.sigmacomputing.com/reference/list-reports) endpoint.\n  - The `scheduleId` in the path is required to specify which schedule to delete. Retrieve the **scheduleId** by calling the [/v2/reports/{reportId}/schedules](https://help.sigmacomputing.com/reference/list-report-schedules) endpoint and using the `scheduledNotificationId` in the response.\n\n  ### Usage scenarios\n  - **Audit operations**: Use this endpoint to remove unnecessary or outdated schedules that are no longer relevant to the report's current use case.\n\n  ### Best practices\n  - Make sure that deleting a given schedule is in compliance with your organization's data governance and operational policies.\n  - Verify the `scheduleId` and `reportId` before making a deletion request to prevent errors.","tags":["Reports"],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"}},{"name":"scheduleId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/reports_deleteReportSchedule_Response_200"}}}}}}},"/v2/saml/service-providers":{"get":{"operationId":"listSamlServiceProviders","summary":"List SAML service providers (Beta)","description":"List all SAML service providers in the organization.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.","tags":["SAML"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_listSamlServiceProviders_Response_200"}}}}}}},"/v2/saml/service-providers/{samlServiceProviderId}/certificates":{"post":{"operationId":"createSamlServiceProviderCertificate","summary":"Create a SAML service provider certificate (Beta)","description":"Create a certificate for a given SAML service provider.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"201":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_createSamlServiceProviderCertificate_Response_201"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"purpose":{"$ref":"#/components/schemas/V2SamlServiceProvidersSamlServiceProviderIdCertificatesPostRequestBodyContentApplicationJsonSchemaPurpose","description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses."},"validForDays":{"type":"number","format":"double","description":"Number of days the certificate is valid"}},"required":["purpose","validForDays"]}}}}},"get":{"operationId":"listSamlServiceProviderCertificates","summary":"List SAML service provider certificates (Beta)","description":"List all certificates for a given SAML service provider.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_listSamlServiceProviderCertificates_Response_200"}}}}}}},"/v2/saml/service-providers/{samlServiceProviderId}/certificates/{samlServiceProviderCertificateId}":{"get":{"operationId":"getSamlServiceProviderCertificate","summary":"Get a SAML service provider certificate (Beta)","description":"Get a certificate to use with your IdP when configuring Sigma as a service provider.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.\n- Retrieve the `samlServiceProviderCertificateId` by calling the [/saml/service-providers/certificates](https://help.sigmacomputing.com/reference/list-saml-service-provider-certificates) endpoint.\n- Signing certificates are used by your IdP to verify signatures that Sigma attaches to SAML requests.\n- Encryption certificates are used by your IdP to encrypt SAML responses sent to Sigma.\n    ","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"samlServiceProviderCertificateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_getSamlServiceProviderCertificate_Response_200"}}}}}},"delete":{"operationId":"removeSamlServiceProviderCertificate","summary":"Remove a SAML service provider certificate (Beta)","description":"Remove a certificate.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.\n- Retrieve the `samlServiceProviderCertificateId` by calling the [/saml/service-providers/certificates](https://help.sigmacomputing.com/reference/list-saml-service-provider-certificates) endpoint.","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"samlServiceProviderCertificateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_removeSamlServiceProviderCertificate_Response_204"}}}}}}},"/v2/saml/service-providers/{samlServiceProviderId}/certificates/{samlServiceProviderCertificateId}/activate":{"post":{"operationId":"activateSamlServiceProviderCertificate","summary":"Activate a SAML SP certificate (Beta)","description":"Activate a certificate.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Activating a certificate deactivates all certificates used for the same purpose by the same SAML service provider. For example, activating a signing certificate deactivates all other signing certificates in use by the same SAML SP.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.\n- Retrieve the `samlServiceProviderCertificateId` by calling the [/saml/service-providers/certificates](https://help.sigmacomputing.com/reference/list-saml-service-provider-certificates) endpoint.","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"samlServiceProviderCertificateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_activateSamlServiceProviderCertificate_Response_204"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{}}}}}}},"/v2/saml/service-providers/{samlServiceProviderId}/certificates/{samlServiceProviderCertificateId}/deactivate":{"post":{"operationId":"deactivateSamlServiceProviderCertificate","summary":"Deactivate a SAML SP certificate (Beta)","description":"Deactivate a certificate.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the `samlServiceProviderId` by calling the [/saml/service-providers](https://help.sigmacomputing.com/reference/list-saml-service-providers) endpoint.\n- Retrieve the `samlServiceProviderCertificateId` by calling the [/saml/service-providers/certificates](https://help.sigmacomputing.com/reference/list-saml-service-provider-certificates) endpoint.","tags":["SAML"],"parameters":[{"name":"samlServiceProviderId","in":"path","required":true,"schema":{"type":"string"}},{"name":"samlServiceProviderCertificateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/saml_deactivateSamlServiceProviderCertificate_Response_204"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{}}}}}}},"/v2/shared_templates/{shareId}":{"delete":{"operationId":"deleteExternalShare","summary":"Delete a template share","description":"Remove a template shared with your organization.\n\n  **Usage notes**\n  - Retrieve the **shareId** by calling the [/v2/shared_templates/shared_with_you](https://help.sigmacomputing.com/reference/list-templates-shared-with-you) endpoint and using the `shareId` included in the response.\n  ","tags":["sharedTemplates"],"parameters":[{"name":"shareId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sharedTemplates_deleteExternalShare_Response_200"}}}}}}},"/v2/shared_templates/accept":{"post":{"operationId":"acceptTemplateShare","summary":"Accept a pending template share","description":"If a workbook template has been shared with your organization but not yet accepted, accept the template share.\n  \n  ### Usage notes\n  - Retrieve pending template shares by calling the [/v2/shared_templates/shared_with_you](https://help.sigmacomputing.com/reference/list-templates-shared-with-you) endpoint and specifying `pending` as `true`.\n  - Retrieve the **shareId** by calling the [/v2/shared_templates/shared_with_you](https://help.sigmacomputing.com/reference/list-templates-shared-with-you) endpoint and using the `shareId` included in the response.\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Retrieve the **inodeId** for a table by calling the [/v2/connections/{connectionId}/lookup](https://help.sigmacomputing.com/reference/lookup-connection) endpoint.\n\n  - The key of the **sourceSwaps** object is the original id of the table, dataset, or connection in the organization that shared the template\n  ","tags":["sharedTemplates"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sharedTemplates_acceptTemplateShare_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"shareId":{"type":"string"},"sourceSwaps":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps"}}},"required":["shareId"]}}}}}},"/v2/shared_templates/shared_with_you":{"get":{"operationId":"listTemplatesSharedWithYou","summary":"List templates shared with your organization","description":"Lists all workbook templates shared with your organization.\n  \n  ### Usage notes\n  - Use the `pending` parameter to identify templates that have been shared but not yet accepted.\n  ","tags":["sharedTemplates"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"pending","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sharedTemplates_listTemplatesSharedWithYou_Response_200"}}}}}}},"/v2/sourceSwapPolicies":{"get":{"operationId":"listSourceSwapPolicies","summary":"List source swap policies (Beta)","description":"Get a list of source swap policies.\n\n  **Beta**: Getting a list of **Connection** source swap policies is in private beta and must be enabled for your organization. Getting a list of **Deployment** source swap policies is in public beta. This documentation is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n    ","tags":["sourceSwapPolicies"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_listSourceSwapPolicies_Response_200"}}}}}},"post":{"operationId":"createSourceSwapPolicy","summary":"Create a source swap policy (Beta)","description":"Create a source swap policy.\n\n  **Beta**: Creating a **Connection** source swap policy is in private beta and must be enabled for your organization. Creating a **Deployment** source swap policy is in public beta. This documentation is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **connectionId** to use as the **fromConnectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Retrieve the **userAttributeId** to use in the **swaps** object by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  ","tags":["sourceSwapPolicies"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_createSourceSwapPolicy_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_createSourceSwapPolicy_Request"}}}}}},"/v2/sourceSwapPolicies/{policyId}":{"get":{"operationId":"getSourceSwapPolicy","summary":"Get a source swap policy (Beta)","description":"Get a source swap policy by policy ID.\n\n  **Beta**: Getting details for a **Connection** source swap policy is in private beta and must be enabled for your organization. Getting details for a **Deployment** source swap policy is in public beta. This documentation is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **policyId** by calling the [/v2/sourceSwapPolicies](https://help.sigmacomputing.com/reference/list-source-swap-policies) endpoint.\n    ","tags":["sourceSwapPolicies"],"parameters":[{"name":"policyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_getSourceSwapPolicy_Response_200"}}}}}},"patch":{"operationId":"updateSourceSwapPolicy","summary":"Update a source swap policy (Beta)","description":"Update a source swap policy.\n\n  **Beta**: Updating a **Connection** source swap policy is in private beta and must be enabled for your organization. Updating a **Deployment** source swap policy is in public beta. This documentation is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **policyId** by calling the [/v2/sourceSwapPolicies](https://help.sigmacomputing.com/reference/list-source-swap-policies) endpoint.\n  - Retrieve the **connectionId** to use as the **fromConnectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Retrieve the **userAttributeId** to use in the **swaps** object by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n    ","tags":["sourceSwapPolicies"],"parameters":[{"name":"policyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_updateSourceSwapPolicy_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_updateSourceSwapPolicy_Request"}}}}},"delete":{"operationId":"deleteSourceSwapPolicy","summary":"Delete a source swap policy (Beta)","description":"Delete a source swap policy by policy ID.\n\n  **Beta**: Deleting a **Connection** source swap policy is in private beta and must be enabled for your organization. Deleting a **Deployment** source swap policy is in public beta. This documentation is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **policyId** by calling the [/v2/sourceSwapPolicies](https://help.sigmacomputing.com/reference/list-source-swap-policies) endpoint.\n    ","tags":["sourceSwapPolicies"],"parameters":[{"name":"policyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/sourceSwapPolicies_deleteSourceSwapPolicy_Response_200"}}}}}}},"/v2/tags":{"get":{"operationId":"listVersionTag","summary":"Get tags","description":"Get a list of version tags.","tags":["Tags"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tags_listVersionTag_Response_200"}}}}}},"post":{"operationId":"createVersionTag","summary":"Create a tag","description":"Create a version tag to use, for example, for workbooks.","tags":["Tags"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tags_createVersionTag_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the tag. Must be unique"},"color":{"$ref":"#/components/schemas/V2TagsPostRequestBodyContentApplicationJsonSchemaColor","description":"Color to associate with the tag in Sigma"},"description":{"type":"string","description":"Description for the tag"}},"required":["name","color"]}}}}}},"/v2/tags/{tagId}":{"patch":{"operationId":"updateVersionTag","summary":"Update a tag","description":"Update the description of a specific version tag. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.","tags":["Tags"],"parameters":[{"name":"tagId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tags_updateVersionTag_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"description":{"type":"string","description":"Description of the version tag."}}}}}}},"delete":{"operationId":"deleteVersionTag","summary":"Delete a tag","description":"Delete a specific version tag. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.","tags":["Tags"],"parameters":[{"name":"tagId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tags_deleteVersionTag_Response_200"}}}}}}},"/v2/tags/{tagId}/workbooks":{"get":{"operationId":"listWorkbooksForTag","summary":"List workbooks for a tag","description":"Get a list of workbooks for a specific version tag. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.","tags":["Tags"],"parameters":[{"name":"tagId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tags_listWorkbooksForTag_Response_200"}}}}}}},"/v2/teams":{"get":{"operationId":"listTeams","summary":"List teams","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 teams in Sigma.\n  ","tags":["Teams"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"description","in":"query","required":false,"schema":{"type":"string"}},{"name":"visibility","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2TeamsGetParametersVisibility"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_listTeams_Response_200"}}}}}},"post":{"operationId":"createTeam","summary":"Create a team","description":"Create a Sigma team.\n\n  ### Usage notes\n  - Specify members to add to the team by userId or memberId.\n  - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    ","tags":["Teams"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_createTeam_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"members":{"type":"array","items":{"type":"string"},"description":"Specify memberIds"},"createTeamFolder":{"type":"boolean"},"visibility":{"$ref":"#/components/schemas/V2TeamsPostRequestBodyContentApplicationJsonSchemaVisibility","description":"Whether to make a public or private team. Defaults to private."}},"required":["name"]}}}}}},"/v2.1/teams":{"get":{"operationId":"v2_1_listTeams","summary":"List teams (Paginated)","description":"\n  **Attention:** This API endpoint uses pagination by default.\n\n  List all teams in Sigma.\n  ","tags":["Teams"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"description","in":"query","required":false,"schema":{"type":"string"}},{"name":"visibility","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V21TeamsGetParametersVisibility"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_v2_1_listTeams_Response_200"}}}}}}},"/v2/teams/{teamId}":{"get":{"operationId":"getTeam","summary":"Get a team","description":"Returns details about a team based on team ID. The response includes an array of member IDs that identify the users in the team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_getTeam_Response_200"}}}}}},"patch":{"operationId":"updateTeam","summary":"Update a team","description":"Update the name, description, and visibility of a team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_updateTeam_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"visibility":{"$ref":"#/components/schemas/V2TeamsTeamIdPatchRequestBodyContentApplicationJsonSchemaVisibility"}}}}}}},"delete":{"operationId":"deleteTeam","summary":"Delete a team","description":"Delete a specific team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_deleteTeam_Response_200"}}}}}}},"/v2/teams/{teamId}/user-attributes":{"get":{"operationId":"getTeamUserAttributeAssignments","summary":"Get team user attributes","description":"Get a list of user attributes assigned to a team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_getTeamUserAttributeAssignments_Response_200"}}}}}}},"/v2/teams/{teamId}/assignedUserAttributes":{"post":{"operationId":"assignUserAttributesToTeam","summary":"Assign user attributes to a team","description":"Assign one or more user attributes to a specific team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Retrieve a list of available user attributes by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Maximum 100 assignments per request.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_assignUserAttributesToTeam_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"assignments":{"type":"array","items":{"$ref":"#/components/schemas/V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"}}},"required":["assignments"]}}}}}},"/v2/teams/{teamId}/members":{"get":{"operationId":"getTeamMembers","summary":"List team members","description":"Get a paginated list of team members in a specific team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Returns the members of the team by `userId`.\n\n  ### Usage scenarios\n  - Identify the admin of a team.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_getTeamMembers_Response_200"}}}}}},"patch":{"operationId":"updateTeamMembers","summary":"Update team members","description":"Update the members of a specific team.\n\n  ### Usage notes\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Inactive members cannot be added or removed from a team.\n  ","tags":["Teams"],"parameters":[{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/teams_updateTeamMembers_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"add":{"type":"array","items":{"type":"string"},"description":"Members to add by memberId"},"remove":{"type":"array","items":{"type":"string"},"description":"Members to remove by memberId"}}}}}}}},"/v2/templates":{"get":{"operationId":"listTemplates","summary":"List templates","description":"Returns a list of available templates.\n\n  ### Usage notes\n  - Official Sigma templates are created by SigmaSchedulerRobot.\n  ","tags":["Templates"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"source","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2TemplatesGetParametersSource"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/templates_listTemplates_Response_200"}}}}}}},"/v2/templates/{templateId}":{"get":{"operationId":"getTemplate","summary":"Get template","description":"Get a template by template ID.\n\n  ### Usage notes\n  - Retrieve the **templateId** by calling the [/v2/templates](https://help.sigmacomputing.com/reference/list-templates) endpoint.\n  ","tags":["Templates"],"parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/templates_getTemplate_Response_200"}}}}}}},"/v2/templates/{templateId}/swapSources":{"post":{"operationId":"sourceSwapTemplate","summary":"Swap template data sources","description":"Swap the data sources used by a workbook template. You can swap from one connection to another, and/or from one dataset to another.\n\n  ### Usage notes\n  - Retrieve the **templateId** by calling the [/v2/templates](https://help.sigmacomputing.com/reference/list-templates) endpoint.\n  - Retrieve the **connectionId** to use as the **toId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - To map the sources of a specific element, you can use the table or dataset ID:\n\n    - Retrieve the **fromId** for a specific data element by calling the [/v2/workbooks/{workbookId}/lineage/elements/{elementId}](https://help.sigmacomputing.com/reference/list-lineage) endpoint and using the `source` key from the response, which looks like `inode-2PBoXx3UabchxF1F3l07kE`. The ID is everything after `inode-`.\n    - Retrieve table and dataset IDs by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint. Use the `typeFilters` option to filter for table and dataset files. Use `id` field in the response as the `fromId` or `toId`, as relevant.\n    ","tags":["Templates"],"parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/templates_sourceSwapTemplate_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"sourceMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"}},"connectionMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"}},"copyInputTableData":{"type":"boolean"}}}}}}}},"/v2/templates/save_workbook":{"post":{"operationId":"saveWorkbookFromTemplate","summary":"Create workbook from template","description":"Create a workbook by saving it from a template.\n\n  ### Usage notes\n  - Retrieve the **templateId** by calling the [/v2/templates](https://help.sigmacomputing.com/reference/list-templates) endpoint.\n  - Retrieve the **folderId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`. To use the \"My Documents\" folder as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n  - If you leave the name or description options blank, the workbook created inherits the values of the template.\n  ","tags":["Templates"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/templates_saveWorkbookFromTemplate_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"templateId":{"type":"string"},"folderId":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"updateAutomatically":{"type":"boolean"}},"required":["templateId","folderId"]}}}}}},"/v2/tenants":{"get":{"operationId":"listTenants","summary":"List tenant organizations (Beta)","description":"Retrieve a paginated list of tenant organizations with optional filtering and sorting.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Use **pageToken** and **pageSize** parameters to manage paginated responses.\n- Use **search** to filter results by organization slug or ID of the user who created the tenant.\n- Use **key** and **order** to sort results by creation date, ID of the user who created the tenant, name, or URL.","tags":["Tenants"],"parameters":[{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"key","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2TenantsGetParametersKey"}},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/V2TenantsGetParametersOrder"}},{"name":"search","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_listTenants_Response_200"}}}}}},"post":{"operationId":"createTenant","summary":"Create a tenant organization (Beta)","description":"Create a new tenant organization with the specified name and organization slug to be used in the URL.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- The **tenantOrganizationName** is displayed as the organization name in the Sigma interface.\n- The **tenantOrganizationSlug** must be unique and is used in URLs to identify the tenant organization.","tags":["Tenants"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_createTenant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"tenantOrganizationName":{"type":"string","description":"Name of the tenant organization to create"},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization"},"cloudProvider":{"$ref":"#/components/schemas/V2TenantsPostRequestBodyContentApplicationJsonSchemaCloudProvider","description":"Cloud provider to create the tenant organization in. Defaults to the same cloud provider as the parent organization"}},"required":["tenantOrganizationName","tenantOrganizationSlug"]}}}}}},"/v2/tenants/{tenantOrganizationId}":{"get":{"operationId":"getTenant","summary":"Get details for a tenant organization (Beta)","description":"Retrieve details of a specific tenant organization by tenantOrganizationId.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_getTenant_Response_200"}}}}}},"patch":{"operationId":"patchTenant","summary":"Update details of a tenant organization (Beta)","description":"Update the details of an existing tenant organization. The organization name and slug can be updated through this endpoint.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n    \n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_patchTenant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"tenantOrganizationName":{"type":"string","description":"New name for the tenant organization"},"tenantOrganizationSlug":{"type":"string","description":"New URL identifier for the tenant organization"}}}}}}},"delete":{"operationId":"deleteTenant","summary":"Delete a tenant organization (Beta)","description":"Delete a tenant organization by tenantOrganizationId.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.\n- This action permanently removes the tenant organization and cannot be undone.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_deleteTenant_Response_200"}}}}}}},"/v2/tenants/{tenantOrganizationId}/workbooks":{"get":{"operationId":"getTenantWorkbook","summary":"Get deployed workbook in tenant org (Beta)","description":"Retrieve the workbook ID for a workbook deployed to a tenant organization for a given parent workbook and deployment policy.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- The parent workbook must be part of the specified deployment policy.\n- The workbook must be deployed to the specified tenant organization.\n- Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.\n- Retrieve the **deploymentPolicyId** by calling the [/v2/deploymentPolicies](https://help.sigmacomputing.com/reference/list-deployments) endpoint. \n- Retrieve the **parentWorkbookId** by calling the [/v2/deploymentPolicies/{deploymentPolicyId}/files](https://help.sigmacomputing.com/reference/list-inodes-for-deployment) endpoint and using the `workbookId` included in the response.\n- For version-tagged deployment policies, you may pass either the source workbook ID or the version-tagged workbook ID as the **parentWorkbookId**.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"parentWorkbookId","in":"query","required":false,"schema":{"type":"string"}},{"name":"deploymentPolicyId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_getTenantWorkbook_Response_200"}}}}}}},"/v2/tenants/{tenantOrganizationId}/capabilities/deployments":{"get":{"operationId":"listTenantDeploymentCapabilities","summary":"List tenant deployment capabilities (Beta)","description":"Retrieve a paginated list of tenant organizations that the specified tenant organization can deploy to.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.\n- Use **pageToken** and **pageSize** to paginate results.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageToken","in":"query","required":false,"schema":{"type":"string"}},{"name":"pageSize","in":"query","required":false,"schema":{"type":"integer"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_listTenantDeploymentCapabilities_Response_200"}}}}}}},"/v2/tenants/{tenantOrganizationId}/capabilities/deployments:batchAdd":{"post":{"operationId":"addTenantDeploymentCapabilities","summary":"Add deployment capabilities to a tenant (Beta)","description":"Grant a tenant organization the capability to deploy to other tenant organizations.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve **tenantOrganizationId** values by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_addTenantDeploymentCapabilities_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"deployToTenantOrganizationIds":{"type":"array","items":{"type":"string"},"description":"The tenant organizations that this tenant can deploy to."}},"required":["deployToTenantOrganizationIds"]}}}}}},"/v2/tenants/{tenantOrganizationId}/capabilities/deployments:batchRemove":{"post":{"operationId":"removeTenantDeploymentCapabilities","summary":"Remove deployment capabilities (Beta)","description":"Revoke a tenant organization's capability to deploy to one or more tenant organizations.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve **tenantOrganizationId** values by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint.\n- Existing deployments from this tenant organization to the specified tenant organizations will be removed.","tags":["Tenants"],"parameters":[{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/tenants_removeTenantDeploymentCapabilities_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"deployToTenantOrganizationIds":{"type":"array","items":{"type":"string"},"description":"The tenant organizations that this tenant can no longer deploy to"}},"required":["deployToTenantOrganizationIds"]}}}}}},"/v2/translations/organization":{"get":{"operationId":"listOrgLocales","summary":"List organization translation files","description":"This paginated endpoint lists all the translation files that have been defined at the organization level.\n\n### Usage notes\nThis endpoint requires no parameters for basic requests but supports query parameters for pagination and response limit.\n\n#### Pagination\n\nThis endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows:\n\n- hasMore: A boolean value indicating whether there are more pages of data available beyond the current page.\n- total: The total number of entries available across all pages.\n- nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data.\n\n#### Example response for pagination\n{\n  \"hasMore\": true,\n  \"total\": 104,\n  \"nextPage\": \"50\"\n}\n\nTo request additional pages, include the `nextPage` option in your followup request according to the endpoint's parameter requirements. This process can be repeated until `nextPage` is `null`.\n    ","tags":["Translations"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_listOrgLocales_Response_200"}}}}}},"post":{"operationId":"createOrgTranslation","summary":"Create organization translation file","description":"This endpoint creates a new organization translation file for the specified locale, containing the translation key-value pairs, if provided. You can also use this endpoint to create custom translations for a locale.\nEntering common phrases and their translations used in workbooks across your organization ensures consistent translations for all users.\n\n### Usage Notes\n- Retrieve the supported locale identifiers to use for **lng** from [Supported languages and locales](/docs/manage-workbook-localization#supported-languages-and-locales).\n","tags":["Translations"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_createOrgTranslation_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"lng":{"type":"string","description":"The locale identifier corresponding to the language of the translation."},"lng_variant":{"type":["string","null"],"description":"The name of the custom translation variant, if applicable"},"translations":{"type":"object","additionalProperties":{"type":"string"},"description":"A JSON object with phrases as keys and their translations as values"}},"required":["lng"]}}}}}},"/v2/translations/organization/{lng}":{"get":{"operationId":"getOrgTranslations","summary":"Get organization translation file","description":"This endpoint returns a JSON file containing the translations for a specified locale (**lng**) without custom translations.\n\n### Usage notes\n- Retrieve the **lng** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_getOrgTranslations_Response_200"}}}}}},"put":{"operationId":"updateOrgTranslation","summary":"Update organization translation file","description":"This endpoint updates the translation file for a specified locale (**lng**) without custom translations.\n\n### Usage notes\n- Retrieve the **lng** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_updateOrgTranslation_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"translations":{"type":"object","additionalProperties":{"type":"string"},"description":"A JSON object with phrases as keys and their translations as values"}},"required":["translations"]}}}}},"delete":{"operationId":"deleteOrgTranslation","summary":"Delete organization translation file","description":"This endpoint deletes the translation file for the specified locale (**lng**) without any custom translations.\n\n### Usage notes\n- Retrieve the **lng** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_deleteOrgTranslation_Response_200"}}}}}}},"/v2/translations/organization/{lng}/{lng_variant}":{"get":{"operationId":"getOrgTranslationsWithVariant","summary":"Get organization translation file with variant","description":"This endpoint returns a JSON file containing the translations and custom translations (**lng_variant**) for a locale (**lng**).\n\n### Usage notes\n- Retrieve the **lng** and **lng_variant** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"lng_variant","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_getOrgTranslationsWithVariant_Response_200"}}}}}},"put":{"operationId":"updateOrgTranslationWithVariant","summary":"Update organization translation file with variant","description":"This endpoint updates the translation file for the specified custom translation (**lng_variant**) for a locale (**lng**).\n\n### Usage notes\n- Retrieve the **lng** and **lng_variant** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"lng_variant","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_updateOrgTranslationWithVariant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"translations":{"type":"object","additionalProperties":{"type":"string"},"description":"A JSON object with phrases as keys and their translations as values"}},"required":["translations"]}}}}},"delete":{"operationId":"deleteOrgTranslationWithVariant","summary":"Delete organization translation file with variant","description":"This endpoint deletes the translation file for the specified custom translation (**lng_variant**) for a locale (**lng**).\n\n### Usage notes\n- Retrieve the **lng** and **lng_variant** by calling the [/v2/translations/organization](https://help.sigmacomputing.com/reference/list-org-locales) endpoint.\n  ","tags":["Translations"],"parameters":[{"name":"lng","in":"path","required":true,"schema":{"type":"string"}},{"name":"lng_variant","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/translations_deleteOrgTranslationWithVariant_Response_200"}}}}}}},"/v2/user-attributes":{"get":{"operationId":"listUserAttributes","summary":"List user attributes","description":"Get a list of available user attributes, values, and owners.","tags":["userAttributes"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_listUserAttributes_Response_200"}}}}}},"post":{"operationId":"createUserAttribute","summary":"Create a user attribute","description":"Create a new user attribute. An optional description and default value can be provided.","tags":["userAttributes"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_createUserAttribute_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the user attribute."},"description":{"type":"string","description":"Description of the user attribute."},"defaultValue":{"$ref":"#/components/schemas/V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValue","description":"Default value of the user attribute."}},"required":["name"]}}}}}},"/v2/user-attributes/{userAttributeId}":{"get":{"operationId":"getUserAttribute","summary":"Get a user attribute","description":"Get details for a specific user attribute.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_getUserAttribute_Response_200"}}}}}},"delete":{"operationId":"deleteUserAttribute","summary":"Delete a user attribute","description":"Delete a user attribute.\n\n### Usage notes\n- To perform this operation, you must use API credentials owned by a user assigned the Admin account type.\n- Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n- This action permanently removes the user attribute from the organization and cannot be undone.\n      ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_deleteUserAttribute_Response_200"}}}}}}},"/v2/user-attributes/{userAttributeId}/teams":{"get":{"operationId":"getUserAttributeTeamAssignments","summary":"Get teams for a user attribute","description":"Get a list of teams that have a specific user attribute defined, and the assigned value for the user attribute.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_getUserAttributeTeamAssignments_Response_200"}}}}}},"post":{"operationId":"setUserAttributeForTeams","summary":"Set a user attribute for teams","description":"Assign and set the value of a specific user attribute for one or more teams.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_setUserAttributeForTeams_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"assignments":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"}}},"required":["assignments"]}}}}},"patch":{"operationId":"updateUserAttributeForTeams","summary":"Update a user attribute for teams","description":"Update a user attribute for one or more teams. Currently, this endpoint only supports deleting a user attribute assignment.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_updateUserAttributeForTeams_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"delete":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"description":"The teams whose assignments are to be revoked."}},"required":["delete"]}}}}}},"/v2/user-attributes/{userAttributeId}/teams/{teamId}":{"delete":{"operationId":"deleteUserAttributeForTeam","summary":"Delete a user attribute for a team","description":"Delete a specific user attribute for a specific team.\n\n### Usage notes\n- Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n- Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n      ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"teamId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_deleteUserAttributeForTeam_Response_200"}}}}}}},"/v2/user-attributes/{userAttributeId}/users":{"get":{"operationId":"getUserAttributeUserAssignments","summary":"Get users for a user attribute","description":"Get a list of users that have a specific user attribute defined, and the assigned value for the user attribute.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_getUserAttributeUserAssignments_Response_200"}}}}}},"post":{"operationId":"setUserAttributeForUsers","summary":"Set a user attribute for users","description":"Assign and set the value of a specific user attribute for one or more users.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Specify one or more users by userId. Retrieve the **userId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_setUserAttributeForUsers_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"assignments":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"}}},"required":["assignments"]}}}}},"patch":{"operationId":"updateUserAttributeForUsers","summary":"Update a user attribute for users","description":"Update a user attribute for one or more users. Currently, this endpoint only supports deleting a user attribute assignment.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Specify one or more users by userId. Retrieve the **userId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_updateUserAttributeForUsers_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"delete":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"description":"The users whose assignments are to be revoked."}},"required":["delete"]}}}}}},"/v2/user-attributes/{userAttributeId}/users/{userId}":{"delete":{"operationId":"deleteUserAttributeForUser","summary":"Delete a user attribute for a user","description":"Delete a specific user attribute for a specific user.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Retrieve the **userId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.\n      ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"userId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_deleteUserAttributeForUser_Response_200"}}}}}}},"/v2/user-attributes/{userAttributeId}/tenants":{"get":{"operationId":"getUserAttributeTenantAssignments","summary":"Get tenants for a user attribute","description":"Get a list of tenants that have a specific user attribute defined, and the assigned value for the user attribute.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_getUserAttributeTenantAssignments_Response_200"}}}}}},"post":{"operationId":"setUserAttributeForTenants","summary":"Set a user attribute for tenants (Beta)","description":"Assign and set the value of a specific user attribute for one or more tenants.\n  \n  **Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Specify one or more tenant by tenantOrganizationId. Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint and using the `tenantOrganizationId` included in the response.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_setUserAttributeForTenants_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"assignments":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"}}},"required":["assignments"]}}}}},"patch":{"operationId":"updateUserAttributeForTenants","summary":"Update a user attribute for tenants (Beta)","description":"Update a user attribute for one or more tenants. Currently, this endpoint only supports deleting a user attribute assignment.\n\n  **Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Specify one or more tenants by tenantOrganizationId. Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint and using the `tenantOrganizationId` included in the response.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_updateUserAttributeForTenants_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"delete":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"description":"The tenants whose assignments are to be revoked."}},"required":["delete"]}}}}}},"/v2/user-attributes/{userAttributeId}/tenants/{tenantOrganizationId}":{"delete":{"operationId":"deleteUserAttributeForTenant","summary":"Delete a user attribute for a tenant (Beta)","description":"Delete a specific user attribute for a specific tenant.\n\n**Beta**: This documentation describes a public beta feature and is subject to the [Beta features](/docs/sigma-product-releases#beta-features) disclaimer.\n\n  ### Usage notes\n  - Retrieve the **userAttributeId** by calling the [/v2/user-attributes](https://help.sigmacomputing.com/reference/list-user-attributes) endpoint.\n  - Retrieve the **tenantOrganizationId** by calling the [/v2/tenants](https://help.sigmacomputing.com/reference/list-tenants) endpoint and using the `tenantOrganizationId` included in the response.\n    ","tags":["userAttributes"],"parameters":[{"name":"userAttributeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tenantOrganizationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userAttributes_deleteUserAttributeForTenant_Response_200"}}}}}}},"/v2/workbooks":{"get":{"operationId":"listWorkbooks","summary":"List workbooks","description":"This endpoint retrieves a list of all available workbooks.\n\n  Available workbooks include any workbooks in your My Documents folder and any workbooks you have access to.\n\n  Users with the Admin account type can optionally retrieve all workbooks in the organization.\n\n  ### Usage notes\n  This endpoint requires no parameters for basic requests, but supports query parameters for pagination and response limit.\n\n  #### Pagination\n\n  This endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows:\n\n  - hasMore: A boolean value indicating whether there are more pages of data available beyond the current page.\n  - total: The total number of entries available across all pages.\n  - nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data.\n\n  #### Example response for pagination\n ```json\n  {\n    \"hasMore\": true,\n    \"total\": 104,\n    \"nextPage\": \"50\"\n  }\n  ```\n\n  To request additional pages, include the `nextPage` option in your next request as the value of the `page` option. Repeat this process until `nextPage` returns `null`, indicating that there are no more pages to return.\n\n  ### Usage scenarios\n  - **Workbook navigation:** Allows users to easily navigate through their collection of workbooks and access the one they need.\n  - **Integration points:** Useful for building integrations that need to present users with a list of their available workbooks, such as in custom applications using Sigma Embeds.","tags":["Workbooks"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"excludeTags","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"skipPermissionCheck","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"isArchived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"excludeExplorations","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbooks_Response_200"}}}}}},"post":{"operationId":"createWorkbook","summary":"Create a workbook","description":"This endpoint lets you create an empty workbook in Sigma, letting you start a data analysis project or report without any pre-existing templates or data sources set up.\n\n### Usage notes\n- The `name` parameter is required to provide a name for the new workbook.\n- Use the **folderId** to specify the folder in which to save the workbook. Retrieve the **folderId** by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n\n### Usage scenarios\n- **Project initialization**: When starting a new project that requires data analysis or reporting, users can quickly generate a new blank workbook to begin structuring their data and analyses.\n- **Template preparation**: Administrators or team leads might create blank workbooks to set up standardized templates that their teams can use to maintain consistency in data handling and reporting.\n\n### Best practices\n- **Naming conventions**: Establish and follow consistent naming conventions for workbooks to make it easier to manage and identify them within larger projects.\n- **Folder organization**: Use the **folderId** to organize workbooks into relevant folders, which helps in maintaining a tidy workspace, especially in environments with multiple users or teams.\n- **Access control**: Regularly review and manage access permissions for new workbooks, ensuring that only the appropriate personnel can view or edit sensitive data.","tags":["Workbooks"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_createWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"folderId":{"type":"string","description":"ID of the folder where the new workbook is created."},"name":{"type":"string","description":"Name of the new workbook."},"description":{"type":"string","description":"Description of the workbook."},"ownerId":{"type":"string","description":"ID of the user (member) to own the workbook."}},"required":["folderId","name"]}}}}}},"/v2/workbooks/{workbookId}":{"get":{"operationId":"getWorkbook","summary":"Get a workbook","description":"This endpoint retrieves a workbook by its unique identifier (`workbookId`). It provides detailed information about the workbook, including its name, URL, path, and other metadata. You can use this endpoint to fetch specific workbook details for display or further processing within client applications.\n\n### Usage notes\n- The **workbookId** parameter must be a valid UUID that uniquely identifies the workbook. Invalid or nonexistent IDs return an error. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n### Usage scenarios\n- **Data retrieval**: Developers can use this endpoint to programmatically retrieve details about a specific workbook to display its content or metadata in a custom user interface.\n- **Integration**: This endpoint is crucial for integrations where other systems need to fetch workbook details based on an ID provided through another interface or workflow.\n\n### Best practices\n- Validate the **workbookId** on the client side before making a request to avoid unnecessary server load caused by invalid requests.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbook_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/sources":{"get":{"operationId":"getWorkbookSources","summary":"List workbook sources","description":"Get the data sources of a workbook given the workbookId. The response can be a dataset (deprecated), table, custom SQL element, or the data model document and specific elements used as a source.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems"}}}}}}}},"/v2/workbooks/{workbookId}/version-history":{"get":{"operationId":"getVersionHistory","summary":"Get version history for a workbook","description":"Get version history for a workbook given the workbookId. If the version history contains any tagged versions, the response includes information about the version tag.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getVersionHistory_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/copy":{"post":{"operationId":"copyWorkbook","summary":"Duplicate a workbook","description":"This endpoint lets you duplicate an existing workbook. The workbook copy can be placed in a different folder from the original workbook, potentially with a different name and description. This is useful for creating workbook templates or backups.\n\n### Usage notes\n- The `workbookId` in the URL specifies the original workbook to be copied. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- The `destinationFolderId` in the request body specifies where to place the new workbook.\n\n  - To use the \"My Documents\" folder for a specific user as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n  - Retrieve the **folderId** of all folders by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n\n### Usage scenarios\n- **Reuse**: Use an existing workbook as a baseline for a \"one-off\" purpose instead of a template.\n- **Template creation**: Create a copy of a workbook to serve as a template for future projects.\n- **Backup**: Make a backup of a workbook before making significant changes. [Version tagging](https://help.sigmacomputing.com/docs/version-tagging) is also a useful way to accomplish this.\n\n### Best practices\n- Always verify that the destination folder has the correct permissions set to avoid access issues.\n- When using as a template, ensure that all data connections are correctly configured to prevent data leaks or errors.\n\n### Copying bookmarks\n- Set `copyBookmarks` to `all` to copy every saved view (formerly \"bookmarks\") applied to the source workbook. This is available to admins only.\n- Set `copyBookmarks` to `accessible` to copy personal saved views and those shared with the user initiating the operation.\n- Ownership of all copied bookmarks transfers to the user initiating the copy operation.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_copyWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"destinationFolderId":{"type":"string","description":"ID of the folder in which to place the copied workbook."},"name":{"type":"string","description":"Name for the copied workbook as it appears in Sigma."},"description":{"type":"string","description":"A description for the new workbook."},"copyBookmarks":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks","description":"If set to `all` (available to admins only), every saved view (bookmark) applied to the workbook is copied. If set to `accessible`, only personal saved views and those shared with the user initiating the operation are copied. Ownership of all saved views in the duplicate workbook transfers to the user initiating the operation. If not set, saved views are not copied."}},"required":["destinationFolderId","name"]}}}}}},"/v2/workbooks/{workbookId}/tag/{versionTag}/copy":{"post":{"operationId":"copyTaggedWorkbook","summary":"Duplicate a tagged workbook","description":"This endpoint lets you duplicate a tagged workbook, creating a new workbook from the tagged version. The workbook copy can be placed in a different folder from the original workbook, potentially with a different name and description. This is useful for creating workbook templates or backups.\n### Usage notes\n- The workbookId and version tag in the URL specify the tagged version of the workbook to duplicate. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint. For the **versionTag**, you can specify either the tag name or ID. Retrieve the version tag name or ID by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint.\n- The `destinationFolderId` in the request body specifies where to place the new workbook.\n  - To use the \"My Documents\" folder for a specific user as the destination folder, call the [/v2/members/{memberId}](https://help.sigmacomputing.com/reference/get-member) endpoint and use the `homeFolderId` included in the response.\n  - Retrieve the **folderId** of all folders by calling the [/v2/files](https://help.sigmacomputing.com/reference/list-files) endpoint and reviewing the `id` field in the response for files with a `type` of `folder`.\n### Best practices\n- Always verify that the destination folder has the correct permissions set to avoid access issues.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"versionTag","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_copyTaggedWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"destinationFolderId":{"type":"string","description":"ID of the folder in which to place the copied workbook."},"name":{"type":"string","description":"Name for the copied workbook as it appears in Sigma."},"description":{"type":"string","description":"A description for the new workbook."},"copyBookmarks":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdTagVersionTagCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks","description":"If set to `all` (available to admins only), every saved view (bookmark) applied to the workbook is copied. If set to `accessible`, only personal saved views and those shared with the user initiating the operation are copied. Ownership of all saved views in the duplicate workbook transfers to the user initiating the operation. If not set, saved views are not copied."}},"required":["destinationFolderId","name"]}}}}}},"/v2/workbooks/{workbookId}/shareCrossOrg":{"post":{"operationId":"shareWorkbookCrossOrg","summary":"Share a workbook with another organization","description":"Share a workbook or a template with another organization. Optionally share the associated datasets, if datasets (deprecated) are used as the source.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **templateId** by calling the [v2/templates](https://help.sigmacomputing.com/reference/list-templates) endpoint.\n- Retrieve the organization slug from the URL. Ask the recipient organization for the segment of their Sigma URL following `app.sigmacomputing.com`. For example, `app.sigmacomputing.com/sigma-docs` has an organization slug of `sigma-docs`.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_shareWorkbookCrossOrg_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"orgSlugs":{"type":"array","items":{"type":"string"},"description":"The unique identifiers of the organizations to share the workbook with."},"shareDatasets":{"type":"boolean","description":"Whether to share the datasets (deprecated) associated with the workbook."},"copyInputTableData":{"type":"boolean","description":"Whether to copy input table data to the recipient organization."},"sendEmail":{"type":"boolean","description":"Whether to send an email to admins in the recipient org."},"emailMessage":{"type":"string","description":"The message to send to the recipients, if sendEmail is true."}},"required":["orgSlugs"]}}}}}},"/v2/workbooks/{workbookId}/swapSources":{"post":{"operationId":"sourceSwapWorkbook","summary":"Swap workbook data sources","description":"Swap the data sources used by a workbook. You can swap from one connection to another, and/or from one dataset or table to another.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve the **connectionId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - Retrieve the sources used by a workbook from the [v2/workbooks/{workbookId}/sources](https://help.sigmacomputing.com/reference/get-workbook-sources) endpoint.\n\n  - To swap all tables in a connection, set the `swapTables` option to `true`.\n\n    - Use the `paths` option to specify the connection paths to swap. The connection path is a list of strings that represents the path to the table in the cloud data warehouse. For example, `[\"database\", \"schema\", \"table\"]`.\n    - If the table schema is the same in both connections, leave the `paths` option empty to swap all tables in the connection. You can also pass a partial path to swap between databases, catalogs, or schemas.\n    - If `sourceMapping` is provided, those mappings take precedence over the connection swaps.\n    - If `swapTables` is not set to `true`, only Custom SQL elements have their connections changed.\n\n  ### Usage scenarios\n  - **Workbook development**: Use a test data source while developing a workbook, then swap the source to a production database when ready to share the workbook for production use.\n    ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_sourceSwapWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"sourceMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"}},"connectionMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"}},"copyInputTableData":{"type":"boolean"}}}}}}}},"/v2/workbooks/{workbookId}/schema":{"get":{"operationId":"getWorkbookSchema","summary":"Get workbook schema","description":"The Workbook Schema API is deprecated as of December 15, 2023. This endpoint is no longer compatible with workbook layouts. Workflows that use this endpoint must be replaced with the new endpoints listed below. The components in Workbook Schema API are available through individual endpoints to minimize the retrieval of unnecessary data.\n\n- [GET v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/listworkbookpages)\n- [GET v2/workbooks/{workbookId}/pages/{pageId}/elements](https://help.sigmacomputing.com/reference/listworkbookpageelements)\n- [GET v2/workbooks/{workbookId}/queries](https://help.sigmacomputing.com/reference/listworkbookqueries)\n- [GET v2/workbooks/{workbookId}/elements/{elementId}/query](https://help.sigmacomputing.com/reference/getelementquery)\n    ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"includeSql","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"tag","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookSchema_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/queries":{"get":{"operationId":"listWorkbookQueries","summary":"List SQL queries in a workbook","description":"This endpoint retrieves a list of all SQL queries stored within a specific workbook. It is useful for developers and analysts who need to review or audit the queries being used for data manipulation and reporting within the workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n### Usage scenarios\n- **Audit and review:** Enables administrators and data governance teams to audit and review all the queries associated with a workbook for compliance and optimization.\n- **Query optimization:** Allows users to identify and optimize potentially inefficient or slow queries to improve performance.\n\n### Best practices\n- Use pagination to manage large sets of queries efficiently, especially in workbooks with extensive data manipulation.\n- Regularly review queries as part of data governance practices to ensure they remain up to date and perform optimally.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookQueries_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/controls":{"get":{"operationId":"getWorkbookControls","summary":"List workbook controls","description":"This endpoint retrieves all controls associated with a specific workbook. Controls are interactive elements like checkboxes, or dropdowns used within the workbook for dynamic data interaction.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n### Usage scenarios\n- **Dynamic data interaction:** Allows users to interact dynamically with the data presented in the workbook through various control mechanisms.\n- **Custom reporting:** Enables the creation of customizable reports where end users can adjust parameters to filter and sort data according to their requirements.\n\n### Best practices\n- Ensure proper access controls are set to manage who can view or interact with the controls to prevent unauthorized data manipulation.\n- Use detailed and descriptive names for controls to facilitate easier identification and use by end users.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookControls_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/saveTemplate":{"post":{"operationId":"saveTemplateFromWorkbook","summary":"Save a template from a workbook","description":"Create a workbook template from an existing workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- The template owner defaults to the user associated with the API credentials. You can specify an owner in the request body with the `ownerId`. Retrieve the user ID to use as the ownerID by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint and using the `memberId` included in the response.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_saveTemplateFromWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the template to create."},"ownerId":{"type":"string"},"tag":{"type":"string"}}}}}}}},"/v2/workbooks/{workbookId}/lineage":{"get":{"operationId":"listLineageTree","summary":"List lineage for a workbook","description":"This endpoint lists the elements, data sources, and upstream lineage for those data sources in a workbook, providing a detailed view of how data is interconnected within a workbook.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n  ### Usage scenarios\n  - **Data governance:** Allows data managers to track how information is used and propagated through different workbook elements.\n  - **Debugging and optimization:** Helps with identifying and resolving issues in data processing or workbook structure.\n  - **Data source management**: Identify the dependencies of data sources in use in a specific workbook.\n\n  ### Best practices\n  - Integrate this information into documentation or data dictionaries to enhance transparency and understanding across teams.\n  - Use this endpoint to regularly audit workbook structures, ensuring that all data connections and transformations are correct and optimized.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listLineageTree_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/elements":{"get":{"operationId":"listWorkbookElements","summary":"List elements in a workbook","description":"This endpoint retrieves all elements in a workbook, which lets you understand and interact with the individual components that make up the workbook, such as charts, tables, or controls.\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- To retrieve elements from version-tagged workbooks, pass the `tagName` in the query parameters with the tag name. Retrieve the tag name by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `tags.name` included in the response for a given workbook.\n- To retrieve elements from a bookmark (saved view), pass the `bookmarkId` in the query parameters. Retrieve the bookmarkId by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) or [/v2/workbooks/{workbookId}/tags/:tagName/bookmarks](https://help.sigmacomputing.com/reference/get-tagged-workbook-bookmarks) endpoints.\n### Usage scenarios\n- **Detailed analysis:** Developers and users can retrieve specific elements for detailed data analysis or further manipulation.\n- **Interface customization:** Allows for dynamic interface construction where users can choose which elements to display or interact with.\n### Best practices\n- Use pagination to handle large numbers of elements efficiently, reducing load times and improving user experience.\n- Validate both the workbookId and pageId to ensure they correspond to valid, accessible resources before making API calls.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"tagName","in":"query","required":false,"schema":{"type":"string"}},{"name":"bookmarkId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookElements_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/columns":{"get":{"operationId":"getWorkbookColumns","summary":"List columns for all elements in a workbook","description":"This endpoint retrieves all columns in a workbook for all element in the workbook.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n  ### Usage scenarios\n  - **Data exploration:** Enable users to explore the data structure of a workbook element, facilitating deeper analysis and understanding.\n  - **Integration tasks:** Useful for developers integrating Sigma with other tools that need to know the data structure to map data accurately.\n\n  ### Best practices\n  - Use this endpoint when setting up interfaces that require specific knowledge about the data structure.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookColumns_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/bookmarks":{"get":{"operationId":"getWorkbookBookmarks","summary":"List bookmarks in a workbook","description":"Returns a list of available bookmarks in a workbook. Available bookmarks are those that you have created or that have been shared with you.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n### Usage scenarios\n- **Maintenance and governance**: Review workbook bookmarks for usage, validity, and freshness.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookBookmarks_Response_200"}}}}}},"post":{"operationId":"postWorkbookBookmarks","summary":"Add a bookmark to a workbook","description":"Add a bookmark to a workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **workbookVersion** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `latestVersion` in the response for the workbook, or from the version history **More** menu for the specific version.\n- Retrieve the **exploreKey** by identifying the ID of the workbook exploration that you want to bookmark. When exploring a workbook, the explore ID is visible in the URL: `:explore=76c76e52-8d94-448a-969c-32cc18da9ea0`. Provide the ID after the `=`.\n\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_postWorkbookBookmarks_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"workbookVersion":{"type":"number","format":"double"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."}},"required":["workbookVersion","name","isShared","exploreKey"]}}}}}},"/v2/workbooks/{workbookId}/bookmarks/{bookmarkId}":{"get":{"operationId":"getWorkbookBookmark","summary":"Get a bookmark","description":"Retrieve details of a workbook bookmark.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookBookmark_Response_200"}}}}}},"patch":{"operationId":"updateWorkbookBookmark","summary":"Update a workbook bookmark","description":"Update a workbook bookmark, for example by updating the bookmark to use a new exploration of the workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n- Retrieve the **exploreKey** by identifying the ID of the workbook exploration that you want to bookmark. When exploring a workbook, the explore ID is visible in the URL: `:explore=76c76e52-8d94-448a-969c-32cc18da9ea0`. Provide the ID after the `=`.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_updateWorkbookBookmark_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":["string","null"]},"isShared":{"type":["boolean","null"]},"isDefault":{"type":["boolean","null"]},"exploreKey":{"type":["string","null"],"description":"ID of the associated exploration."}}}}}}},"delete":{"operationId":"deleteWorkbookBookmarks","summary":"Delete a bookmark from a workbook","description":"Delete a bookmark from a workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteWorkbookBookmarks_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/tags/{tagName}/bookmarks":{"get":{"operationId":"getTaggedWorkbookBookmarks","summary":"List bookmarks in a tagged workbook","description":"Returns a list of bookmarks in a tagged workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagName","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getTaggedWorkbookBookmarks_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/tags/{tagName}/bookmarks/{bookmarkId}":{"get":{"operationId":"getTaggedWorkbookBookmark","summary":"Get a bookmark in a tagged workbook","description":"Retrieve details for a bookmark in a tagged workbook based on bookmarkId\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagName","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getTaggedWorkbookBookmark_Response_200"}}}}}},"patch":{"operationId":"updateTaggedWorkbookBookmark","summary":"Update a bookmark in a tagged workbook","description":"Update a bookmark in a version tagged workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n- Retrieve the **workbookVersion** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `latestVersion` in the response for the workbook, or from the version history **More** menu for the specific version.\n- Retrieve the **exploreKey** by identifying the ID of the workbook exploration that you want to bookmark. When exploring a workbook, the explore ID is visible in the URL: `:explore=76c76e52-8d94-448a-969c-32cc18da9ea0`. Provide the ID after the `=`.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagName","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_updateTaggedWorkbookBookmark_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":["string","null"]},"isShared":{"type":["boolean","null"]},"isDefault":{"type":["boolean","null"]},"exploreKey":{"type":["string","null"],"description":"ID of the associated exploration."}}}}}}},"delete":{"operationId":"deleteTaggedWorkbookBookmark","summary":"Delete a bookmark from a tagged workbook","description":"Delete a bookmark from a version tagged workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n- Retrieve the **bookmarkId** by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) endpoint.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagName","in":"path","required":true,"schema":{"type":"string"}},{"name":"bookmarkId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteTaggedWorkbookBookmark_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/tags/{tagName}/bookmarks/":{"post":{"operationId":"createTaggedWorkbookBookmark","summary":"Add a bookmark to a tagged workbook","description":"Add a bookmark to a version tagged workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **tagName** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n- Retrieve the **workbookVersion** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `latestVersion` in the response for the workbook, or from the version history **More** menu for the specific version.\n- Retrieve the **exploreKey** by identifying the ID of the workbook exploration that you want to bookmark. When exploring a workbook, the explore ID is visible in the URL: `:explore=76c76e52-8d94-448a-969c-32cc18da9ea0`. Provide the ID after the `=`.\n  ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagName","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_createTaggedWorkbookBookmark_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"workbookVersion":{"type":"number","format":"double"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."}},"required":["workbookVersion","name","isShared","exploreKey"]}}}}}},"/v2/workbooks/{workbookId}/lineage/elements/{elementId}":{"get":{"operationId":"listLineage","summary":"List lineage of a workbook element","description":"This endpoint retrieves the lineage and dependencies of a specific workbook element. It provides a detailed view of how data is interconnected within a workbook, which can be critical for understanding data sources and dependencies.\n\n  ### Usage notes\n  - **workbookId:** The UUID of the workbook containing the element. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - **elementId:** The UUID of the element within the workbook whose lineage is being queried. Retrieve the **elementId** by first calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint, then calling the [/v2/workbooks/{workbookId}/pages/{pageId}/elements](https://help.sigmacomputing.com/reference/list-workbook-page-elements) endpoint.\n  - The element that you request must be a data element, such as a table, pivot table, or visualization. Requesting a UI or control element returns an error.\n\n  ### Usage scenarios\n  - **Data governance:** Allows data managers to track how information is used and propagated through different workbook elements.\n  - **Debugging and optimization:** Helps in identifying and resolving issues in data processing or in the structure of workbook setups.\n  - **Data source management**: Identify the data sources in use in a specific workbook.\n\n  ### Best practices\n  - Use this endpoint to regularly audit workbook structures, ensuring that all data connections and transformations are correct and optimized.\n  - Integrate this information into documentation or data dictionaries to enhance transparency and understanding across teams.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"elementId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listLineage_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/elements/{elementId}/query":{"get":{"operationId":"getElementQuery","summary":"Get the SQL query for a workbook element","description":"This endpoint retrieves the SQL query associated with a specific element in a workbook. It allows users to view and understand how the data for that element is being processed and transformed, which is critical for debugging, optimization, and educational purposes.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **elementId** for a custom SQL element by calling the [/v2/workbooks/{workbookId}/queries](https://help.sigmacomputing.com/reference/list-workbook-queries) endpoint.\n\n### Usage scenarios\n- **Development and debugging:** Provides developers and analysts with the ability to retrieve and review the SQL code behind workbook elements, facilitating troubleshooting and enhancements.\n- **Educational insight:** Useful for training purposes or for users learning to understand the impact of various transformations and filters applied within their Sigma workbooks.\n\n### Best practices\n- Ensure proper access controls are in place to manage who can view potentially sensitive query information.\n- Use this endpoint as part of a regular review process to ensure that all queries are optimized and up to date with current data schemas.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"elementId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getElementQuery_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/elements/{elementId}/columns":{"get":{"operationId":"getElementColumns","summary":"List columns for a workbook element","description":"This endpoint retrieves a list of columns associated with a specific element within a workbook. It provides metadata about each column, such as name and formula, which can be essential for understanding the data structure and for further data manipulation or analysis.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve the **elementId** by first calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint, then calling the [/v2/workbooks/{workbookId}/pages/{pageId}/elements](https://help.sigmacomputing.com/reference/list-workbook-page-elements) endpoint.\n\n  ### Usage scenarios\n  - **Data exploration:** Helps users to explore the data structure of a workbook element, facilitating deeper analysis and understanding.\n  - **Integration tasks:** Useful for developers integrating Sigma with other tools, needing to know the data structure to map data accurately.\n\n  ### Best practices\n  - Validate the elementId to make sure it corresponds to the correct workbook element before querying.\n  - Leverage this endpoint when setting up interfaces that require specific knowledge about the data structure.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"elementId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getElementColumns_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/embeds":{"get":{"operationId":"listWorkbookEmbeds","summary":"Get embeds for a workbook","description":"This endpoint retrieves the list of available embeds for a specific workbook. The response provides the embedUrl and indicates whether an embed is public.\n\n### Usage notes\n- The endpoint requires the `workbookId` as a path parameter to identify the workbook. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n### Usage scenarios\n- **Integration with third-party applications:** Developers can use this endpoint to list embeds that integrate workbook content into third-party applications, enhancing functionality or providing customized views.\n- **Internal dashboards:** Teams within an organization can embed workbook content into internal dashboards to monitor real-time data and analytics from various workbooks without directly accessing Sigma.\n\n### Best practices\n- Ensure that the embeds are used in compliance with data governance and privacy policies.\n- Regularly review and manage the access permissions for each embed to prevent unauthorized data exposure.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookEmbeds_Response_200"}}}}}},"post":{"operationId":"createWorkbookEmbed","summary":"Create an embed for a workbook","description":"This endpoint lets you create an embed for a specific workbook. You can embed an entire workbook, a specific page, or an individual element within a workbook. Embedding enables seamless integration of Sigma content into other applications, websites, or internal platforms, providing a flexible and dynamic way to present and interact with data.\n\n### Embedding options\n\n- Publicly embed Sigma in a public website by creating an embed of type `public`.\n- Securely embed Sigma in an authenticated host application.\n\n  - (Recommended) Use JSON Web Tokens (JWT) to sign the workbook URL outputted by the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint instead of the output of this endpoint. See [Create a secure embed](/docs/create-a-secure-embed).\n  - (Deprecated) Use this endpoint to create an embed of type `secure`. This option is deprecated. See [Migrate to JWT-signed secure embed URLs](/docs/migrate-to-jwt-signed-secure-embed-urls).\n\n### Usage notes\n- The endpoint requires the workbookId as a path parameter. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- The body of the request must specify the type of embed (public).\n- You must specify the source type (workbook, page, element) and ID for that source to create the embed.\n\n  - Retrieve the **pageId** by calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint.\n  - Retrieve the **elementId** by first calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint, then calling the [/v2/workbooks/{workbookId}/pages/{pageId}/elements](https://help.sigmacomputing.com/reference/list-workbook-page-elements) endpoint.\n\n### Usage scenarios\n- **Web application integration:** Developers can use this API to generate the embed URL for integration into their application or for display on a public-facing webpage.\n\n### Best practices\n- Validate the `workbookId` and `sourceId` to ensure they refer to existing resources before attempting to create an embed.\n- Consider the security settings of the embed type to match the integration context, ensuring that data exposure is controlled and appropriate for the audience.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_createWorkbookEmbed_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"embedType":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaEmbedType","description":"Defines the visibility and access control of the embed. Choose `public` for open access or `secure` for restricted access. The `secure` and `application` options are both deprecated."},"sourceType":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaSourceType","description":"Specifies the scope of the embed: \"workbook\" for the entire workbook, \"page\" for a single page, or \"element\" for a specific element within the workbook."},"sourceId":{"type":"string","description":"The specific identifier for the page or element to be embedded if the sourceType is \"page\" or \"element\"."}},"required":["embedType","sourceType"]}}}}}},"/v2/workbooks/{workbookId}/embeds/{embedId}":{"delete":{"operationId":"deleteWorkbookEmbeds","summary":"Delete an embed from a workbook","description":"This endpoint lets you delete an embed associated with a specific workbook. It is useful for cleaning up unnecessary or outdated embeds to maintain a streamlined environment.\n\n  ### Usage Notes\n  - Requires `workbookId` and `embedId` as path parameters to specify which embed to delete.\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve the **embedId** by calling the [/v2/workbooks/{workbookId}/embeds](https://help.sigmacomputing.com/reference/list-workbook-embeds) endpoint.\n\n  ### Usage Scenarios\n  - **Maintenance**: Regularly remove unused or expired embeds to keep your Sigma environment clean and efficient.\n\n  ### Best Practices\n  - Confirm the usage and necessity of an embed before deletion to avoid disrupting dependent services or applications.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"embedId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteWorkbookEmbeds_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/export":{"post":{"operationId":"exportWorkbook","summary":"Export data from a workbook","description":"This endpoint lets you create a file containing data exported from a workbook, allowing you to retrieve large sets of data in a structured format. Export the entire workbook, a single workbook page, or an individual element. You can specify parameters to filter the data and format options for the file.\n\nDifferent file formats, including CSV, PDF, JSON, and others,  are supported for different export choices. See [Send or schedule workbook exports](/docs/send-or-schedule-workbook-exports) for details on supported formats for different types of exports.\n\nSuccessful requests to the endpoint return a queryId. Use the **queryId** with the [/v2/query/{queryId}/download](https://help.sigmacomputing.com/reference/download-query) endpoint to download the requested file when it is ready. See [Download an exported file](https://help.sigmacomputing.com/reference/download-query).\n\n## Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- This endpoint is rate limited to 400 requests per minute.\n- This endpoint exports up to 1 million rows for CSV/XLSX/JSON file formats. You can export more rows if you batch your requests in chunks of up to 1 million rows. Use the `rowLimit` parameter to specify the size of the chunk and the `offset` parameter to specify the row to start the next chunk from. For example, if you specify a rowLimit of 2500, to export the next chunk of 2500 rows, specify an offset of 2501. The order of the data matches the order in the data element when the request is made, so there is a possibility of data overlap between requests.\n- For security and privacy reasons, the `queryId` used to download the exported data expires 1 hour after your request is received and the file becomes available to download. You can extend this default expiration to 6 hours using the `resultsValidityTimeMs` request parameter.\n- When exporting a PNG file, the `pixelWidth` and `pixelHeight` parameters are respected on a best effort basis and the output might not match the requested dimensions.\n\n## Usage scenarios\n- Conditional workbook export: Based on an external set of conditions, export a workbook from Sigma.\n- Data analysis: Export specific sets of data for offline analysis, leveraging tools that might not connect directly to a data warehouse.\n- Integration: Integrate enriched and analyzed data with other applications, providing the necessary data in a format that these applications can process.\n\n## Best practices\n- Clearly specify parameters to retrieve only the necessary data, optimizing performance and reducing network load.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_exportWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"elementId":{"type":"string"},"format":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat"},"pageId":{"type":"string","description":"Identifier of the workbook page."},"parameters":{"type":"object","additionalProperties":{"type":"string"},"description":"Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n    - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n        - %Y-%m-%d\n        - %Y-%m-%dT%H:%M\n        - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n    - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n    - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n        - \"Date-Range\": \"min:2020-04-01,max:\"\n        - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\""},"timeout":{"type":"number","format":"double"},"tag":{"type":"string","description":"Specifies the version tag of the workbook to be exported."},"exportAs":{"type":"string","description":"Specifies the user ID of the Sigma user to run the export queries as, such as to enforce row-level security. Not supported for users who access Sigma with OAuth."},"rowLimit":{"type":"number","format":"double","description":"Total number of rows to limit a CSV/XLSX/JSON-formatted export to. "},"offset":{"type":"number","format":"double","description":"The offset number of rows for a CSV/XLSX/JSON-formatted export to start from. "}}}}}}}},"/v2/workbooks/{workbookId}/send":{"post":{"operationId":"sendWorkbook","summary":"Export a workbook","description":"Export a workbook to one or more destinations, such as an email address, a Slack channel, or cloud storage.\n\n  ### Usage notes\n\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - This endpoint is rate limited to 100 requests per minute.\n      ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_sendWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"parameters":{"type":"object","additionalProperties":{"type":"string"}},"timeout":{"type":"number","format":"double"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems"}},"sendAsUser":{"type":"string"},"targets":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems"}},"config":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConfig"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems"}}},"required":["targets","config","attachments"]}}}}}},"/v2/workbooks/{workbookId}/schedules":{"get":{"operationId":"listWorkbookSchedules","summary":"List scheduled workbook exports","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  This endpoint retrieves a list of all scheduled exports for a specified workbook. These schedules represent planned events that can trigger exports based on various conditions and timings.\n  ### Usage Notes\n  - The **workbookId** in the path parameter identifies the workbook whose scheduled exports are to be listed. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Use pagination query parameters to manage the volume of data returned by this endpoint.\n\n  ### Usage Scenarios\n  - **Schedule Overview:** Administrators or users with appropriate permissions can monitor and review all active scheduled exports associated with a workbook.\n  - **Audit and Compliance:** This functionality is useful for auditing purposes to ensure that all scheduled operations are configured correctly and comply with organizational policies.\n\n  ### Best Practices\n  - Implement client-side handling to manage paginated data effectively, especially in cases where a workbook has a large number of scheduled exports.\n  - Regularly audit schedules to keep them up-to-date and aligned with the current needs and workflows.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookSchedules_Response_200"}}}}}},"post":{"operationId":"postWorkbookSchedule","summary":"Add workbook schedule","description":"Add a schedule to a workbook to export data from the workbook on a periodic basis.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve relevant IDs based on the export contents and destination:\n\n    - To export to one or more Sigma users, retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n    - To export to one or more Sigma teams, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n  - Retrieve the **pageId** by calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint.\n  - Retrieve the **elementId** by first calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint, then calling the [/v2/workbooks/{workbookId}/pages/{pageId}/elements](https://help.sigmacomputing.com/reference/list-workbook-page-elements) endpoint.\n    ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_postWorkbookSchedule_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems"},"description":"One or more targets to send the workbook to."},"schedule":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule","description":"When to send the workbook export."},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2","description":"Configuration settings for the export schedule."},"config":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfig","description":"**[Deprecated]** Configuration settings for the export."},"description":{"type":["string","null"],"description":"Description of the scheduled export"},"ownerId":{"type":"string","description":"ID of the user (member) to own the export."}},"required":["target","schedule"]}}}}}},"/v2.1/workbooks/{workbookId}/schedules":{"get":{"operationId":"v2_1_listWorkbookSchedules","summary":"List scheduled workbook exports (Paginated)","description":"\n  **Attention:** This API endpoint uses pagination by default.\n\n  This endpoint retrieves a list of all scheduled exports for a specified workbook. These schedules represent planned events that can trigger exports based on various conditions and timings.\n  ### Usage Notes\n  - The **workbookId** in the path parameter identifies the workbook whose scheduled exports are to be listed. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Use pagination query parameters to manage the volume of data returned by this endpoint.\n\n  ### Usage Scenarios\n  - **Schedule Overview:** Administrators or users with appropriate permissions can monitor and review all active scheduled exports associated with a workbook.\n  - **Audit and Compliance:** This functionality is useful for auditing purposes to ensure that all scheduled operations are configured correctly and comply with organizational policies.\n\n  ### Best Practices\n  - Implement client-side handling to manage paginated data effectively, especially in cases where a workbook has a large number of scheduled exports.\n  - Regularly audit schedules to keep them up-to-date and aligned with the current needs and workflows.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_v2_1_listWorkbookSchedules_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/schedules/{scheduleId}":{"patch":{"operationId":"updateWorkbookSchedule","summary":"Update a workbook schedule","description":"Update a schedule of a workbook to export data from the workbook on a periodic basis.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve the **scheduleId** by calling the [/v2/workbooks/{workbookId}/schedules](https://help.sigmacomputing.com/reference/list-workbook-schedules) endpoint.\n  - To add or update a team recipient, retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n   ","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"scheduleId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_updateWorkbookSchedule_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems"},"description":"One or more targets to send the workbook to."},"schedule":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule","description":"When to send the workbook export."},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2","description":"Configuration settings for the export schedule."},"description":{"type":["string","null"],"description":"Description of the scheduled export"},"suspensionAction":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction","description":"Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule."}}}}}}},"delete":{"operationId":"deleteWorkbookSchedule","summary":"Delete a scheduled export for a workbook","description":"This endpoint deletes a specific scheduled export from a workbook. Deleting a schedule prevents any previously configured exports or alerts from being triggered at the scheduled times.\n\n  ### Usage notes\n  - The `workbookId` in the path is required to identify the workbook. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - The `scheduleId` in the path is required to specify which schedule to delete. Retrieve the **scheduleId** by calling the [/v2/workbooks/{workbookId}/schedules](https://help.sigmacomputing.com/reference/list-workbook-schedules) endpoint and using the `scheduledNotificationId` in the response.\n\n  ### Usage scenarios\n  - **Cleanup operations:** Use this endpoint to remove unnecessary or outdated schedules that are no longer relevant to the workbook's current use case.\n  - **Configuration updates:** When a workbook's usage patterns change, corresponding schedules might need to be deleted to align with the new setup.\n\n  ### Best practices\n  - Make sure that deleting a given schedule is in compliance with your organization's data governance and operational policies.\n  - Verify the `scheduleId` and `workbookId` before making a deletion request to prevent errors.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"scheduleId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteWorkbookSchedule_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/grants":{"post":{"operationId":"createWorkbookGrant","summary":"Grant permissions on a workbook to users or teams","description":"You can use this endpoint to grant specific document permissions on a specific workbook to users or teams.\n\n   ### Usage notes\n\n   - Ensure the **workbookId** in the path is valid and that the user has rights to modify its permissions. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n   - Do not set both **memberId** and **teamId** in the same **grantee** object. Instead, choose one based on the target of the grant.\n\n     - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n     - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n   - Grant permissions on a specific version tag of a workbook by specifying the **tagId**. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.\n\n   ### Usage scenarios\n\n   - **Team collaboration**: Granting edit permissions to a team for collaborative work on a project.\n   - **External consultant**: Providing view access to an external consultant.\n\n   ### Best practices\n\n   - Validate user and team IDs before submitting them in a request to avoid errors.\n   - Use the **tagId** to help manage and revoke grants systematically as project requirements change.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_createWorkbookGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grants":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"}}},"required":["grants"]}}}}}},"/v2/workbooks/{workbookId}/grants/{grantId}":{"delete":{"operationId":"deleteWorkbookGrant","summary":"Delete a workbook grant","description":"This endpoint deletes a specific grant from a workbook. Deleting a grant revokes the permissions associated with it, ensuring that the specified users or teams no longer have the access rights previously granted.\n\n  ### Usage notes\n  - **workbookId:** The identifier of the workbook from which the grant is to be deleted. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - **grantId:** The identifier of the grant that needs to be removed. Retrieve the **grantId** by calling the [/v2/grants](https://help.sigmacomputing.com/reference/list-grants) endpoint with the `workbookId` as the `inodeId`.\n\n  ### Usage scenarios\n  - **Access revocation:** Administrators can use this endpoint to manage and revoke access as team roles or project needs evolve.\n  - **Security compliance:** Ensures that access to sensitive data within workbooks is tightly controlled and can be promptly adjusted in response to security policy changes or personnel updates.\n\n  ### Best practices\n  - Always confirm the identities associated with both the workbook and grant before proceeding with deletion to avoid accidental revocations.\n  - Log and audit all grant deletions to maintain records for security audits and compliance tracking.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteWorkbookGrant_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/materializations/{materializationId}":{"get":{"operationId":"getWorkbookMaterialization","summary":"Get a materialization job","description":"This endpoint retrieves details of a specific materialization job associated with a workbook by materializationId. It provides comprehensive information including status, start and completion times, which helps for monitoring and troubleshooting materialization.\n\n### Usage notes\n- Retrieve the **materializationId** by calling the [/v2/workbooks/{workbookId}/materializations](https://help.sigmacomputing.com/reference/materialize-workbook-element) endpoint.\n\n### Usage scenarios\n- **Job Monitoring:** Enables administrators to track the progress and status of materialization jobs, aiding in operational oversight.\n- **Troubleshooting:** Provides detailed information needed to diagnose and resolve issues in materialization processes.\n\n### Best practices\n- Monitor materialization jobs regularly to detect and resolve issues promptly.\n- Use the detailed information provided by this endpoint to optimize materialization settings and performance.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"materializationId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookMaterialization_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/materialization-schedules":{"get":{"operationId":"listMaterializationSchedules","summary":"List materialization schedules for a workbook","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   This endpoint retrieves a list of all materialization schedules associated with a workbook. Each schedule details when and how often specific workbook elements are automatically materialized to optimize performance and data freshness.\n   ### Usage notes\n   - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n   - To retrieve additional pages of results, use the response of the `nextPage` parameter as the `page` query parameter in the following request.\n\n   ### Usage scenarios\n   - **Monitoring and management:** Administrators can monitor and manage the schedules for materialization to ensure optimal system performance.\n   - **Audit and review:** Periodic reviews of materialization schedules can help in assessing the efficiency of data processes and making necessary adjustments.\n\n   ### Best practices\n   - Regularly review materialization schedules to align them with current data usage patterns and business needs.\n   - Use pagination to manage large sets of data and improve response times of API calls.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listMaterializationSchedules_Response_200"}}}}}}},"/v2.1/workbooks/{workbookId}/materialization-schedules":{"get":{"operationId":"v2_1_listMaterializationSchedules","summary":"List materialization schedules (Paginated)","description":"\n  **Attention:** This API endpoint uses pagination by default.\n\n  This endpoint retrieves a list of all materialization schedules associated with a workbook. Each schedule details when and how often specific workbook elements are automatically materialized to optimize performance and data freshness.\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - To retrieve additional pages of results, use the response of the `nextPage` parameter as the `page` query parameter in the following request.\n\n  ### Usage scenarios\n  - **Monitoring and management:** Administrators can monitor and manage the schedules for materialization to ensure optimal system performance.\n  - **Audit and review:** Periodic reviews of materialization schedules can help in assessing the efficiency of data processes and making necessary adjustments.\n\n  ### Best practices\n  - Regularly review materialization schedules to align them with current data usage patterns and business needs.\n  - Use pagination to manage large sets of data and improve response times of API calls.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_v2_1_listMaterializationSchedules_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/materializations":{"post":{"operationId":"materializeWorkbookElement","summary":"Run materialization for a workbook element","description":"This endpoint runs a scheduled materialization for an element in a workbook. Materialization processes the data of the specified element, allowing the data to be stored or cached for optimized access and performance.\n\n  For more details on materialization, see [Materialization](https://help.sigmacomputing.com/docs/materialization).\n\n  ### Usage notes\n  - The materialization schedule for the specified element must be created beforehand.\n  - Retrieve the **sheetId** by calling the [/v2/workbooks/{workbookId}/materialization-schedules](https://help.sigmacomputing.com/reference/list-materialization-schedules) endpoint.\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n\n  ### Usage scenarios\n  - **Performance optimization:** Use this endpoint to improve response times for frequently accessed workbook elements.\n  - **Data refresh:** Allows users to manually (programmatically) refresh the data of specific workbook elements to ensure that the latest data is available for analysis and reporting.\n\n  ### Best practices\n  - Prioritize materialization for elements that are heavily used or form critical components of business reports.\n  - Monitor the performance impacts of materialization and adjust strategies as necessary to optimize resource usage and response times.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_materializeWorkbookElement_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier for the materialization schedule of this element."}},"required":["sheetId"]}}}}}},"/v2/workbooks/{workbookId}/pages":{"get":{"operationId":"listWorkbookPages","summary":"List workbook pages for a workbook","description":"This endpoint retrieves a list of all pages contained within a specified workbook. It is useful for applications needing to display an overview or navigate through different pages of a workbook.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- To retrieve pages from version-tagged workbooks, pass the `tag` in the query parameters with the tag name. Retrieve the tag name by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `tags.name` included in the response for a given workbook.\n- To retrieve pages from a bookmark (saved view), pass the `bookmarkId` in the query parameters. Retrieve the bookmarkId by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) or [/v2/workbooks/{workbookId}/tags/:tagName/bookmarks](https://help.sigmacomputing.com/reference/get-tagged-workbook-bookmarks) endpoints.\n\n### Usage scenarios\n- **Navigation:** Helps users and applications navigate through different pages of a workbook efficiently.\n- **Content Discovery:** Allows users to quickly view and access the variety of pages contained within a workbook.\n\n### Best practices\n- Always name pages to make it easy for users to navigate.\n- Utilize pagination to manage and streamline the retrieval of large numbers of pages.\n- Ensure that users or systems querying this endpoint have appropriate permissions to access the workbook's content.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"tag","in":"query","required":false,"schema":{"type":"string"}},{"name":"bookmarkId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookPages_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/pages/{pageId}/elements":{"get":{"operationId":"listWorkbookPageElements","summary":"List elements in a workbook page","description":"This endpoint retrieves all elements from a specific page within a workbook, which lets you understand and interact with the individual components that make up the page, such as charts, tables, or controls.\n\n### Usage notes\n- Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n- Retrieve the **pageId** by calling the [/v2/workbooks/{workbookId}/pages](https://help.sigmacomputing.com/reference/list-workbook-pages) endpoint.\n- To retrieve pages from version-tagged workbooks, pass the `tag` in the query parameters with the tag name. Retrieve the tag name by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint and using the `tags.name` included in the response for a given workbook.\n- To retrieve pages from a bookmark (saved view), pass the `bookmarkId` in the query parameters. Retrieve the bookmarkId by calling the [/v2/workbooks/{workbookId}/bookmarks](https://help.sigmacomputing.com/reference/get-workbook-bookmarks) or [/v2/workbooks/{workbookId}/tags/:tagName/bookmarks](https://help.sigmacomputing.com/reference/get-tagged-workbook-bookmarks) endpoints.\n\n### Usage scenarios\n- **Detailed analysis:** Developers and users can retrieve specific elements for detailed data analysis or further manipulation.\n- **Interface customization:** Allows for dynamic interface construction where users can choose which elements to display or interact with.\n\n### Best practices\n- Use pagination to handle large numbers of elements efficiently, reducing load times and improving user experience.\n- Validate both the workbookId and pageId to ensure they correspond to valid, accessible resources before making API calls.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"pageId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"tag","in":"query","required":false,"schema":{"type":"string"}},{"name":"bookmarkId","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_listWorkbookPageElements_Response_200"}}}}}}},"/v2/workbooks/{workbookId}/tags":{"get":{"operationId":"getWorkbookTags","summary":"Get tags for a workbook","description":"Retrieve the version tag information for a workbook. Returns the same tag metadata as the [GET /v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint returns for a tagged workbook.\n  ### Usage notes\n  - Use this endpoint to provide on-demand access to version tag information for a workbook. For example, call the [GET /v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint with the \"excludeTags\" parameter set to `True` to improve performance, then use this endpoint to return tag information for specific workbooks.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_getWorkbookTags_Response_200"}}}}}}},"/v2/workbooks/tag":{"post":{"operationId":"tagWorkbook","summary":"Tag a workbook","description":"Add a version tag to a workbook and optionally set up a connection to swap to for a specific version of the workbook.\n\n  ### Usage notes\n  - Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - Retrieve the **tag** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `name` in the response.\n  - Retrieve the **connectionId** to use as the **fromId** or **toId** by calling the [/v2/connections](https://help.sigmacomputing.com/reference/list-connections) endpoint.\n  - If your workbook includes a source that is not mapped to a new source, that source is not swapped.\n  - When swapping data models used as the source for the workbook:\n    - You can only swap a data model source to another version of the same data model source. You cannot swap a data model source to a table in your data warehouse or a dataset.\n    - When you swap sources from one data model version to a new one, specify the version tag of the data model that you swap to with `toVersionTagId`:\n      - To swap to the latest published version of the data model, specify `toVersionTagId` as `null`.\n      - To swap to a specific tagged version of the data model, specify the `toVersionTagId` of the data model.\n    - If the workbook already uses a specific tagged version of a data model as a source, use `fromVersionTagId` to indicate which tagged version to swap from.\n      - To swap from the latest published version of the data model, specify `fromVersionTagId` as `null`.\n      - To swap from a specific tagged version of the data model, specify the `fromVersionTagId` of the data model.\n  - To retrieve the `fromVersionTagId` for a data model used as the workbook source, call the [/v2/workbooks/{workbookId}/sources](https://help.sigmacomputing.com/reference/get-workbook-sources) endpoint and use the `versionTagId` in the response.\n  - To retrieve the `versionTagId` for a data model, call the [/v2/dataModels](https://help.sigmacomputing.com/reference/list-data-models) endpoint and use the `versionTagId` in the response.\n\n  ### Usage scenarios\n  - **Lifecycle management**: Identify production and development resources.\n    ","tags":["Workbooks"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_tagWorkbook_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"tag":{"type":"string","description":"Name of the version tag to apply."},"workbookVersion":{"type":"number","format":"double","description":"Specific version of the published workbook to tag."},"sourceMappingConfig":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems"},"description":"Swap sources for the workbook when you add a tag."},"dataModelSourceTaggedVersions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems"},"description":"Which tagged version of the data model to use as the source."},"sourceVersions":{"type":"object","additionalProperties":{"type":"number","format":"double"},"description":"Which version of source datasets to use."},"grantSourceAccess":{"type":"boolean","description":"Whether to grant users access to copied datasets if they create a copy via Save As."},"isDefault":{"type":"boolean","description":"Whether to make this tag the default tagged version to load if the user doesn't have access to the published version."}},"required":["workbookId","tag"]}}}}}},"/v2/workbooks/{workbookId}/tags/{tagId}":{"delete":{"operationId":"deleteTaggedworkbook","summary":"Remove a tag from a workbook","description":"This endpoint removes a specific version tag from a workbook. Version tags are used to mark workbooks for certain stages or characteristics. Removing a version tag can help manage and update the organizational scheme of workbooks as projects evolve or conclude.\n\n  ### Usage notes\n  - **workbookId:** The unique identifier for the workbook to remove the tag from. Retrieve the **workbookId** by calling the [/v2/workbooks](https://help.sigmacomputing.com/reference/list-workbooks) endpoint.\n  - **tagId:** The unique identifier for the tag to remove. Retrieve the **tagId** by calling the [/v2/tags](https://help.sigmacomputing.com/reference/list-version-tag) endpoint and using the `versionTagId` in the response.\n\n  ### Usage scenarios\n  - **Organizational updates:** Useful for administrators who need to update tagging schemes as project requirements change.\n  - **Data management:** Helps in maintaining the relevance and organization of workbook metadata for easier access and identification.\n\n  ### Best practices\n  - Verify that the correct tag is being removed by reviewing its associated workbooks and the implications of its removal.","tags":["Workbooks"],"parameters":[{"name":"workbookId","in":"path","required":true,"schema":{"type":"string"}},{"name":"tagId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workbooks_deleteTaggedworkbook_Response_200"}}}}}}},"/v2/workspaces":{"get":{"operationId":"listWorkspaces","summary":"List workspaces","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  This endpoint returns a list of all workspaces. You can use pagination and optionally filter by name to manage large sets of data. See [Manage Workspaces](/docs/manage-workspaces) for more details about workspaces in Sigma.\n  ### Usage notes\n  - **Filtering by name**: Optionally, use the `name` parameter to filter workspaces by a case-insensitive substring match.\n  - **Filtering by exact name**: Optionally, use the `exactName` parameter to filter workspaces by an exact name match (also case-insensitive). When provided, `exactName` takes precedence over `name` and uses an indexed equality lookup, which is significantly faster than substring search.\n\n  ### Usage scenarios\n  - **Pagination**: Use the `page` and `limit` parameters to control the size and segment of the workspace list returned.\n  - **User interface display**: Populate a user interface with a list of all available workspaces, using pagination to efficiently load data and filtering to quickly find specific workspaces.\n  - **Administrative overview**: Provide system administrators with an overview of all workspaces for management and monitoring purposes, with the ability to browse through pages and search by name.\n\n  ### Best practices\n  - Use caching to reduce load times and server demand when frequently accessing workspace lists.\n  - Regularly update and synchronize workspace lists to ensure that displayed information is current and accurate.","tags":["Workspaces"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"exactName","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_listWorkspaces_Response_200"}}}}}},"post":{"operationId":"createWorkspace","summary":"Create a workspace","description":"This endpoint allows clients to create a workspace with specific characteristics.\n\n### Usage notes\n- Set **NoDuplicates** to **true** to prevent the creation of a workspace with a name that already exists.\n\n### Usage scenarios\n- **Initial setup**: Useful for users setting up a new workspace after signing up.\n- **Project separation**: Helps in creating separate workspaces for different projects or teams.\n\n### Best practices\n- **Check for existing names**: Before setting `noDuplicates` to true, make sure to search for existing workspace names to avoid conflicts.\n- **Consistent naming conventions**: Adopt a consistent naming convention for workspaces to ensure clarity and avoid confusion.","tags":["Workspaces"],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_createWorkspace_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the new workspace."},"noDuplicates":{"type":"boolean","description":"Set to true to avoid creating a workspace with a duplicate name."}},"required":["name"]}}}}}},"/v2.1/workspaces":{"get":{"operationId":"v2_1_listWorkspaces","summary":"List workspaces (Paginated)","description":"\n  **Attention:** This API endpoint uses pagination by default.\n\n  This endpoint returns all workspaces. See [Manage Workspaces](/docs/manage-workspaces) for more details about workspaces in Sigma.\n\n  ### Usage notes\n  - **Pagination**: Use the `page` and `limit` parameters to control the size and segment of the workspace list returned.\n  - **Filtering by name**: Optionally, use the `name` parameter to filter workspaces by a case-insensitive substring match.\n  - **Filtering by exact name**: Optionally, use the `exactName` parameter to filter workspaces by an exact name match (also case-insensitive). When provided, `exactName` takes precedence over `name` and uses an indexed equality lookup, which is significantly faster than substring search.\n\n  ### Usage scenarios\n  - **User interface display**: Populate a user interface with a list of all available workspaces, using pagination to efficiently load data and filtering to quickly find specific workspaces.\n  - **Administrative overview**: Provide system administrators with an overview of all workspaces for management and monitoring purposes, with the ability to browse through pages and search by name.\n\n  ### Best practices\n  - Use caching to reduce load times and server demand when frequently accessing workspace lists.\n  - Regularly update and synchronize workspace lists to ensure that displayed information is current and accurate.\n","tags":["Workspaces"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"exactName","in":"query","required":false,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_v2_1_listWorkspaces_Response_200"}}}}}}},"/v2/workspaces/{workspaceId}":{"get":{"operationId":"getWorkspace","summary":"Get a workspace","description":"This endpoint retrieves the details of a specific workspace by its workspaceId.\n\n### Usage notes\n- Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n\n### Usage scenarios\n- **Workspace management**: Useful for administrators or users who need to view the details of a specific workspace.\n- **Integration checks**: Can be used by external systems to verify the existence and status of a workspace as part of integration workflows.\n\n### Best practices\n- **Validate workspaceId**: Ensure the workspaceId provided is valid and corresponds to an existing workspace. Handle any errors gracefully.\n- **Access controls**: Implement proper authorization checks to ensure that only entitled users can access workspace details.","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_getWorkspace_Response_200"}}}}}},"patch":{"operationId":"updateWorkspace","summary":"Update a workspace","description":"This endpoint updates the name of an existing workspace identified by its workspaceId.\n\n### Usage notes\n- Set `NoDuplicates` to `true` to prevent the creation of a duplicate workspace.\n- Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n\n### Usage scenarios\n- **Configuration change**: Allows users to update workspace settings or names as projects evolve or requirements change.\n- **Access control adjustments**: Update workspace details in response to organizational changes or policy updates.\n\n### Best practices\n- **Partial updates**: Use PATCH to support partial updates, only sending the fields that need to be updated.\n- **Validation**: Validate input data to ensure it adheres to expected formats and constraints. Handle errors gracefully and inform the user of any constraints.","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_updateWorkspace_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the new workspace."},"noDuplicates":{"type":"boolean","description":"Set to true to avoid creating a workspace with a duplicate name."}},"required":["name"]}}}}},"delete":{"operationId":"deleteWorkspace","summary":"Delete a workspace","description":"You can use this endpoint to delete an existing workspace by its workspaceId. **Caution:** Deleted workspaces cannot be recovered.\n\n### Usage notes\n- Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n\n### Usage scenarios\n- **Cleanup operations**: Useful for removing workspaces that are no longer needed or relevant.\n- **Resource management**: Helps in managing the overall resource allocation by removing unused workspaces.\n\n### Best practices\n- **Confirm before deletion**: Always ensure that deletion operations are preceded by explicit user confirmations to prevent accidental loss of data.\n- **Audit and logging**: Maintain audit logs for deletion actions to track who deleted the workspace and when.","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_deleteWorkspace_Response_200"}}}}}}},"/v2/workspaces/{workspaceId}/grants":{"post":{"operationId":"createWorkspaceGrant","summary":"Grant workspace permissions to users or teams","description":"This endpoint allows creating a grant which specifies permissions for one or more users or teams to access a workspace.\n\n### Usage notes\n- **Grants**: An array of grant objects. Each object specifies a grantee and the permission level assigned to them.\n- Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n- Do not set both **memberId** and **teamId** in the same **grantee** object. Instead, choose one based on the target of the grant.\n\n  - Retrieve the **memberId** by calling the [/v2/members](https://help.sigmacomputing.com/reference/list-members) endpoint.\n  - Retrieve the **teamId** by calling the [/v2/teams](https://help.sigmacomputing.com/reference/list-teams) endpoint.\n\n### Usage scenarios\n- **Access control setup**: Use this endpoint to set up or modify access controls for a workspace, specifying which users or teams can access and what actions they can perform.\n\n### Best practices\n- **Clear permission definitions**: Ensure that the permissions granted are well understood by both the grantor and the grantee to avoid misuse of access rights.","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_createWorkspaceGrant_Response_200"}}}}},"requestBody":{"description":"The request body.","content":{"application/json":{"schema":{"type":"object","properties":{"grants":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"}}},"required":["grants"]}}}}},"get":{"operationId":"listWorkspaceGrants","summary":"List grants for a workspace","description":"This endpoint retrieves a list of all permission grants associated with a specific workspace, identified by its workspaceId.\n\n### Usage notes\n- Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n- Optionally use the `page` and `limit` parameters to manage the size of the returned data and navigate through large sets of data.\n\n### Usage scenarios\n- **Access control management**: Useful for administrators to review and manage who has what access to the workspace.\n- **Audit and compliance**: Assists in compliance checks and audits by providing a clear view of the permissions granted to different users and teams.\n\n### Best practices\n- **Use pagination**: Especially important for workspaces with a large number of grants to ensure performance and usability.\n- **Regular review**: Regularly review and update the workspace grants to ensure they align with current organizational policies and user roles.","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"page","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"number","format":"double"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_listWorkspaceGrants_Response_200"}}}}}}},"/v2/workspaces/{workspaceId}/grants/{grantId}":{"delete":{"operationId":"deleteWorkspaceGrant","summary":"Delete a workspace grant","description":"Delete a specific grant of permissions granted on a workspace to a user or team.\n\n  ### Usage notes\n  - Retrieve the **workspaceId** by calling the [/v2/workspaces](https://help.sigmacomputing.com/reference/list-workspaces) endpoint.\n  - Retrieve the **grantId** by calling the [/v2/workspaces/{workspaceId}/grants](https://help.sigmacomputing.com/reference/list-workspace-grants) endpoint.\n  ","tags":["Workspaces"],"parameters":[{"name":"workspaceId","in":"path","required":true,"schema":{"type":"string"}},{"name":"grantId","in":"path","required":true,"schema":{"type":"string"}},{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/workspaces_deleteWorkspaceGrant_Response_200"}}}}}}},"/v2/whoami":{"get":{"operationId":"whoami","summary":"Get current user","description":"Get the identity and authentication status of the current user.\n\n  ### Usage notes\n  Call this endpoint after authenticating to retrieve user details. It does not require any parameters other than the user's valid session or authentication token included in the request headers.\n\n  ### Usage scenarios\n  - **Session validation:** Quickly confirm user authentication and retrieve session-specific details at the start of a new session.\n  - **User configuration:** Retrieve settings or configurations specific to the user, allowing for a customized application experience based on user roles and permissions.\n\n  ### Best practices\n  - Call this endpoint at the beginning of each session to ensure that the user's credentials are still valid and have not been revoked.\n  - Use the information provided by this endpoint to tailor the user interface and functionality accessible to the user, enhancing security and user experience.","tags":[""],"parameters":[{"name":"Authorization","in":"header","description":"OAuth authentication","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The response body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/whoami_Response_200"}}}}}}}},"servers":[{"url":"https://api.sigmacomputing.com","description":"Server for GCP (US) hosted organizations"},{"url":"https://api.sa.gcp.sigmacomputing.com","description":"Server for GCP (KSA) hosted organizations"},{"url":"https://aws-api.sigmacomputing.com","description":"Server for AWS US (West) hosted organizations"},{"url":"https://api.us-a.aws.sigmacomputing.com","description":"Server for AWS US (East) hosted organizations"},{"url":"https://api.ca.aws.sigmacomputing.com","description":"Server for AWS Canada hosted organizations"},{"url":"https://api.eu.aws.sigmacomputing.com","description":"Server for AWS Europe hosted organizations"},{"url":"https://api.au.aws.sigmacomputing.com","description":"Server for AWS Australia and APAC hosted organizations"},{"url":"https://api.uk.aws.sigmacomputing.com","description":"Server for AWS UK hosted organizations"},{"url":"https://api.us.azure.sigmacomputing.com","description":"Server for Azure US hosted organizations"},{"url":"https://api.eu.azure.sigmacomputing.com","description":"Server for Azure Europe hosted organizations"},{"url":"https://api.ca.azure.sigmacomputing.com","description":"Server for Azure Canada hosted organizations"},{"url":"https://api.uk.azure.sigmacomputing.com","description":"Server for Azure United Kingdom hosted organizations"},{"url":"https://api.au.azure.sigmacomputing.com","description":"Server for Azure Australia hosted organizations"}],"components":{"schemas":{"V2AccountTypesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"accountTypeId":{"type":"string","description":"The unique identifier of the account type."},"accountTypeName":{"type":"string","description":"The name of the account type."},"description":{"type":"string","description":"A human-readable description of the permissions and capabilities provided by this account type."},"isCustom":{"type":"boolean","description":"Whether this is a custom account type created by the organization (true) or a default Sigma account type (false)."}},"required":["accountTypeId","accountTypeName","description","isCustom"],"title":"V2AccountTypesGetResponsesContentApplicationJsonSchemaEntriesItems"},"accountTypes_listAccountTypes_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2AccountTypesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"accountTypes_listAccountTypes_Response_200"},"accountTypes_createAccountType_Response_201":{"type":"object","properties":{"accountTypeId":{"type":"string","description":"The unique identifier of the account type."},"accountTypeName":{"type":"string","description":"The name of the account type."},"description":{"type":"string","description":"A human-readable description of the permissions and capabilities provided by this account type."},"isCustom":{"type":"boolean","description":"Whether this is a custom account type created by the organization (true) or a default Sigma account type (false)."}},"required":["accountTypeId","accountTypeName","description","isCustom"],"title":"accountTypes_createAccountType_Response_201"},"V2AccountTypesAccountTypeIdPermissionsGetResponsesContentApplicationJsonSchemaItems":{"type":"object","properties":{"permission":{"type":"string","description":"The permission name. For example, \"view-worksheet\"."},"description":{"type":"string","description":"A human-readable description of what this permission allows."}},"required":["permission","description"],"title":"V2AccountTypesAccountTypeIdPermissionsGetResponsesContentApplicationJsonSchemaItems"},"accountTypes_deleteAccountType_Response_200":{"type":"object","properties":{},"title":"accountTypes_deleteAccountType_Response_200"},"V2ApiConnectorsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"apiConnectorId":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"}},"required":["apiConnectorId","name","description"],"title":"V2ApiConnectorsGetResponsesContentApplicationJsonSchemaEntriesItems"},"api-connectors_listApiConnectors_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"api-connectors_listApiConnectors_Response_200"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsMethod":{"type":"string","enum":["GET","POST","DELETE","PATCH","PUT","OPTIONS","HEAD"],"description":"HTTP method to invoke.","title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsMethod"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType"},"ParamShapeNodeOneOf0TypeItems":{"type":"string","enum":["string"],"title":"ParamShapeNodeOneOf0TypeItems"},"ParamShapeNode0":{"type":"object","properties":{"type":{"type":"array","items":{"$ref":"#/components/schemas/ParamShapeNodeOneOf0TypeItems"}}},"required":["type"],"title":"ParamShapeNode0"},"ParamShapeNodeOneOf1TypeItems":{"type":"string","enum":["number"],"title":"ParamShapeNodeOneOf1TypeItems"},"ParamShapeNode1":{"type":"object","properties":{"type":{"type":"array","items":{"$ref":"#/components/schemas/ParamShapeNodeOneOf1TypeItems"}}},"required":["type"],"title":"ParamShapeNode1"},"ParamShapeNodeOneOf2TypeItems":{"type":"string","enum":["boolean"],"title":"ParamShapeNodeOneOf2TypeItems"},"ParamShapeNode2":{"type":"object","properties":{"type":{"type":"array","items":{"$ref":"#/components/schemas/ParamShapeNodeOneOf2TypeItems"}}},"required":["type"],"title":"ParamShapeNode2"},"ParamShapeNodeOneOf3TypeItems":{"type":"string","enum":["object"],"title":"ParamShapeNodeOneOf3TypeItems"},"ParamShapeNode3":{"type":"object","properties":{"type":{"type":"array","items":{"$ref":"#/components/schemas/ParamShapeNodeOneOf3TypeItems"}},"properties":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/ParamShapeNode"}}},"required":["type","properties"],"title":"ParamShapeNode3"},"ParamShapeNodeOneOf4TypeItems":{"type":"string","enum":["array"],"title":"ParamShapeNodeOneOf4TypeItems"},"ParamShapeNode4":{"type":"object","properties":{"type":{"type":"array","items":{"$ref":"#/components/schemas/ParamShapeNodeOneOf4TypeItems"}},"items":{"$ref":"#/components/schemas/ParamShapeNode"}},"required":["type","items"],"title":"ParamShapeNode4"},"ParamShapeNode":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode0"},{"$ref":"#/components/schemas/ParamShapeNode1"},{"$ref":"#/components/schemas/ParamShapeNode2"},{"$ref":"#/components/schemas/ParamShapeNode3"},{"$ref":"#/components/schemas/ParamShapeNode4"},{"type":"object","additionalProperties":{"description":"Any type"}}],"title":"ParamShapeNode"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItems"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItems"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParams":{"type":"object","properties":{"method":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsMethod","description":"HTTP method to invoke."},"url":{"type":"string","description":"Request URL. Must resolve to a hostname matching the associated credential's allowlist."},"headers":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsHeadersItems"},"description":"Static or dynamic request headers."},"pathParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsPathParamsItems"},"description":"Path parameter placeholders resolved into the URL."},"queryParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems"},"description":"Query string parameters."},"body":{"type":"string","description":"Raw request body template."}},"required":["method","url","headers","pathParams","queryParams","body"],"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaParams"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigTimeout":{"type":"object","properties":{"requestSec":{"type":"number","format":"double"}},"required":["requestSec"],"description":"Per-request timeout configuration.","title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigTimeout"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRetry":{"type":"object","properties":{"maxRetries":{"type":"number","format":"double"},"retryableStatusCodes":{"type":"array","items":{"type":"number","format":"double"}}},"required":["maxRetries","retryableStatusCodes"],"description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry.","title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRetry"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRedirects":{"type":"object","properties":{"maxRedirects":{"type":"number","format":"double"}},"required":["maxRedirects"],"description":"HTTP redirect handling.","title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRedirects"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRateLimit":{"type":"object","properties":{"maxRequestsPerWindow":{"type":"number","format":"double"}},"required":["maxRequestsPerWindow"],"description":"Rate limit applied to outbound requests from this connector.","title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRateLimit"},"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfig":{"type":"object","properties":{"timeout":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigTimeout","description":"Per-request timeout configuration."},"retry":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRetry","description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry."},"redirects":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRedirects","description":"HTTP redirect handling."},"rateLimit":{"$ref":"#/components/schemas/V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfigRateLimit","description":"Rate limit applied to outbound requests from this connector."}},"title":"V2ApiConnectorsPostRequestBodyContentApplicationJsonSchemaConfig"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsMethod":{"type":"string","enum":["GET","POST","DELETE","PATCH","PUT","OPTIONS","HEAD"],"description":"HTTP method to invoke.","title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsMethod"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItems"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParams":{"type":"object","properties":{"method":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsMethod","description":"HTTP method to invoke."},"url":{"type":"string","description":"Request URL. Must resolve to a hostname matching the associated credential's allowlist."},"headers":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsHeadersItems"},"description":"Static or dynamic request headers."},"pathParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"description":"Path parameter placeholders resolved into the URL."},"queryParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"description":"Query string parameters."},"body":{"type":"string","description":"Raw request body template."},"bodyParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"description":"Dynamic parameters extracted from `body`."}},"required":["method","url","headers","pathParams","queryParams","body","bodyParams"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParams"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigTimeout":{"type":"object","properties":{"requestSec":{"type":"number","format":"double"}},"required":["requestSec"],"description":"Per-request timeout configuration.","title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigTimeout"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRetry":{"type":"object","properties":{"maxRetries":{"type":"number","format":"double"},"retryableStatusCodes":{"type":"array","items":{"type":"number","format":"double"}}},"required":["maxRetries","retryableStatusCodes"],"description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry.","title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRetry"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRedirects":{"type":"object","properties":{"maxRedirects":{"type":"number","format":"double"}},"required":["maxRedirects"],"description":"HTTP redirect handling.","title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRedirects"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRateLimit":{"type":"object","properties":{"maxRequestsPerWindow":{"type":"number","format":"double"}},"required":["maxRequestsPerWindow"],"description":"Rate limit applied to outbound requests from this connector.","title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRateLimit"},"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfig":{"type":"object","properties":{"timeout":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigTimeout","description":"Per-request timeout configuration."},"retry":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRetry","description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry."},"redirects":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRedirects","description":"HTTP redirect handling."},"rateLimit":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfigRateLimit","description":"Rate limit applied to outbound requests from this connector."}},"required":["timeout","retry","redirects","rateLimit"],"title":"V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfig"},"api-connectors_createApiConnector_Response_200":{"type":"object","properties":{"apiConnectorId":{"type":"string","description":"Unique identifier of the API connector."},"name":{"type":"string","description":"Display name of the connector."},"params":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaParams"},"config":{"$ref":"#/components/schemas/V2ApiConnectorsPostResponsesContentApplicationJsonSchemaConfig"},"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":{"type":"string","description":"Human-readable description."},"authId":{"type":["string","null"],"description":"Identifier of the API credential (`apiCredentialId`) used to authenticate requests. `null` if unauthenticated."}},"required":["apiConnectorId","name","params","config","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-connectors_createApiConnector_Response_200"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsMethod":{"type":"string","enum":["GET","POST","DELETE","PATCH","PUT","OPTIONS","HEAD"],"description":"HTTP method to invoke.","title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsMethod"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItems"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParams":{"type":"object","properties":{"method":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsMethod","description":"HTTP method to invoke."},"url":{"type":"string","description":"Request URL. Must resolve to a hostname matching the associated credential's allowlist."},"headers":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsHeadersItems"},"description":"Static or dynamic request headers."},"pathParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"description":"Path parameter placeholders resolved into the URL."},"queryParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"description":"Query string parameters."},"body":{"type":"string","description":"Raw request body template."},"bodyParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"description":"Dynamic parameters extracted from `body`."}},"required":["method","url","headers","pathParams","queryParams","body","bodyParams"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParams"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigTimeout":{"type":"object","properties":{"requestSec":{"type":"number","format":"double"}},"required":["requestSec"],"description":"Per-request timeout configuration.","title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigTimeout"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRetry":{"type":"object","properties":{"maxRetries":{"type":"number","format":"double"},"retryableStatusCodes":{"type":"array","items":{"type":"number","format":"double"}}},"required":["maxRetries","retryableStatusCodes"],"description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry.","title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRetry"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRedirects":{"type":"object","properties":{"maxRedirects":{"type":"number","format":"double"}},"required":["maxRedirects"],"description":"HTTP redirect handling.","title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRedirects"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRateLimit":{"type":"object","properties":{"maxRequestsPerWindow":{"type":"number","format":"double"}},"required":["maxRequestsPerWindow"],"description":"Rate limit applied to outbound requests from this connector.","title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRateLimit"},"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfig":{"type":"object","properties":{"timeout":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigTimeout","description":"Per-request timeout configuration."},"retry":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRetry","description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry."},"redirects":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRedirects","description":"HTTP redirect handling."},"rateLimit":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfigRateLimit","description":"Rate limit applied to outbound requests from this connector."}},"required":["timeout","retry","redirects","rateLimit"],"title":"V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfig"},"api-connectors_getApiConnector_Response_200":{"type":"object","properties":{"apiConnectorId":{"type":"string","description":"Unique identifier of the API connector."},"name":{"type":"string","description":"Display name of the connector."},"params":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaParams"},"config":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdGetResponsesContentApplicationJsonSchemaConfig"},"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":{"type":"string","description":"Human-readable description."},"authId":{"type":["string","null"],"description":"Identifier of the API credential (`apiCredentialId`) used to authenticate requests. `null` if unauthenticated."}},"required":["apiConnectorId","name","params","config","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-connectors_getApiConnector_Response_200"},"api-connectors_deleteApiConnector_Response_200":{"type":"object","properties":{},"title":"api-connectors_deleteApiConnector_Response_200"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsMethod":{"type":"string","enum":["GET","POST","DELETE","PATCH","PUT","OPTIONS","HEAD"],"description":"HTTP method to invoke.","title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsMethod"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItems"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItems"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParams":{"type":"object","properties":{"method":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsMethod","description":"HTTP method to invoke."},"url":{"type":"string","description":"Request URL. Must resolve to a hostname matching the associated credential's allowlist."},"headers":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsHeadersItems"},"description":"Static or dynamic request headers."},"pathParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsPathParamsItems"},"description":"Path parameter placeholders resolved into the URL."},"queryParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParamsQueryParamsItems"},"description":"Query string parameters."},"body":{"type":"string","description":"Raw request body template."}},"required":["method","url","headers","pathParams","queryParams","body"],"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaParams"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigTimeout":{"type":"object","properties":{"requestSec":{"type":"number","format":"double"}},"required":["requestSec"],"description":"Per-request timeout configuration.","title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigTimeout"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRetry":{"type":"object","properties":{"maxRetries":{"type":"number","format":"double"},"retryableStatusCodes":{"type":"array","items":{"type":"number","format":"double"}}},"required":["maxRetries","retryableStatusCodes"],"description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry.","title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRetry"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRedirects":{"type":"object","properties":{"maxRedirects":{"type":"number","format":"double"}},"required":["maxRedirects"],"description":"HTTP redirect handling.","title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRedirects"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRateLimit":{"type":"object","properties":{"maxRequestsPerWindow":{"type":"number","format":"double"}},"required":["maxRequestsPerWindow"],"description":"Rate limit applied to outbound requests from this connector.","title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRateLimit"},"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfig":{"type":"object","properties":{"timeout":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigTimeout","description":"Per-request timeout configuration."},"retry":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRetry","description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry."},"redirects":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRedirects","description":"HTTP redirect handling."},"rateLimit":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfigRateLimit","description":"Rate limit applied to outbound requests from this connector."}},"title":"V2ApiConnectorsApiConnectorIdPatchRequestBodyContentApplicationJsonSchemaConfig"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsMethod":{"type":"string","enum":["GET","POST","DELETE","PATCH","PUT","OPTIONS","HEAD"],"description":"HTTP method to invoke.","title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsMethod"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItems"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode":{"type":"string","enum":["static","dynamic"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType":{"type":"string","enum":["array","boolean","number","object","raw","string"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItems":{"type":"object","properties":{"key":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsMode"},"value":{"type":["string","null"]},"type":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItemsType"},"shape":{"oneOf":[{"$ref":"#/components/schemas/ParamShapeNode"},{"type":"null"}]}},"required":["key","mode"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParams":{"type":"object","properties":{"method":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsMethod","description":"HTTP method to invoke."},"url":{"type":"string","description":"Request URL. Must resolve to a hostname matching the associated credential's allowlist."},"headers":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsHeadersItems"},"description":"Static or dynamic request headers."},"pathParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsPathParamsItems"},"description":"Path parameter placeholders resolved into the URL."},"queryParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsQueryParamsItems"},"description":"Query string parameters."},"body":{"type":"string","description":"Raw request body template."},"bodyParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParamsBodyParamsItems"},"description":"Dynamic parameters extracted from `body`."}},"required":["method","url","headers","pathParams","queryParams","body","bodyParams"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParams"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigTimeout":{"type":"object","properties":{"requestSec":{"type":"number","format":"double"}},"required":["requestSec"],"description":"Per-request timeout configuration.","title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigTimeout"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRetry":{"type":"object","properties":{"maxRetries":{"type":"number","format":"double"},"retryableStatusCodes":{"type":"array","items":{"type":"number","format":"double"}}},"required":["maxRetries","retryableStatusCodes"],"description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry.","title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRetry"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRedirects":{"type":"object","properties":{"maxRedirects":{"type":"number","format":"double"}},"required":["maxRedirects"],"description":"HTTP redirect handling.","title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRedirects"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRateLimit":{"type":"object","properties":{"maxRequestsPerWindow":{"type":"number","format":"double"}},"required":["maxRequestsPerWindow"],"description":"Rate limit applied to outbound requests from this connector.","title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRateLimit"},"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfig":{"type":"object","properties":{"timeout":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigTimeout","description":"Per-request timeout configuration."},"retry":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRetry","description":"Retry policy. `retryableStatusCodes` are HTTP codes that should trigger a retry."},"redirects":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRedirects","description":"HTTP redirect handling."},"rateLimit":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfigRateLimit","description":"Rate limit applied to outbound requests from this connector."}},"required":["timeout","retry","redirects","rateLimit"],"title":"V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfig"},"api-connectors_updateApiConnector_Response_200":{"type":"object","properties":{"apiConnectorId":{"type":"string","description":"Unique identifier of the API connector."},"name":{"type":"string","description":"Display name of the connector."},"params":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaParams"},"config":{"$ref":"#/components/schemas/V2ApiConnectorsApiConnectorIdPatchResponsesContentApplicationJsonSchemaConfig"},"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":{"type":"string","description":"Human-readable description."},"authId":{"type":["string","null"],"description":"Identifier of the API credential (`apiCredentialId`) used to authenticate requests. `null` if unauthenticated."}},"required":["apiConnectorId","name","params","config","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-connectors_updateApiConnector_Response_200"},"V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItemsAuthMethod":{"type":"string","enum":["basic","bearer","apiKey","oAuthClientCredentials","oAuthAuthorizationCode","oAuthPasswordCredentials","awsSigV4"],"description":"Authentication method the credential uses.","title":"V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItemsAuthMethod"},"V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"apiCredentialId":{"type":"string","description":"Unique identifier of the API credential."},"name":{"type":"string","description":"Display name of the credential."},"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItemsAuthMethod","description":"Authentication method the credential uses."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Hostname glob patterns the credential is authorized to be used against."},"description":{"type":"string","description":"Human-readable description."}},"required":["apiCredentialId","name","authMethod","allowlist"],"title":"V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItems"},"api-credentials_listApiCredentials_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"api-credentials_listApiCredentials_Response_200"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod":{"type":"string","enum":["basic"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic":{"type":"object","properties":{"username":{"type":"string","description":"Username for Basic authentication."},"password":{"type":"string","description":"Password for Basic authentication. Encrypted at rest; never returned in responses."}},"required":["username","password"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential0":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"basic":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic"}},"required":["authMethod","basic"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential0"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod":{"type":"string","enum":["bearer"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer":{"type":"object","properties":{"token":{"type":"string","description":"Bearer token. Encrypted at rest; never returned in responses."}},"required":["token"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential1":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"bearer":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer"}},"required":["authMethod","bearer"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential1"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod":{"type":"string","enum":["apiKey"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey":{"type":"object","properties":{"key":{"type":"string","description":"Header or query parameter name carrying the API key."},"value":{"type":"string","description":"API key value. Encrypted at rest; never returned in responses."},"isQueryParam":{"type":"boolean","description":"Whether the key is sent as a query parameter; if false, it is sent as a header."}},"required":["key","value","isQueryParam"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential2":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"apiKey":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey"}},"required":["authMethod","apiKey"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential2"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod":{"type":"string","enum":["oAuthClientCredentials"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"clientSecret":{"type":"string","description":"OAuth client secret. Encrypted at rest; never returned in responses."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes requested at token exchange."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","clientSecret","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential3":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"oAuthClientCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"}},"required":["authMethod","oAuthClientCredentials"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential3"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod":{"type":"string","enum":["awsSigV4"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping":{"type":"object","properties":{"accessKeyField":{"type":"string"},"secretKeyField":{"type":"string"},"sessionTokenField":{"type":"string"},"expirationField":{"type":"string"}},"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn":{"type":"string","enum":["queryParam","body","header"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"sendIn":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"}},"required":["key","value","sendIn"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4":{"type":"object","properties":{"accessKeyId":{"type":"string","description":"AWS access key ID."},"secretAccessKey":{"type":"string","description":"AWS secret access key. Encrypted at rest; never returned in responses."},"region":{"type":"string","description":"AWS region for SigV4 signing."},"service":{"type":"string","description":"AWS service name for SigV4 signing (e.g. `s3`, `execute-api`)."},"sessionToken":{"type":"string","description":"AWS STS session token for temporary credentials."},"temporaryCredentialsUrl":{"type":"string","description":"URL that vends temporary credentials (e.g. STS AssumeRole endpoint)."},"temporaryCredentialsResponseMapping":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping"},"temporaryCredentialsRequestParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems"},"description":"Additional key/value parameters attached to the temporary-credentials swap request. Each entry specifies whether it is sent as a request header, body field, or query parameter (`sendIn`: `header` | `body` | `queryParam`). Use this when the swap endpoint requires its own authentication (for example, an `x-api-key` header)."}},"required":["accessKeyId","secretAccessKey"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential4":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"awsSigV4":{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4"}},"required":["authMethod","awsSigV4"],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential4"},"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential":{"oneOf":[{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential0"},{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential1"},{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential2"},{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential3"},{"$ref":"#/components/schemas/V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential4"}],"title":"V2ApiCredentialsPostRequestBodyContentApplicationJsonSchemaCredential"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaAuthMethod":{"type":"string","enum":["basic","bearer","apiKey","oAuthClientCredentials","oAuthAuthorizationCode","oAuthPasswordCredentials","awsSigV4"],"description":"Authentication method the credential uses.","title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaAuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod":{"type":"string","enum":["basic"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0Basic":{"type":"object","properties":{"username":{"type":"string","description":"Username for Basic authentication."}},"required":["username"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential0":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"basic":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential0"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod":{"type":"string","enum":["bearer"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential1":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential1"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod":{"type":"string","enum":["apiKey"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey":{"type":"object","properties":{"key":{"type":"string","description":"Header or query parameter name carrying the API key."},"isQueryParam":{"type":"boolean","description":"Whether the key is sent as a query parameter; if false, it is sent as a header."}},"required":["key","isQueryParam"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential2":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"apiKey":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential2"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod":{"type":"string","enum":["oAuthClientCredentials"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes requested at token exchange."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential3":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"oAuthClientCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential3"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod":{"type":"string","enum":["oAuthAuthorizationCode"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"authorizationUrl":{"type":"string","description":"OAuth authorization endpoint URL."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","authorizationUrl","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential4":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"oAuthAuthorizationCode":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential4"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod":{"type":"string","enum":["oAuthPasswordCredentials"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials":{"type":"object","properties":{"username":{"type":"string","description":"OAuth resource-owner username."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."},"clientId":{"type":"string","description":"OAuth client ID."}},"required":["username","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential5":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"oAuthPasswordCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential5"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod":{"type":"string","enum":["awsSigV4"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping":{"type":"object","properties":{"accessKeyField":{"type":"string"},"secretKeyField":{"type":"string"},"sessionTokenField":{"type":"string"},"expirationField":{"type":"string"}},"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn":{"type":"string","enum":["queryParam","body","header"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"sendIn":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"}},"required":["key","value","sendIn"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4":{"type":"object","properties":{"accessKeyId":{"type":"string","description":"AWS access key ID."},"region":{"type":"string","description":"AWS region for SigV4 signing."},"service":{"type":"string","description":"AWS service name for SigV4 signing (e.g. `s3`, `execute-api`)."},"temporaryCredentialsUrl":{"type":"string","description":"URL that vends temporary credentials (e.g. STS AssumeRole endpoint)."},"temporaryCredentialsResponseMapping":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"temporaryCredentialsRequestParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"description":"Additional parameters sent on the temporary-credentials swap request, each tagged with `sendIn` (`header` | `body` | `queryParam`)."}},"required":["accessKeyId"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential6":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"awsSigV4":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"}},"required":["authMethod"],"title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential6"},"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential":{"oneOf":[{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential0"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential1"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential2"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential3"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential4"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential5"},{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential6"}],"description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned.","title":"V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential"},"api-credentials_createApiCredential_Response_200":{"type":"object","properties":{"apiCredentialId":{"type":"string","description":"Unique identifier of the API credential."},"name":{"type":"string","description":"Display name of the credential."},"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaAuthMethod","description":"Authentication method the credential uses."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Hostname glob patterns (e.g. `*.example.com`) that the credential is authorized to be used against."},"credential":{"$ref":"#/components/schemas/V2ApiCredentialsPostResponsesContentApplicationJsonSchemaCredential","description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned."},"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":{"type":"string","description":"Human-readable description."}},"required":["apiCredentialId","name","authMethod","allowlist","credential","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-credentials_createApiCredential_Response_200"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaAuthMethod":{"type":"string","enum":["basic","bearer","apiKey","oAuthClientCredentials","oAuthAuthorizationCode","oAuthPasswordCredentials","awsSigV4"],"description":"Authentication method the credential uses.","title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaAuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod":{"type":"string","enum":["basic"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0Basic":{"type":"object","properties":{"username":{"type":"string","description":"Username for Basic authentication."}},"required":["username"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential0":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"basic":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential0"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod":{"type":"string","enum":["bearer"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential1":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential1"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod":{"type":"string","enum":["apiKey"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey":{"type":"object","properties":{"key":{"type":"string","description":"Header or query parameter name carrying the API key."},"isQueryParam":{"type":"boolean","description":"Whether the key is sent as a query parameter; if false, it is sent as a header."}},"required":["key","isQueryParam"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential2":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"apiKey":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential2"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod":{"type":"string","enum":["oAuthClientCredentials"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes requested at token exchange."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential3":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"oAuthClientCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential3"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod":{"type":"string","enum":["oAuthAuthorizationCode"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"authorizationUrl":{"type":"string","description":"OAuth authorization endpoint URL."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","authorizationUrl","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential4":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"oAuthAuthorizationCode":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential4"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod":{"type":"string","enum":["oAuthPasswordCredentials"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials":{"type":"object","properties":{"username":{"type":"string","description":"OAuth resource-owner username."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."},"clientId":{"type":"string","description":"OAuth client ID."}},"required":["username","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential5":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"oAuthPasswordCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential5"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod":{"type":"string","enum":["awsSigV4"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping":{"type":"object","properties":{"accessKeyField":{"type":"string"},"secretKeyField":{"type":"string"},"sessionTokenField":{"type":"string"},"expirationField":{"type":"string"}},"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn":{"type":"string","enum":["queryParam","body","header"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"sendIn":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"}},"required":["key","value","sendIn"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4":{"type":"object","properties":{"accessKeyId":{"type":"string","description":"AWS access key ID."},"region":{"type":"string","description":"AWS region for SigV4 signing."},"service":{"type":"string","description":"AWS service name for SigV4 signing (e.g. `s3`, `execute-api`)."},"temporaryCredentialsUrl":{"type":"string","description":"URL that vends temporary credentials (e.g. STS AssumeRole endpoint)."},"temporaryCredentialsResponseMapping":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"temporaryCredentialsRequestParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"description":"Additional parameters sent on the temporary-credentials swap request, each tagged with `sendIn` (`header` | `body` | `queryParam`)."}},"required":["accessKeyId"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential6":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"awsSigV4":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential6"},"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential":{"oneOf":[{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential0"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential1"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential2"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential3"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential4"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential5"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential6"}],"description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned.","title":"V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential"},"api-credentials_getApiCredential_Response_200":{"type":"object","properties":{"apiCredentialId":{"type":"string","description":"Unique identifier of the API credential."},"name":{"type":"string","description":"Display name of the credential."},"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaAuthMethod","description":"Authentication method the credential uses."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Hostname glob patterns (e.g. `*.example.com`) that the credential is authorized to be used against."},"credential":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdGetResponsesContentApplicationJsonSchemaCredential","description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned."},"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":{"type":"string","description":"Human-readable description."}},"required":["apiCredentialId","name","authMethod","allowlist","credential","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-credentials_getApiCredential_Response_200"},"api-credentials_deleteApiCredential_Response_200":{"type":"object","properties":{},"title":"api-credentials_deleteApiCredential_Response_200"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod":{"type":"string","enum":["basic"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic":{"type":"object","properties":{"username":{"type":"string","description":"Username for Basic authentication."},"password":{"type":"string","description":"Password for Basic authentication. Encrypted at rest; never returned in responses."}},"required":["username","password"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential0":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"basic":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf0Basic"}},"required":["authMethod","basic"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential0"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod":{"type":"string","enum":["bearer"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer":{"type":"object","properties":{"token":{"type":"string","description":"Bearer token. Encrypted at rest; never returned in responses."}},"required":["token"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential1":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"bearer":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf1Bearer"}},"required":["authMethod","bearer"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential1"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod":{"type":"string","enum":["apiKey"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey":{"type":"object","properties":{"key":{"type":"string","description":"Header or query parameter name carrying the API key."},"value":{"type":"string","description":"API key value. Encrypted at rest; never returned in responses."},"isQueryParam":{"type":"boolean","description":"Whether the key is sent as a query parameter; if false, it is sent as a header."}},"required":["key","value","isQueryParam"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential2":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"apiKey":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf2ApiKey"}},"required":["authMethod","apiKey"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential2"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod":{"type":"string","enum":["oAuthClientCredentials"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"clientSecret":{"type":"string","description":"OAuth client secret. Encrypted at rest; never returned in responses."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes requested at token exchange."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","clientSecret","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential3":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"oAuthClientCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"}},"required":["authMethod","oAuthClientCredentials"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential3"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod":{"type":"string","enum":["awsSigV4"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping":{"type":"object","properties":{"accessKeyField":{"type":"string"},"secretKeyField":{"type":"string"},"sessionTokenField":{"type":"string"},"expirationField":{"type":"string"}},"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn":{"type":"string","enum":["queryParam","body","header"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"sendIn":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"}},"required":["key","value","sendIn"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4":{"type":"object","properties":{"accessKeyId":{"type":"string","description":"AWS access key ID."},"secretAccessKey":{"type":"string","description":"AWS secret access key. Encrypted at rest; never returned in responses."},"region":{"type":"string","description":"AWS region for SigV4 signing."},"service":{"type":"string","description":"AWS service name for SigV4 signing (e.g. `s3`, `execute-api`)."},"sessionToken":{"type":"string","description":"AWS STS session token for temporary credentials."},"temporaryCredentialsUrl":{"type":"string","description":"URL that vends temporary credentials (e.g. STS AssumeRole endpoint)."},"temporaryCredentialsResponseMapping":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsResponseMapping"},"temporaryCredentialsRequestParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4TemporaryCredentialsRequestParamsItems"},"description":"Additional key/value parameters attached to the temporary-credentials swap request. Each entry specifies whether it is sent as a request header, body field, or query parameter (`sendIn`: `header` | `body` | `queryParam`). Use this when the swap endpoint requires its own authentication (for example, an `x-api-key` header)."}},"required":["accessKeyId","secretAccessKey"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential4":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"awsSigV4":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredentialOneOf4AwsSigV4"}},"required":["authMethod","awsSigV4"],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential4"},"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential":{"oneOf":[{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential0"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential1"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential2"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential3"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential4"}],"title":"V2ApiCredentialsApiCredentialIdPatchRequestBodyContentApplicationJsonSchemaCredential"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaAuthMethod":{"type":"string","enum":["basic","bearer","apiKey","oAuthClientCredentials","oAuthAuthorizationCode","oAuthPasswordCredentials","awsSigV4"],"description":"Authentication method the credential uses.","title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaAuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod":{"type":"string","enum":["basic"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0Basic":{"type":"object","properties":{"username":{"type":"string","description":"Username for Basic authentication."}},"required":["username"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential0":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0AuthMethod"},"basic":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf0Basic"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential0"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod":{"type":"string","enum":["bearer"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential1":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf1AuthMethod"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential1"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod":{"type":"string","enum":["apiKey"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey":{"type":"object","properties":{"key":{"type":"string","description":"Header or query parameter name carrying the API key."},"isQueryParam":{"type":"boolean","description":"Whether the key is sent as a query parameter; if false, it is sent as a header."}},"required":["key","isQueryParam"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential2":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2AuthMethod"},"apiKey":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf2ApiKey"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential2"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod":{"type":"string","enum":["oAuthClientCredentials"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes requested at token exchange."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential3":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3AuthMethod"},"oAuthClientCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf3OAuthClientCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential3"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod":{"type":"string","enum":["oAuthAuthorizationCode"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode":{"type":"object","properties":{"clientId":{"type":"string","description":"OAuth client ID."},"authorizationUrl":{"type":"string","description":"OAuth authorization endpoint URL."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCodeAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."}},"required":["clientId","authorizationUrl","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential4":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4AuthMethod"},"oAuthAuthorizationCode":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf4OAuthAuthorizationCode"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential4"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod":{"type":"string","enum":["oAuthPasswordCredentials"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod":{"type":"string","enum":["httpBasic","requestBody"],"description":"How client credentials are presented to the token endpoint.","title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials":{"type":"object","properties":{"username":{"type":"string","description":"OAuth resource-owner username."},"accessTokenUrl":{"type":"string","description":"OAuth token endpoint URL."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes."},"accessTokenAuthMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentialsAccessTokenAuthMethod","description":"How client credentials are presented to the token endpoint."},"clientId":{"type":"string","description":"OAuth client ID."}},"required":["username","accessTokenUrl","scopes","accessTokenAuthMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential5":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5AuthMethod"},"oAuthPasswordCredentials":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf5OAuthPasswordCredentials"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential5"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod":{"type":"string","enum":["awsSigV4"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping":{"type":"object","properties":{"accessKeyField":{"type":"string"},"secretKeyField":{"type":"string"},"sessionTokenField":{"type":"string"},"expirationField":{"type":"string"}},"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn":{"type":"string","enum":["queryParam","body","header"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"},"sendIn":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItemsSendIn"}},"required":["key","value","sendIn"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4":{"type":"object","properties":{"accessKeyId":{"type":"string","description":"AWS access key ID."},"region":{"type":"string","description":"AWS region for SigV4 signing."},"service":{"type":"string","description":"AWS service name for SigV4 signing (e.g. `s3`, `execute-api`)."},"temporaryCredentialsUrl":{"type":"string","description":"URL that vends temporary credentials (e.g. STS AssumeRole endpoint)."},"temporaryCredentialsResponseMapping":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsResponseMapping"},"temporaryCredentialsRequestParams":{"type":"array","items":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4TemporaryCredentialsRequestParamsItems"},"description":"Additional parameters sent on the temporary-credentials swap request, each tagged with `sendIn` (`header` | `body` | `queryParam`)."}},"required":["accessKeyId"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential6":{"type":"object","properties":{"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AuthMethod"},"awsSigV4":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredentialOneOf6AwsSigV4"}},"required":["authMethod"],"title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential6"},"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential":{"oneOf":[{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential0"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential1"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential2"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential3"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential4"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential5"},{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential6"}],"description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned.","title":"V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential"},"api-credentials_updateApiCredential_Response_200":{"type":"object","properties":{"apiCredentialId":{"type":"string","description":"Unique identifier of the API credential."},"name":{"type":"string","description":"Display name of the credential."},"authMethod":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaAuthMethod","description":"Authentication method the credential uses."},"allowlist":{"type":"array","items":{"type":"string"},"description":"Hostname glob patterns (e.g. `*.example.com`) that the credential is authorized to be used against."},"credential":{"$ref":"#/components/schemas/V2ApiCredentialsApiCredentialIdPatchResponsesContentApplicationJsonSchemaCredential","description":"Nonsensitive projection of the credential, discriminated by `authMethod`. Secret fields (password, token, clientSecret, secretAccessKey) are never returned."},"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":{"type":"string","description":"Human-readable description."}},"required":["apiCredentialId","name","authMethod","allowlist","credential","createdBy","updatedBy","createdAt","updatedAt"],"title":"api-credentials_updateApiCredential_Response_200"},"auth_postToken_Response_200":{"type":"object","properties":{"access_token":{"type":"string","description":"Token used to access the API and make requests."},"refresh_token":{"type":"string","description":"Refresh token used to refresh the access token."},"token_type":{"type":"string","description":"The type of token issued."},"expires_in":{"type":"integer","description":"The number of seconds until the access token expires."}},"required":["access_token","token_type","expires_in"],"title":"auth_postToken_Response_200"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsTimeout":{"type":"object","properties":{"default":{"type":"number","format":"double"},"worksheet":{"type":"number","format":"double"},"dashboard":{"type":"number","format":"double"},"download":{"type":"number","format":"double"}},"required":["default"],"description":"Timeout settings for the connection, with a default value in seconds","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsTimeout"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsPoolSizes":{"type":"object","properties":{"isPoolConfigured":{"type":"boolean"},"adhocPoolSize":{"type":"number","format":"double"},"catalogPoolSize":{"type":"number","format":"double"},"resultPoolSize":{"type":"number","format":"double"},"schedulePoolSize":{"type":"number","format":"double"}},"description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsPoolSizes"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebacksItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebacksItems"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebackSchemasItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebackSchemasItems"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsInputTableAuditLogSchema":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsInputTableAuditLogSchema"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType0"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType1"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType2"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType3"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType4"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType5"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType6"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType7"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType8"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType9"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType0"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType1"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType2"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType3"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType4"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType5"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType6"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType7"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType8"},{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType9"}],"description":"OAuth provider type configured or inferred for this connection.","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsUserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"description":"User attributes associated with the connection","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsUserAttributes"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsRoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections.","title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsRoleSwitching"},"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"organizationId":{"type":"string","description":"Unique identifier of the organization"},"connectionId":{"type":"string","description":"Unique identifier of the connection"},"isSample":{"type":"boolean","description":"Whether the connection is the Sigma sample data connection"},"isAuditLog":{"type":"boolean","description":"Whether audit logging is enabled"},"lastActiveAt":{"type":"string","format":"date-time","description":"Last activity date and time"},"name":{"type":"string","description":"Name of the connection"},"type":{"type":"string","description":"Type of the connection (e.g., \"bigQuery\")"},"useOauth":{"type":"boolean","description":"Whether OAuth is used"},"createdBy":{"type":"string","description":"Identifier of the user who created this connection"},"updatedBy":{"type":"string","description":"Identifier of the user or process that last updated this connection"},"createdAt":{"type":"string","format":"date-time","description":"When the connection was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the connection was last updated"},"isArchived":{"type":"boolean","description":"Whether the connection is archived"},"account":{"type":"string","description":"Account associated with the connection"},"warehouse":{"type":"string","description":"Warehouse associated with the connection"},"user":{"type":"string","description":"User associated with the connection"},"role":{"type":"string","description":"Role used by the connection user"},"timeout":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsTimeout","description":"Timeout settings for the connection, with a default value in seconds"},"poolSizes":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsPoolSizes","description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize"},"writeAccess":{"type":"boolean"},"friendlyName":{"type":"boolean","description":"Whether friendly names are enabled for this connection"},"writebacks":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebacksItems"},"description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsWritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsInputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."},"materializationWarehouse":{"type":"string","description":"Warehouse used to run materialization jobs"},"exportsWarehouse":{"type":"string","description":"Warehouse used to run export jobs"},"oauthMetadataUrl":{"type":"string","description":"OAuth metadata URL configured directly on this connection."},"oauthClientId":{"type":"string","description":"Client ID configured directly on this connection."},"oauthScopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes configured directly on this connection."},"oauthIdpType":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsOauthIdpType","description":"OAuth provider type configured or inferred for this connection."},"oauthUsePkce":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses PKCE."},"oauthUseJwt":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses JWT bearer token authentication."},"oauthAudience":{"type":"string","description":"Audience used for OAuth federation, such as the Google workforce identity federation audience for BigQuery."},"isIndependentOAuth":{"type":"boolean","description":"Whether this connection uses connection-level OAuth instead of organization-level OAuth."},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsUserAttributes","description":"User attributes associated with the connection"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItemsRoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections."}},"required":["organizationId","connectionId","isSample","isAuditLog","lastActiveAt","name","type","useOauth","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItems"},"connections_listConnections_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"connections_listConnections_Response_200"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type":{"type":"string","enum":["postgres","redshift","alloydb"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2"}],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess":{"type":"object","properties":{"writeSchema":{"type":"string"}},"required":["writeSchema"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type"},"host":{"type":"string"},"database":{"type":"string"},"user":{"type":"string"},"password":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password"},"port":{"type":"number","format":"double"},"useTls":{"type":"boolean"},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess"}},"required":["type","host","database"],"description":"Details of the PostgreSQL connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails0"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type":{"type":"string","enum":["bigQuery"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1"}],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess":{"type":"object","properties":{"writeProject":{"type":"string"},"writeDataset":{"type":"string"}},"required":["writeProject","writeDataset"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type"},"projectId":{"type":"string"},"additionalProjectIds":{"type":"array","items":{"type":"string"}},"serviceAccount":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"useOauth":{"type":"boolean","description":"Whether this BigQuery connection uses OAuth federation."},"audience":{"type":"string","description":"Google workforce identity federation audience used to exchange the OAuth token for a Google access token."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess"}},"required":["type","projectId"],"description":"Details of the BigQuery connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType":{"type":"string","enum":["basic-auth","key-pair","oauth"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser":{"type":"object","properties":{"username":{"type":"string"},"password":{"type":"string"},"role":{"type":"string"}},"required":["username","password"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser":{"type":"object","properties":{"username":{"type":"string"},"password":{"type":"string"},"role":{"type":"string"}},"required":["username","password"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets":{"type":"object","properties":{"setupUser":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser"},"pythonUser":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser"}},"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties":{"type":"object","properties":{"serviceNames":{"type":"array","items":{"type":"string"}}},"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"materializationWarehouse":{"type":"string","description":"Warehouse to use for materialization workloads"}},"required":["writeDatabase","writeSchema"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1":{"type":"object","properties":{"materializationWarehouse":{"type":"string","description":"Warehouse to use for materialization workloads"}},"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1"}],"description":"Specify write access for non-OAuth connections","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeDatabase","writeSchema"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeDatabase","writeSchema"],"description":"Specify a schema for input table write access logs","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful when `useOauth` is true.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type"},"server":{"type":"string"},"account":{"type":"string"},"host":{"type":"string"},"warehouse":{"type":"string"},"role":{"type":"string"},"authType":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType"},"usePython":{"type":"boolean"},"pythonSecrets":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets"},"pythonProperties":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties"},"useSourceSwapPolicy":{"type":"boolean"},"sourceSwapPolicyId":{"type":"string"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"exportsWarehouse":{"type":"string","description":"Warehouse to use for export workloads."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess","description":"Specify write access for non-OAuth connections"},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema","description":"Specify a schema for input table write access logs"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful when `useOauth` is true."}},"required":["type"],"description":"Details of the Snowflake connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type":{"type":"string","enum":["databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"}},"required":["writeCatalog","writeSchema"],"description":"Configure write-back for non-OAuth connections","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeCatalog","writeSchema"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeCatalog","writeSchema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type"},"host":{"type":"string"},"workspaceUrl":{"type":"string"},"useSourceSwapPolicy":{"type":"boolean"},"sourceSwapPolicyId":{"type":"string"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess","description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."}},"required":["type","host"],"description":"Details of the Databricks connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails3"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type":{"type":"string","enum":["mysql"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2"}],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess":{"type":"object","properties":{"writeSchema":{"type":"string"}},"required":["writeSchema"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type"},"user":{"type":"string"},"password":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password"},"host":{"type":"string"},"port":{"type":"number","format":"double"},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess"}},"required":["type","user","password","host","port"],"description":"Details of the MySQL connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails4"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type":{"type":"string","enum":["azuresql"],"description":"Azure SQL DB connection type.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2"}],"description":"Password used to authenticate to the database. This value is write-only and is not returned by the API.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database to contain tables written back to the data platform."},"writeSchema":{"type":"string","description":"Schema to contain tables written back to the data platform."}},"required":["writeDatabase","writeSchema"],"description":"Configure write-back for the connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type","description":"Azure SQL DB connection type."},"server":{"type":"string","description":"Fully qualified server name or host."},"database":{"type":"string","description":"Database to connect to on the Azure SQL DB server."},"port":{"type":"number","format":"double","description":"Port for the database server."},"user":{"type":"string","description":"Username used to authenticate to the database."},"password":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password","description":"Password used to authenticate to the database. This value is write-only and is not returned by the API."},"useReadUncommittedIsolation":{"type":"boolean","description":"Whether queries run with READ UNCOMMITTED transaction isolation."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess","description":"Configure write-back for the connection."}},"required":["type","server","database","port","user","password"],"description":"Details of the Azure SQL DB connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails5"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type":{"type":"string","enum":["sqlserver"],"description":"SQL Server connection type.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2"}],"description":"Password used to authenticate to the database. This value is write-only and is not returned by the API.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database to contain tables written back to the data platform."},"writeSchema":{"type":"string","description":"Schema to contain tables written back to the data platform."}},"required":["writeDatabase","writeSchema"],"description":"Configure write-back for the connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type","description":"SQL Server connection type."},"server":{"type":"string","description":"Fully qualified server name or host."},"port":{"type":"number","format":"double","description":"Port for the database server."},"user":{"type":"string","description":"Username used to authenticate to the database."},"password":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password","description":"Password used to authenticate to the database. This value is write-only and is not returned by the API."},"useReadUncommittedIsolation":{"type":"boolean","description":"Whether queries run with READ UNCOMMITTED transaction isolation."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess","description":"Configure write-back for the connection."}},"required":["type","server","port","user","password"],"description":"Details of the SQL Server connection.","title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails6"},"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails0"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails1"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails2"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails3"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails4"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails5"},{"$ref":"#/components/schemas/V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails6"}],"title":"V2ConnectionsPostRequestBodyContentApplicationJsonSchemaDetails"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaTimeout":{"type":"object","properties":{"default":{"type":"number","format":"double"},"worksheet":{"type":"number","format":"double"},"dashboard":{"type":"number","format":"double"},"download":{"type":"number","format":"double"}},"required":["default"],"description":"Timeout settings for the connection, with a default value in seconds","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaTimeout"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaPoolSizes":{"type":"object","properties":{"isPoolConfigured":{"type":"boolean"},"adhocPoolSize":{"type":"number","format":"double"},"catalogPoolSize":{"type":"number","format":"double"},"resultPoolSize":{"type":"number","format":"double"},"schedulePoolSize":{"type":"number","format":"double"}},"description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaPoolSizes"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebacksItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebacksItems"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebackSchemasItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaInputTableAuditLogSchema":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaInputTableAuditLogSchema"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType0"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType1"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType2"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType3"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType4"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType5"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType6"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType7"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType8"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType9"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType0"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType1"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType2"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType3"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType4"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType5"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType6"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType7"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType8"},{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType9"}],"description":"OAuth provider type configured or inferred for this connection.","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaUserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"description":"User attributes associated with the connection","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaUserAttributes"},"V2ConnectionsPostResponsesContentApplicationJsonSchemaRoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections.","title":"V2ConnectionsPostResponsesContentApplicationJsonSchemaRoleSwitching"},"connections_createConnection_Response_201":{"type":"object","properties":{"organizationId":{"type":"string","description":"Unique identifier of the organization"},"connectionId":{"type":"string","description":"Unique identifier of the connection"},"isSample":{"type":"boolean","description":"Whether the connection is the Sigma sample data connection"},"isAuditLog":{"type":"boolean","description":"Whether audit logging is enabled"},"lastActiveAt":{"type":"string","format":"date-time","description":"Last activity date and time"},"name":{"type":"string","description":"Name of the connection"},"type":{"type":"string","description":"Type of the connection (e.g., \"bigQuery\")"},"useOauth":{"type":"boolean","description":"Whether OAuth is used"},"createdBy":{"type":"string","description":"Identifier of the user who created this connection"},"updatedBy":{"type":"string","description":"Identifier of the user or process that last updated this connection"},"createdAt":{"type":"string","format":"date-time","description":"When the connection was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the connection was last updated"},"isArchived":{"type":"boolean","description":"Whether the connection is archived"},"account":{"type":"string","description":"Account associated with the connection"},"warehouse":{"type":"string","description":"Warehouse associated with the connection"},"user":{"type":"string","description":"User associated with the connection"},"role":{"type":"string","description":"Role used by the connection user"},"timeout":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaTimeout","description":"Timeout settings for the connection, with a default value in seconds"},"poolSizes":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaPoolSizes","description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize"},"writeAccess":{"type":"boolean"},"friendlyName":{"type":"boolean","description":"Whether friendly names are enabled for this connection"},"writebacks":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebacksItems"},"description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaInputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."},"materializationWarehouse":{"type":"string","description":"Warehouse used to run materialization jobs"},"exportsWarehouse":{"type":"string","description":"Warehouse used to run export jobs"},"oauthMetadataUrl":{"type":"string","description":"OAuth metadata URL configured directly on this connection."},"oauthClientId":{"type":"string","description":"Client ID configured directly on this connection."},"oauthScopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes configured directly on this connection."},"oauthIdpType":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaOauthIdpType","description":"OAuth provider type configured or inferred for this connection."},"oauthUsePkce":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses PKCE."},"oauthUseJwt":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses JWT bearer token authentication."},"oauthAudience":{"type":"string","description":"Audience used for OAuth federation, such as the Google workforce identity federation audience for BigQuery."},"isIndependentOAuth":{"type":"boolean","description":"Whether this connection uses connection-level OAuth instead of organization-level OAuth."},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaUserAttributes","description":"User attributes associated with the connection"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsPostResponsesContentApplicationJsonSchemaRoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections."}},"required":["organizationId","connectionId","isSample","isAuditLog","lastActiveAt","name","type","useOauth","createdBy","updatedBy","createdAt","updatedAt"],"title":"connections_createConnection_Response_201"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaTimeout":{"type":"object","properties":{"default":{"type":"number","format":"double"},"worksheet":{"type":"number","format":"double"},"dashboard":{"type":"number","format":"double"},"download":{"type":"number","format":"double"}},"required":["default"],"description":"Timeout settings for the connection, with a default value in seconds","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaTimeout"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaPoolSizes":{"type":"object","properties":{"isPoolConfigured":{"type":"boolean"},"adhocPoolSize":{"type":"number","format":"double"},"catalogPoolSize":{"type":"number","format":"double"},"resultPoolSize":{"type":"number","format":"double"},"schedulePoolSize":{"type":"number","format":"double"}},"description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaPoolSizes"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebacksItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebacksItems"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebackSchemasItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaInputTableAuditLogSchema":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaInputTableAuditLogSchema"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType0"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType1"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType2"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType3"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType4"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType5"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType6"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType7"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType8"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType9"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType9"}],"description":"OAuth provider type configured or inferred for this connection.","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaUserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"description":"User attributes associated with the connection","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaUserAttributes"},"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaRoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections.","title":"V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaRoleSwitching"},"connections_getConnection_Response_200":{"type":"object","properties":{"organizationId":{"type":"string","description":"Unique identifier of the organization"},"connectionId":{"type":"string","description":"Unique identifier of the connection"},"isSample":{"type":"boolean","description":"Whether the connection is the Sigma sample data connection"},"isAuditLog":{"type":"boolean","description":"Whether audit logging is enabled"},"lastActiveAt":{"type":"string","format":"date-time","description":"Last activity date and time"},"name":{"type":"string","description":"Name of the connection"},"type":{"type":"string","description":"Type of the connection (e.g., \"bigQuery\")"},"useOauth":{"type":"boolean","description":"Whether OAuth is used"},"createdBy":{"type":"string","description":"Identifier of the user who created this connection"},"updatedBy":{"type":"string","description":"Identifier of the user or process that last updated this connection"},"createdAt":{"type":"string","format":"date-time","description":"When the connection was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the connection was last updated"},"isArchived":{"type":"boolean","description":"Whether the connection is archived"},"account":{"type":"string","description":"Account associated with the connection"},"warehouse":{"type":"string","description":"Warehouse associated with the connection"},"user":{"type":"string","description":"User associated with the connection"},"role":{"type":"string","description":"Role used by the connection user"},"timeout":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaTimeout","description":"Timeout settings for the connection, with a default value in seconds"},"poolSizes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaPoolSizes","description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize"},"writeAccess":{"type":"boolean"},"friendlyName":{"type":"boolean","description":"Whether friendly names are enabled for this connection"},"writebacks":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebacksItems"},"description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaInputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."},"materializationWarehouse":{"type":"string","description":"Warehouse used to run materialization jobs"},"exportsWarehouse":{"type":"string","description":"Warehouse used to run export jobs"},"oauthMetadataUrl":{"type":"string","description":"OAuth metadata URL configured directly on this connection."},"oauthClientId":{"type":"string","description":"Client ID configured directly on this connection."},"oauthScopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes configured directly on this connection."},"oauthIdpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaOauthIdpType","description":"OAuth provider type configured or inferred for this connection."},"oauthUsePkce":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses PKCE."},"oauthUseJwt":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses JWT bearer token authentication."},"oauthAudience":{"type":"string","description":"Audience used for OAuth federation, such as the Google workforce identity federation audience for BigQuery."},"isIndependentOAuth":{"type":"boolean","description":"Whether this connection uses connection-level OAuth instead of organization-level OAuth."},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaUserAttributes","description":"User attributes associated with the connection"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGetResponsesContentApplicationJsonSchemaRoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections."}},"required":["organizationId","connectionId","isSample","isAuditLog","lastActiveAt","name","type","useOauth","createdBy","updatedBy","createdAt","updatedAt"],"title":"connections_getConnection_Response_200"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type":{"type":"string","enum":["postgres","redshift","alloydb"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password2"}],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess":{"type":"object","properties":{"writeSchema":{"type":"string"}},"required":["writeSchema"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Type"},"host":{"type":"string"},"database":{"type":"string"},"user":{"type":"string"},"password":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0Password"},"port":{"type":"number","format":"double"},"useTls":{"type":"boolean"},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf0WriteAccess"}},"required":["type","host","database"],"description":"Details of the PostgreSQL connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails0"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type":{"type":"string","enum":["bigQuery"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount1"}],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess":{"type":"object","properties":{"writeProject":{"type":"string"},"writeDataset":{"type":"string"}},"required":["writeProject","writeDataset"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1Type"},"projectId":{"type":"string"},"additionalProjectIds":{"type":"array","items":{"type":"string"}},"serviceAccount":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ServiceAccount"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"useOauth":{"type":"boolean","description":"Whether this BigQuery connection uses OAuth federation."},"audience":{"type":"string","description":"Google workforce identity federation audience used to exchange the OAuth token for a Google access token."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf1WriteAccess"}},"required":["type","projectId"],"description":"Details of the BigQuery connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType":{"type":"string","enum":["basic-auth","key-pair","oauth"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser":{"type":"object","properties":{"username":{"type":"string"},"password":{"type":"string"},"role":{"type":"string"}},"required":["username","password"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser":{"type":"object","properties":{"username":{"type":"string"},"password":{"type":"string"},"role":{"type":"string"}},"required":["username","password"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets":{"type":"object","properties":{"setupUser":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsSetupUser"},"pythonUser":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecretsPythonUser"}},"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties":{"type":"object","properties":{"serviceNames":{"type":"array","items":{"type":"string"}}},"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"materializationWarehouse":{"type":"string","description":"Warehouse to use for materialization workloads"}},"required":["writeDatabase","writeSchema"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1":{"type":"object","properties":{"materializationWarehouse":{"type":"string","description":"Warehouse to use for materialization workloads"}},"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess1"}],"description":"Specify write access for non-OAuth connections","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeDatabase","writeSchema"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeDatabase","writeSchema"],"description":"Specify a schema for input table write access logs","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful when `useOauth` is true.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2Type"},"server":{"type":"string"},"account":{"type":"string"},"host":{"type":"string"},"warehouse":{"type":"string"},"role":{"type":"string"},"authType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2AuthType"},"usePython":{"type":"boolean"},"pythonSecrets":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonSecrets"},"pythonProperties":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2PythonProperties"},"useSourceSwapPolicy":{"type":"boolean"},"sourceSwapPolicyId":{"type":"string"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"exportsWarehouse":{"type":"string","description":"Warehouse to use for export workloads."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WriteAccess","description":"Specify write access for non-OAuth connections"},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2UserAttributes"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2WritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2InputTableAuditLogSchema","description":"Specify a schema for input table write access logs"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf2RoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful when `useOauth` is true."}},"required":["type"],"description":"Details of the Snowflake connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type":{"type":"string","enum":["databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret1"}],"description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType9"}],"description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"}},"required":["writeCatalog","writeSchema"],"description":"Configure write-back for non-OAuth connections","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeCatalog","writeSchema"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema":{"type":"object","properties":{"writeCatalog":{"type":"string","description":"Catalog or top-level object to contain tables written back to the data platform"},"writeSchema":{"type":"string","description":"Schema or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["writeCatalog","writeSchema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3Type"},"host":{"type":"string"},"workspaceUrl":{"type":"string"},"useSourceSwapPolicy":{"type":"boolean"},"sourceSwapPolicyId":{"type":"string"},"metadataUrl":{"type":"string","description":"OAuth metadata URL for connection-level OAuth."},"clientId":{"type":"string","description":"Client ID for the OAuth application used by this connection."},"clientSecret":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3ClientSecret","description":"Client secret for the OAuth application used by this connection. This value is write-only and is not returned by the API."},"scopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes to request when users authenticate to this connection."},"idpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3IdpType","description":"OAuth provider type. Supported values are adfs, auth0, azuread, okta, ping, snowflake, aws_databricks, azure_databricks, gcp_databricks, and unknown."},"usePkce":{"type":["boolean","null"],"description":"Whether the OAuth flow should require Proof Key for Code Exchange (PKCE). Databricks-hosted OAuth providers require PKCE."},"useJwt":{"type":["boolean","null"],"description":"Whether the OAuth flow should use JWT bearer token authentication instead of a client secret."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WriteAccess","description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3WritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf3InputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."}},"required":["type","host"],"description":"Details of the Databricks connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails3"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type":{"type":"string","enum":["mysql"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password2"}],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess":{"type":"object","properties":{"writeSchema":{"type":"string"}},"required":["writeSchema"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Type"},"user":{"type":"string"},"password":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4Password"},"host":{"type":"string"},"port":{"type":"number","format":"double"},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf4WriteAccess"}},"required":["type","user","password","host","port"],"description":"Details of the MySQL connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails4"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type":{"type":"string","enum":["azuresql"],"description":"Azure SQL DB connection type.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password2"}],"description":"Password used to authenticate to the database. This value is write-only and is not returned by the API.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database to contain tables written back to the data platform."},"writeSchema":{"type":"string","description":"Schema to contain tables written back to the data platform."}},"required":["writeDatabase","writeSchema"],"description":"Configure write-back for the connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Type","description":"Azure SQL DB connection type."},"server":{"type":"string","description":"Fully qualified server name or host."},"database":{"type":"string","description":"Database to connect to on the Azure SQL DB server."},"port":{"type":"number","format":"double","description":"Port for the database server."},"user":{"type":"string","description":"Username used to authenticate to the database."},"password":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5Password","description":"Password used to authenticate to the database. This value is write-only and is not returned by the API."},"useReadUncommittedIsolation":{"type":"boolean","description":"Whether queries run with READ UNCOMMITTED transaction isolation."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf5WriteAccess","description":"Configure write-back for the connection."}},"required":["type","server","database","port","user","password"],"description":"Details of the Azure SQL DB connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails5"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type":{"type":"string","enum":["sqlserver"],"description":"SQL Server connection type.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type":{"type":"string","enum":["plain"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6PasswordOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2":{"type":"object","properties":{"secretManagerId":{"type":"string"},"secretId":{"type":"string"}},"required":["secretManagerId","secretId"],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password":{"oneOf":[{"type":"string"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password2"}],"description":"Password used to authenticate to the database. This value is write-only and is not returned by the API.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess":{"type":"object","properties":{"writeDatabase":{"type":"string","description":"Database to contain tables written back to the data platform."},"writeSchema":{"type":"string","description":"Schema to contain tables written back to the data platform."}},"required":["writeDatabase","writeSchema"],"description":"Configure write-back for the connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Type","description":"SQL Server connection type."},"server":{"type":"string","description":"Fully qualified server name or host."},"port":{"type":"number","format":"double","description":"Port for the database server."},"user":{"type":"string","description":"Username used to authenticate to the database."},"password":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6Password","description":"Password used to authenticate to the database. This value is write-only and is not returned by the API."},"useReadUncommittedIsolation":{"type":"boolean","description":"Whether queries run with READ UNCOMMITTED transaction isolation."},"writeAccess":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetailsOneOf6WriteAccess","description":"Configure write-back for the connection."}},"required":["type","server","port","user","password"],"description":"Details of the SQL Server connection.","title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails6"},"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails6"}],"title":"V2ConnectionsConnectionIdPutRequestBodyContentApplicationJsonSchemaDetails"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaTimeout":{"type":"object","properties":{"default":{"type":"number","format":"double"},"worksheet":{"type":"number","format":"double"},"dashboard":{"type":"number","format":"double"},"download":{"type":"number","format":"double"}},"required":["default"],"description":"Timeout settings for the connection, with a default value in seconds","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaTimeout"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaPoolSizes":{"type":"object","properties":{"isPoolConfigured":{"type":"boolean"},"adhocPoolSize":{"type":"number","format":"double"},"catalogPoolSize":{"type":"number","format":"double"},"resultPoolSize":{"type":"number","format":"double"},"schedulePoolSize":{"type":"number","format":"double"}},"description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaPoolSizes"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebacksItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebacksItems"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebackSchemasItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaInputTableAuditLogSchema":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaInputTableAuditLogSchema"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType0"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType1"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType2"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType3"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType4"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType5"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType6"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType7"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType8"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType9"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType9"}],"description":"OAuth provider type configured or inferred for this connection.","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaUserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"description":"User attributes associated with the connection","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaUserAttributes"},"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaRoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections.","title":"V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaRoleSwitching"},"connections_updateConnection_Response_200":{"type":"object","properties":{"organizationId":{"type":"string","description":"Unique identifier of the organization"},"connectionId":{"type":"string","description":"Unique identifier of the connection"},"isSample":{"type":"boolean","description":"Whether the connection is the Sigma sample data connection"},"isAuditLog":{"type":"boolean","description":"Whether audit logging is enabled"},"lastActiveAt":{"type":"string","format":"date-time","description":"Last activity date and time"},"name":{"type":"string","description":"Name of the connection"},"type":{"type":"string","description":"Type of the connection (e.g., \"bigQuery\")"},"useOauth":{"type":"boolean","description":"Whether OAuth is used"},"createdBy":{"type":"string","description":"Identifier of the user who created this connection"},"updatedBy":{"type":"string","description":"Identifier of the user or process that last updated this connection"},"createdAt":{"type":"string","format":"date-time","description":"When the connection was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the connection was last updated"},"isArchived":{"type":"boolean","description":"Whether the connection is archived"},"account":{"type":"string","description":"Account associated with the connection"},"warehouse":{"type":"string","description":"Warehouse associated with the connection"},"user":{"type":"string","description":"User associated with the connection"},"role":{"type":"string","description":"Role used by the connection user"},"timeout":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaTimeout","description":"Timeout settings for the connection, with a default value in seconds"},"poolSizes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaPoolSizes","description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize"},"writeAccess":{"type":"boolean"},"friendlyName":{"type":"boolean","description":"Whether friendly names are enabled for this connection"},"writebacks":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebacksItems"},"description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaInputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."},"materializationWarehouse":{"type":"string","description":"Warehouse used to run materialization jobs"},"exportsWarehouse":{"type":"string","description":"Warehouse used to run export jobs"},"oauthMetadataUrl":{"type":"string","description":"OAuth metadata URL configured directly on this connection."},"oauthClientId":{"type":"string","description":"Client ID configured directly on this connection."},"oauthScopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes configured directly on this connection."},"oauthIdpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaOauthIdpType","description":"OAuth provider type configured or inferred for this connection."},"oauthUsePkce":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses PKCE."},"oauthUseJwt":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses JWT bearer token authentication."},"oauthAudience":{"type":"string","description":"Audience used for OAuth federation, such as the Google workforce identity federation audience for BigQuery."},"isIndependentOAuth":{"type":"boolean","description":"Whether this connection uses connection-level OAuth instead of organization-level OAuth."},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaUserAttributes","description":"User attributes associated with the connection"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPutResponsesContentApplicationJsonSchemaRoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections."}},"required":["organizationId","connectionId","isSample","isAuditLog","lastActiveAt","name","type","useOauth","createdBy","updatedBy","createdAt","updatedAt"],"title":"connections_updateConnection_Response_200"},"connections_deleteConnection_Response_200":{"type":"object","properties":{},"title":"connections_deleteConnection_Response_200"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead0":{"type":"string","enum":["SUCCESS"],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead0"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead1":{"type":"string","enum":["FAILED"],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead1"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead1"}],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite0":{"type":"string","enum":["DISABLED"],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite0"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite1":{"type":"string","enum":["SUCCESS"],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite1"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite2":{"type":"string","enum":["FAILED"],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite2"},"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite2"}],"title":"V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite"},"connections_testConnection_Response_200":{"type":"object","properties":{"read":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaRead"},"write":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdTestGetResponsesContentApplicationJsonSchemaWrite"}},"required":["read","write"],"title":"connections_testConnection_Response_200"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaTimeout":{"type":"object","properties":{"default":{"type":"number","format":"double"},"worksheet":{"type":"number","format":"double"},"dashboard":{"type":"number","format":"double"},"download":{"type":"number","format":"double"}},"required":["default"],"description":"Timeout settings for the connection, with a default value in seconds","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaTimeout"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaPoolSizes":{"type":"object","properties":{"isPoolConfigured":{"type":"boolean"},"adhocPoolSize":{"type":"number","format":"double"},"catalogPoolSize":{"type":"number","format":"double"},"resultPoolSize":{"type":"number","format":"double"},"schedulePoolSize":{"type":"number","format":"double"}},"description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaPoolSizes"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebacksItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebacksItems"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebackSchemasItems":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaInputTableAuditLogSchema":{"type":"object","properties":{"database":{"type":"string","description":"Database, catalog, or top-level object to contain tables written back to the data platform"},"schema":{"type":"string","description":"Schema, database, or second-level object to contain tables written back to the data platform"},"writebackSchemaId":{"type":"string","description":"Unique identifier of the writebackSchema"}},"required":["database","schema"],"description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection.","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaInputTableAuditLogSchema"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType0":{"type":"string","enum":["aws_databricks"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType0"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType1":{"type":"string","enum":["azure_databricks"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType1"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType2":{"type":"string","enum":["gcp_databricks"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType2"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType3":{"type":"string","enum":["azuread"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType3"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType4":{"type":"string","enum":["auth0"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType4"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType5":{"type":"string","enum":["adfs"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType5"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType6":{"type":"string","enum":["okta"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType6"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType7":{"type":"string","enum":["ping"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType7"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType8":{"type":"string","enum":["snowflake"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType8"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType9":{"type":"string","enum":["unknown"],"title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType9"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType2"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType3"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType4"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType5"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType6"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType7"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType8"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType9"}],"description":"OAuth provider type configured or inferred for this connection.","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaUserAttributes":{"type":"object","properties":{"role":{"type":"string"},"warehouse":{"type":"string"}},"description":"User attributes associated with the connection","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaUserAttributes"},"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaRoleSwitching":{"type":"string","enum":["allRoles","disabled"],"description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections.","title":"V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaRoleSwitching"},"connections_updateConnectionDeprecated_Response_200":{"type":"object","properties":{"organizationId":{"type":"string","description":"Unique identifier of the organization"},"connectionId":{"type":"string","description":"Unique identifier of the connection"},"isSample":{"type":"boolean","description":"Whether the connection is the Sigma sample data connection"},"isAuditLog":{"type":"boolean","description":"Whether audit logging is enabled"},"lastActiveAt":{"type":"string","format":"date-time","description":"Last activity date and time"},"name":{"type":"string","description":"Name of the connection"},"type":{"type":"string","description":"Type of the connection (e.g., \"bigQuery\")"},"useOauth":{"type":"boolean","description":"Whether OAuth is used"},"createdBy":{"type":"string","description":"Identifier of the user who created this connection"},"updatedBy":{"type":"string","description":"Identifier of the user or process that last updated this connection"},"createdAt":{"type":"string","format":"date-time","description":"When the connection was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the connection was last updated"},"isArchived":{"type":"boolean","description":"Whether the connection is archived"},"account":{"type":"string","description":"Account associated with the connection"},"warehouse":{"type":"string","description":"Warehouse associated with the connection"},"user":{"type":"string","description":"User associated with the connection"},"role":{"type":"string","description":"Role used by the connection user"},"timeout":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaTimeout","description":"Timeout settings for the connection, with a default value in seconds"},"poolSizes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaPoolSizes","description":"Pool sizes for the connection, such as for adhocPoolSize or schedulePoolSize"},"writeAccess":{"type":"boolean"},"friendlyName":{"type":"boolean","description":"Whether friendly names are enabled for this connection"},"writebacks":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebacksItems"},"description":"Configure write-back for non-OAuth connections"},"writebackSchemas":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaWritebackSchemasItems"},"description":"Configure write-back for OAuth connections"},"inputTableAuditLogSchema":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaInputTableAuditLogSchema","description":"Schema to use for the input table write-ahead log (WAL). Cannot be changed without breaking write behavior on this connection."},"materializationWarehouse":{"type":"string","description":"Warehouse used to run materialization jobs"},"exportsWarehouse":{"type":"string","description":"Warehouse used to run export jobs"},"oauthMetadataUrl":{"type":"string","description":"OAuth metadata URL configured directly on this connection."},"oauthClientId":{"type":"string","description":"Client ID configured directly on this connection."},"oauthScopes":{"type":"array","items":{"type":"string"},"description":"OAuth scopes configured directly on this connection."},"oauthIdpType":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaOauthIdpType","description":"OAuth provider type configured or inferred for this connection."},"oauthUsePkce":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses PKCE."},"oauthUseJwt":{"type":["boolean","null"],"description":"Whether this connection-level OAuth configuration uses JWT bearer token authentication."},"oauthAudience":{"type":"string","description":"Audience used for OAuth federation, such as the Google workforce identity federation audience for BigQuery."},"isIndependentOAuth":{"type":"boolean","description":"Whether this connection uses connection-level OAuth instead of organization-level OAuth."},"userAttributes":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaUserAttributes","description":"User attributes associated with the connection"},"roleSwitching":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdPatchResponsesContentApplicationJsonSchemaRoleSwitching","description":"Whether a Snowflake OAuth connection allows users to switch roles when running queries. Only meaningful for Snowflake OAuth connections."}},"required":["organizationId","connectionId","isSample","isAuditLog","lastActiveAt","name","type","useOauth","createdBy","updatedBy","createdAt","updatedAt"],"title":"connections_updateConnectionDeprecated_Response_200"},"connections_postConnectionDbtArtifacts_Response_201":{"type":"object","properties":{},"title":"connections_postConnectionDbtArtifacts_Response_201"},"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"},"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"}],"description":"The permission granted to the member","title":"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission"},"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"connections_listConnectionGrants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"connections_listConnectionGrants_Response_200"},"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"The UUID of the member receiving the grant","title":"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"The UUID of the team receiving the grant","title":"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"},"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"}],"title":"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission":{"type":"string","enum":["annotate","usage"],"description":"Connection permissions of Can Use & Annotate and Can Use.","title":"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"permission":{"$ref":"#/components/schemas/V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission","description":"Connection permissions of Can Use & Annotate and Can Use."}},"required":["grantee","permission"],"title":"V2ConnectionsConnectionIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"},"connections_createConnectionGrant_Response_200":{"type":"object","properties":{},"title":"connections_createConnectionGrant_Response_200"},"connections_deleteConnectionGrant_Response_200":{"type":"object","properties":{},"title":"connections_deleteConnectionGrant_Response_200"},"V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItemsPath":{"oneOf":[{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"description":"Any type"}}],"title":"V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItemsPath"},"V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"connectionId":{"type":"string"},"urlId":{"type":"string"},"path":{"$ref":"#/components/schemas/V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItemsPath"}},"required":["connectionId","urlId","path"],"title":"V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItems"},"connections_listConnectionPaths_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPathsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"connections_listConnectionPaths_Response_200"},"V2ConnectionsPathsInodeIdGetResponsesContentApplicationJsonSchemaPath":{"oneOf":[{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"description":"Any type"}}],"title":"V2ConnectionsPathsInodeIdGetResponsesContentApplicationJsonSchemaPath"},"connections_getInodeConnectionPath_Response_200":{"type":"object","properties":{"connectionId":{"type":"string"},"path":{"$ref":"#/components/schemas/V2ConnectionsPathsInodeIdGetResponsesContentApplicationJsonSchemaPath"}},"required":["connectionId","path"],"title":"connections_getInodeConnectionPath_Response_200"},"V2ConnectionConnectionIdLookupPostRequestBodyContentApplicationJsonSchemaPath":{"oneOf":[{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"description":"Any type"}}],"title":"V2ConnectionConnectionIdLookupPostRequestBodyContentApplicationJsonSchemaPath"},"V2ConnectionConnectionIdLookupPostResponsesContentApplicationJsonSchemaKind":{"type":"string","enum":["scope","table","semanticView","metricView","stored-procedure"],"title":"V2ConnectionConnectionIdLookupPostResponsesContentApplicationJsonSchemaKind"},"connections_lookupConnection_Response_200":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/V2ConnectionConnectionIdLookupPostResponsesContentApplicationJsonSchemaKind"},"inodeId":{"type":"string"},"url":{"type":"string"}},"required":["kind","inodeId","url"],"title":"connections_lookupConnection_Response_200"},"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType":{"type":"object","properties":{},"description":"The column's data type, represented as a recursive type object.","title":"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility":{"type":"string","enum":["included","hidden","removed"],"description":"Visibility of the column. If \"included\", the column is visible. If \"hidden\", the column is hidden but available to be used. If \"removed\", the column has been deleted from the table.","title":"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility"},"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"name":{"type":"string","description":"The name of the column in the warehouse table."},"type":{"$ref":"#/components/schemas/V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType","description":"The column's data type, represented as a recursive type object."},"visibility":{"$ref":"#/components/schemas/V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility","description":"Visibility of the column. If \"included\", the column is visible. If \"hidden\", the column is hidden but available to be used. If \"removed\", the column has been deleted from the table."},"description":{"type":"string","description":"The description of the column, if one has been set."}},"required":["name","type","visibility"],"title":"V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"},"connections_listConnectionTableColumns_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsTablesTableIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"connections_listConnectionTableColumns_Response_200"},"V2ConnectionsConnectionIdSyncPostRequestBodyContentApplicationJsonSchemaPath":{"oneOf":[{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"type":"string"}},{"type":"array","items":{"description":"Any type"}}],"title":"V2ConnectionsConnectionIdSyncPostRequestBodyContentApplicationJsonSchemaPath"},"connections_syncConnectionPath_Response_200":{"type":"object","properties":{},"title":"connections_syncConnectionPath_Response_200"},"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"},"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"}],"description":"The permission granted to the member","title":"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission"},"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"connections_listConnectionPathGrants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"hasMore":{"type":"boolean","description":"**[Deprecated]** Indicates whether more results are available."}},"required":["entries","nextPage"],"title":"connections_listConnectionPathGrants_Response_200"},"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"The UUID of the member receiving the grant","title":"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"The UUID of the team receiving the grant","title":"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"},"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"}],"title":"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission":{"type":"string","enum":["annotate","usage"],"title":"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"permission":{"$ref":"#/components/schemas/V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"}},"required":["grantee","permission"],"title":"V2ConnectionsPathsConnectionPathIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"},"connections_createConnectionPathGrant_Response_200":{"type":"object","properties":{},"title":"connections_createConnectionPathGrant_Response_200"},"connections_deleteConnectionPathGrant_Response_200":{"type":"object","properties":{},"title":"connections_deleteConnectionPathGrant_Response_200"},"V2CredentialsPostRequestBodyContentApplicationJsonSchemaScopesItems":{"type":"string","enum":["api","embed"],"title":"V2CredentialsPostRequestBodyContentApplicationJsonSchemaScopesItems"},"credentials_createCredentials_Response_200":{"type":"object","properties":{"clientId":{"type":"string"},"clientSecret":{"type":"string"}},"required":["clientId","clientSecret"],"title":"credentials_createCredentials_Response_200"},"credentials_deleteCredentials_Response_200":{"type":"object","properties":{},"title":"credentials_deleteCredentials_Response_200"},"V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","tagName","sourceVersion","taggedAt"],"title":"V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"dataModelId":{"type":"string","description":"Unique identifier of the data model."},"dataModelUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}}},"required":["dataModelId","dataModelUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModels_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"dataModels_listDataModels_Response_200"},"V2DataModelsDataModelIdGetResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","tagName","sourceVersion","taggedAt"],"title":"V2DataModelsDataModelIdGetResponsesContentApplicationJsonSchemaTagsItems"},"dataModels_getDataModel_Response_200":{"type":"object","properties":{"dataModelId":{"type":"string","description":"Unique identifier of the data model."},"dataModelUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdGetResponsesContentApplicationJsonSchemaTagsItems"}}},"required":["dataModelId","dataModelUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"dataModels_getDataModel_Response_200"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["data-model"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"dataModelId":{"type":"string"},"elementIds":{"type":"array","items":{"type":"string"},"description":"IDs of elements that make up this data model’s sources."},"versionTagId":{"type":"string"}},"required":["type","dataModelId","elementIds"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type":{"type":"string","enum":["dataset"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"datasetId":{"type":"string"}},"required":["type","datasetId"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type":{"type":"string","enum":["table"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"tableId":{"type":"string"}},"required":["type","tableId"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems2"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type":{"type":"string","enum":["custom-sql"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"connectionId":{"type":"string","description":"ID of the connection where the custom SQL element is run."},"definition":{"type":"string","description":"Raw SQL definition for the custom SQL element."},"customSqlId":{"type":"string","description":"Element ID of the custom SQL."}},"required":["type","connectionId","definition","customSqlId"],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems3"},"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems1"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems2"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems3"}],"title":"V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModelSources_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSourcesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"dataModels_listDataModelSources_Response_200"},"V2DataModelsDataModelIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","tagName","sourceVersion","taggedAt"],"title":"V2DataModelsDataModelIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModelTags_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"dataModels_listDataModelTags_Response_200"},"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems":{"type":"object","properties":{"fromPath":{"type":"array","items":{"type":"string"}},"toPath":{"type":"array","items":{"type":"string"}}},"required":["fromPath","toPath"],"title":"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems"},"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems":{"type":"object","properties":{"fromConnectionId":{"type":"string"},"toConnectionId":{"type":"string"},"paths":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems"}}},"required":["fromConnectionId","toConnectionId","paths"],"title":"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems"},"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems":{"type":"object","properties":{"dataModelId":{"type":"string"},"fromVersionTagId":{"type":["string","null"]},"toVersionTagId":{"type":["string","null"]}},"required":["dataModelId","fromVersionTagId","toVersionTagId"],"title":"V2DataModelsTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems"},"dataModels_tagDataModel_Response_200":{"type":"object","properties":{"versionTagId":{"type":"string"},"taggedDataModelId":{"type":"string","description":"Unique identifier of the data model."},"taggedDataModelVersion":{"type":"number","format":"double"}},"required":["versionTagId","taggedDataModelId","taggedDataModelVersion"],"title":"dataModels_tagDataModel_Response_200"},"V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"Cron expression to use for the schedule"},"timezone":{"type":"string","description":"Timezone code, for example, PST"}},"title":"V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier of the materialization schedule for the element"},"elementName":{"type":"string"},"schedule":{"oneOf":[{"$ref":"#/components/schemas/V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},{"type":"null"}]},"configuredAt":{"type":"string","format":"date-time"},"paused":{"type":"boolean"}},"required":["sheetId","elementName","schedule","configuredAt","paused"],"title":"V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModelMaterializationSchedules_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"dataModels_listDataModelMaterializationSchedules_Response_200"},"dataModels_getDataModelMaterialization_Response_200":{"type":"object","properties":{"materializationId":{"type":"string"},"status":{"type":"string"},"startedAt":{"type":"string","format":"date-time"},"readyAt":{"type":"string","format":"date-time"},"expiredAt":{"type":"string","format":"date-time"},"error":{"type":"string"}},"required":["materializationId","status"],"title":"dataModels_getDataModelMaterialization_Response_200"},"dataModels_materializeDataModelElement_Response_200":{"type":"object","properties":{"materializationId":{"type":"string"}},"required":["materializationId"],"title":"dataModels_materializeDataModelElement_Response_200"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems":{"type":"object","properties":{"fromMetric":{"type":"string","description":"Metric in the data source."},"toMetric":{"type":"string","description":"Metric in the data source."}},"required":["fromMetric","toMetric"],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems":{"type":"object","properties":{"fromColumn":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"toColumn":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"}},"required":["fromColumn","toColumn"],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap from."},"toId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap to."},"metricMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"}},"columnMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"}}},"required":["fromId","toId"],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems":{"type":"object","properties":{"fromPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"},"toPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"}},"required":["fromPath","toPath"],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"},"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the connection to swap from."},"toId":{"type":"string","description":"ID of the connection to swap to."},"swapTables":{"type":"boolean","description":"Whether to swap all tables in the connection"},"paths":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"}}},"required":["fromId","toId"],"title":"V2DataModelsDataModelIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"},"dataModels_swapDataModelSources_Response_200":{"type":"object","properties":{"unswappedSources":{"type":"array","items":{"type":"string"},"description":"IDs of sources in the workbook that were not swapped."},"unswappedConnections":{"type":"array","items":{"type":"string"},"description":"IDs of custom SQL connections in the workbook that were not swapped."}},"required":["unswappedSources","unswappedConnections"],"title":"dataModels_swapDataModelSources_Response_200"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"sourceIds":{"type":["array","null"],"items":{"type":"string"},"description":"List of direct sources for the element. Either element IDs or data source IDs."},"elementId":{"type":"string","description":"Unique identifier of the element"},"dataSourceIds":{"type":["array","null"],"items":{"type":"string"},"description":"List of root sources for the element as data source IDs."}},"required":["type","sourceIds","elementId","dataSourceIds"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"dataModelId":{"type":"string"}},"required":["type","connectionId","name","dataModelId"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"inodeId":{"type":"string"}},"required":["type","connectionId","name","inodeId"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"definition":{"type":"string"}},"required":["type","connectionId","name","definition"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"csvId":{"type":"string","description":"Unique identifier of the uploaded CSV file"}},"required":["type","connectionId","name","csvId"],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4"},"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3"},{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4"}],"title":"V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModelLineageTree_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"dataModels_listDataModelLineageTree_Response_200"},"V2DataModelsDataModelIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"elementId":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"columns":{"type":"array","items":{"type":"string"}},"vizualizationType":{"type":"string"},"error":{"type":"string"}},"required":["elementId"],"title":"V2DataModelsDataModelIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_listDataModelElements_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"dataModels_listDataModelElements_Response_200"},"V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType":{"type":"object","properties":{},"description":"The column's data type, represented as a recursive type object.","title":"V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"columnId":{"type":"string","description":"Column ID"},"name":{"type":"string","description":"Column name"},"formula":{"type":"string","description":"Column formula or source column reference."},"type":{"$ref":"#/components/schemas/V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType","description":"The column's data type, represented as a recursive type object."},"elementId":{"type":"string","description":"Element ID"}},"required":["columnId","name","formula","type","elementId"],"title":"V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"},"dataModels_getDataModelColumns_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DataModelsDataModelIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"dataModels_getDataModelColumns_Response_200"},"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationToDataModel":{"type":"object","properties":{"dataModelId":{"type":"string"},"dataModelUrl":{"type":"string"},"migratedAt":{"type":"string","format":"date-time"},"migratedBy":{"type":"string"}},"required":["dataModelId","dataModelUrl","migratedAt","migratedBy"],"description":"Details about migration to data model","title":"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationToDataModel"},"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationStatus":{"type":"string","enum":["migrated","not-migrated","not-required"],"description":"An indicator of the dataset's migration status as displayed on the dataset migration admin page.\n  - `not-required` indicates that the dataset is not used as a data source (in other words, it is not referenced by other documents) and likely does not need to be migrated to a data model.\n  - `migrated` indicates that the dataset has already been migrated to a data model\n  - `not-migrated` indicates that the dataset has not been migrated and is still in use as a data source\n        ","title":"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationStatus"},"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"datasetId":{"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"},"url":{"type":"string"},"owner":{"type":"string"},"referenceCount":{"type":"number","format":"double","description":"Count of inbound references to the dataset"},"path":{"type":"string","description":"Path describing dataset's ancestor workspace and folders"},"migrationToDataModel":{"oneOf":[{"$ref":"#/components/schemas/V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationToDataModel"},{"type":"null"}],"description":"Details about migration to data model"},"migrationStatus":{"$ref":"#/components/schemas/V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItemsMigrationStatus","description":"An indicator of the dataset's migration status as displayed on the dataset migration admin page.\n  - `not-required` indicates that the dataset is not used as a data source (in other words, it is not referenced by other documents) and likely does not need to be migrated to a data model.\n  - `migrated` indicates that the dataset has already been migrated to a data model\n  - `not-migrated` indicates that the dataset has not been migrated and is still in use as a data source\n        "},"isArchived":{"type":"boolean"}},"required":["datasetId","createdBy","updatedBy","createdAt","updatedAt","name","description","url","owner","referenceCount","path","migrationToDataModel","migrationStatus"],"title":"V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItems"},"datasets_listDatasets_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DatasetsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"datasets_listDatasets_Response_200"},"V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationToDataModel":{"type":"object","properties":{"dataModelId":{"type":"string"},"dataModelUrl":{"type":"string"},"migratedAt":{"type":"string","format":"date-time"},"migratedBy":{"type":"string"}},"required":["dataModelId","dataModelUrl","migratedAt","migratedBy"],"description":"Details about migration to data model","title":"V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationToDataModel"},"V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationStatus":{"type":"string","enum":["migrated","not-migrated","not-required"],"description":"An indicator of the dataset's migration status as displayed on the dataset migration admin page.\n  - `not-required` indicates that the dataset is not used as a data source (in other words, it is not referenced by other documents) and likely does not need to be migrated to a data model.\n  - `migrated` indicates that the dataset has already been migrated to a data model\n  - `not-migrated` indicates that the dataset has not been migrated and is still in use as a data source\n        ","title":"V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationStatus"},"datasets_getDataset_Response_200":{"type":"object","properties":{"datasetId":{"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"},"url":{"type":"string"},"owner":{"type":"string"},"referenceCount":{"type":"number","format":"double","description":"Count of inbound references to the dataset"},"path":{"type":"string","description":"Path describing dataset's ancestor workspace and folders"},"migrationToDataModel":{"oneOf":[{"$ref":"#/components/schemas/V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationToDataModel"},{"type":"null"}],"description":"Details about migration to data model"},"migrationStatus":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGetResponsesContentApplicationJsonSchemaMigrationStatus","description":"An indicator of the dataset's migration status as displayed on the dataset migration admin page.\n  - `not-required` indicates that the dataset is not used as a data source (in other words, it is not referenced by other documents) and likely does not need to be migrated to a data model.\n  - `migrated` indicates that the dataset has already been migrated to a data model\n  - `not-migrated` indicates that the dataset has not been migrated and is still in use as a data source\n        "},"isArchived":{"type":"boolean"}},"required":["datasetId","createdBy","updatedBy","createdAt","updatedAt","name","description","url","owner","referenceCount","path","migrationToDataModel","migrationStatus"],"title":"datasets_getDataset_Response_200"},"V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItemsType":{"type":"string","enum":["dataset","table"],"title":"V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItemsType"},"V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItemsType"},"inodeId":{"type":"string"}},"required":["type","inodeId"],"title":"V2DatasetsDatasetIdSourcesGetResponsesContentApplicationJsonSchemaItems"},"datasets_materializeDataset_Response_200":{"type":"object","properties":{"taskId":{"type":"string"}},"required":["taskId"],"title":"datasets_materializeDataset_Response_200"},"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsStatus":{"type":"string","enum":["success","failed","marked","swept"],"title":"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsStatus"},"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsError":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":["string","null"]},"errorCode":{"type":["string","null"]}},"required":["code","message"],"title":"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsError"},"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsStatus"},"finishedAt":{"type":"string","format":"date-time"},"error":{"$ref":"#/components/schemas/V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItemsError"},"runtimeSecs":{"type":["number","null"],"format":"double"},"numRows":{"type":["number","null"],"format":"double"},"numBytes":{"type":["number","null"],"format":"double"}},"required":["status","finishedAt","error","runtimeSecs","numRows","numBytes"],"title":"V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItems"},"datasets_listDatasetMaterializations_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DatasetsDatasetIdMaterializationGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"datasets_listDatasetMaterializations_Response_200"},"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"},"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission":{"oneOf":[{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"}],"description":"The permission granted to the member","title":"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission"},"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"datasets_listDatasetGrants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"datasets_listDatasetGrants_Response_200"},"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"The UUID of the member receiving the grant","title":"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"The UUID of the team receiving the grant","title":"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"},"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"}],"title":"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission":{"type":"string","enum":["view","edit"],"title":"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"permission":{"$ref":"#/components/schemas/V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"tagId":{"type":"string"}},"required":["grantee","permission"],"title":"V2DatasetsDatasetIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"},"datasets_createDatasetGrant_Response_200":{"type":"object","properties":{},"title":"datasets_createDatasetGrant_Response_200"},"datasets_deleteDatasetGrant_Response_200":{"type":"object","properties":{},"title":"datasets_deleteDatasetGrant_Response_200"},"V2DeploymentPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"deploymentPolicyId":{"type":"string"},"name":{"type":"string","description":"Name of the deployment policy"},"nameInTenant":{"type":"string","description":"Name to use for the workspace created by the deployment policy in the receiving tenant."},"versionTagId":{"type":["string","null"]},"sourceSwapPolicies":{"type":"array","items":{"type":"string"},"description":"Unique identifiers of the source swap policies used to swap connections when deploying documents."},"copyInputTableData":{"type":"boolean","description":"Whether input table data is copied to receiving tenant organizations when deploying documents. Only applies to input tables that are editable in draft mode."}},"required":["deploymentPolicyId","name","nameInTenant","versionTagId","sourceSwapPolicies","copyInputTableData"],"title":"V2DeploymentPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems"},"deploymentPolicies_listDeployments_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DeploymentPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"deploymentPolicies_listDeployments_Response_200"},"deploymentPolicies_getDeployment_Response_200":{"type":"object","properties":{"deploymentPolicyId":{"type":"string"},"name":{"type":"string","description":"Name of the deployment policy"},"nameInTenant":{"type":"string","description":"Name to use for the workspace created by the deployment policy in the receiving tenant."},"versionTagId":{"type":["string","null"]},"sourceSwapPolicies":{"type":"array","items":{"type":"string"},"description":"Unique identifiers of the source swap policies used to swap connections when deploying documents."},"copyInputTableData":{"type":"boolean","description":"Whether input table data is copied to receiving tenant organizations when deploying documents. Only applies to input tables that are editable in draft mode."}},"required":["deploymentPolicyId","name","nameInTenant","versionTagId","sourceSwapPolicies","copyInputTableData"],"title":"deploymentPolicies_getDeployment_Response_200"},"deploymentPolicies_createDeployment_Response_200":{"type":"object","properties":{"deploymentPolicyId":{"type":"string"}},"required":["deploymentPolicyId"],"title":"deploymentPolicies_createDeployment_Response_200"},"deploymentPolicies_updateDeployment_Response_200":{"type":"object","properties":{"deploymentPolicyId":{"type":"string"},"name":{"type":"string","description":"Name of the deployment policy"},"nameInTenant":{"type":"string","description":"Name to use for the workspace created by the deployment policy in the receiving tenant."},"versionTagId":{"type":["string","null"]},"sourceSwapPolicies":{"type":"array","items":{"type":"string"},"description":"Unique identifiers of the source swap policies used to swap connections when deploying documents."},"copyInputTableData":{"type":"boolean","description":"Whether input table data is copied to receiving tenant organizations when deploying documents. Only applies to input tables that are editable in draft mode."}},"required":["deploymentPolicyId","name","nameInTenant","versionTagId","sourceSwapPolicies","copyInputTableData"],"title":"deploymentPolicies_updateDeployment_Response_200"},"deploymentPolicies_listTenantsForDeployment_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"type":"string"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"deploymentPolicies_listTenantsForDeployment_Response_200"},"deploymentPolicies_archiveDeployment_Response_200":{"type":"object","properties":{},"title":"deploymentPolicies_archiveDeployment_Response_200"},"deploymentPolicies_addInodesToDeployment_Response_200":{"type":"object","properties":{},"title":"deploymentPolicies_addInodesToDeployment_Response_200"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf0Type":{"type":"string","enum":["workbook"],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf0Type"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode0":{"type":"object","properties":{"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf0Type"},"workbookId":{"type":"string"}},"required":["name","type","workbookId"],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode0"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf1Type":{"type":"string","enum":["dataModel"],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf1Type"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode1":{"type":"object","properties":{"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInodeOneOf1Type"},"dataModelId":{"type":"string"}},"required":["name","type","dataModelId"],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode1"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode":{"oneOf":[{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode0"},{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode1"}],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode"},"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"inodeId":{"type":"string"},"inode":{"oneOf":[{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsInode"},{"type":"null"}]},"deploymentPolicyId":{"type":"string"}},"required":["inodeId","inode","deploymentPolicyId"],"title":"V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems"},"deploymentPolicies_listInodesForDeployment_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DeploymentPoliciesDeploymentPolicyIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"deploymentPolicies_listInodesForDeployment_Response_200"},"deploymentPolicies_removeInodesFromDeployment_Response_200":{"type":"object","properties":{},"title":"deploymentPolicies_removeInodesFromDeployment_Response_200"},"V2DeploymentPoliciesTenantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of a tenant organization that can be deployed to."},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization."},"tenantOrganizationName":{"type":"string","description":"Display name of the tenant organization."}},"required":["tenantOrganizationId","tenantOrganizationSlug","tenantOrganizationName"],"title":"V2DeploymentPoliciesTenantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"deploymentPolicies_listDeployableTenants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2DeploymentPoliciesTenantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"deploymentPolicies_listDeployableTenants_Response_200"},"deploymentPolicies_addTenantToDeployment_Response_200":{"type":"object","properties":{},"title":"deploymentPolicies_addTenantToDeployment_Response_200"},"deploymentPolicies_removeTenantFromDeployment_Response_200":{"type":"object","properties":{},"title":"deploymentPolicies_removeTenantFromDeployment_Response_200"},"favorites_addFavorite_Response_200":{"type":"object","properties":{},"title":"favorites_addFavorite_Response_200"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0":{"type":"string","enum":["create"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1":{"type":"string","enum":["annotate"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2":{"type":"string","enum":["organize"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3":{"type":"string","enum":["explore"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40":{"type":"string","enum":["view"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41":{"type":"string","enum":["edit"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42":{"type":"string","enum":["apply"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4":{"oneOf":[{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"}],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission":{"oneOf":[{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"}],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"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":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"code":{"type":"number","format":"double"},"message":{"type":"string"},"requestId":{"type":"string"}},"required":["code","message","requestId"],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems"},"favorites_listFavorites_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2FavoritesMemberMemberIdGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"favorites_listFavorites_Response_200"},"favorites_removeFavorite_Response_200":{"type":"object","properties":{},"title":"favorites_removeFavorite_Response_200"},"V2FilesGetParametersPermissionFilter0":{"type":"string","enum":["view","explore","edit"],"title":"V2FilesGetParametersPermissionFilter0"},"V2FilesGetParametersPermissionFilter1":{"type":"string","enum":["view","explore","organize","edit"],"description":"Choose **organize** for Can Contribute permissions or **edit** for Can Manage permissions.","title":"V2FilesGetParametersPermissionFilter1"},"V2FilesGetParametersPermissionFilter":{"oneOf":[{"$ref":"#/components/schemas/V2FilesGetParametersPermissionFilter0"},{"$ref":"#/components/schemas/V2FilesGetParametersPermissionFilter1"}],"title":"V2FilesGetParametersPermissionFilter"},"V2FilesGetParametersTypeFiltersSchemaOneOf0Items":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesGetParametersTypeFiltersSchemaOneOf0Items"},"V2FilesGetParametersTypeFilters0":{"type":"array","items":{"$ref":"#/components/schemas/V2FilesGetParametersTypeFiltersSchemaOneOf0Items"},"description":"**Note**: Workspaces are not returned as part of the response. To retrieve a workspace, use the **Single Document Type**.","title":"V2FilesGetParametersTypeFilters0"},"V2FilesGetParametersTypeFilters1":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesGetParametersTypeFilters1"},"V2FilesGetParametersTypeFilters":{"oneOf":[{"$ref":"#/components/schemas/V2FilesGetParametersTypeFilters0"},{"$ref":"#/components/schemas/V2FilesGetParametersTypeFilters1"}],"title":"V2FilesGetParametersTypeFilters"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0":{"type":"string","enum":["create"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1":{"type":"string","enum":["annotate"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2":{"type":"string","enum":["organize"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3":{"type":"string","enum":["explore"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40":{"type":"string","enum":["view"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41":{"type":"string","enum":["edit"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42":{"type":"string","enum":["apply"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4":{"oneOf":[{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"}],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission":{"oneOf":[{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"}],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"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":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"code":{"type":"number","format":"double"},"message":{"type":"string"},"requestId":{"type":"string"}},"required":["code","message","requestId"],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems"},"files_list_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2FilesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"files_list_Response_200"},"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf0Type":{"type":"string","enum":["workspace"],"title":"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf0Type"},"FilesCreateRequest0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf0Type"},"name":{"type":"string"}},"required":["type","name"],"description":"Workspace to create","title":"FilesCreateRequest0"},"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf1Type":{"type":"string","enum":["folder"],"title":"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf1Type"},"FilesCreateRequest1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf1Type"},"name":{"type":"string"},"description":{"type":"string"},"ownerId":{"type":"string"},"parentId":{"type":"string"}},"required":["type","name"],"description":"Folder to create","title":"FilesCreateRequest1"},"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Type":{"type":"string","enum":["workbook"],"title":"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Type"},"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Source":{"type":"object","properties":{"inodeId":{"type":"string"},"version":{"type":"number","format":"double"}},"required":["inodeId","version"],"title":"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Source"},"FilesCreateRequest2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Type"},"name":{"type":"string"},"description":{"type":"string"},"ownerId":{"type":"string"},"parentId":{"type":"string"},"source":{"$ref":"#/components/schemas/V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf2Source"}},"required":["type","name"],"description":"Workbook to create","title":"FilesCreateRequest2"},"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf3Type":{"type":"string","enum":["report"],"title":"V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf3Type"},"FilesCreateRequest3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2FilesPostRequestBodyContentApplicationJsonSchemaOneOf3Type"},"name":{"type":"string"},"description":{"type":"string"},"ownerId":{"type":"string"},"parentId":{"type":"string"}},"required":["type","name"],"description":"Report to create","title":"FilesCreateRequest3"},"files_create_Request":{"oneOf":[{"$ref":"#/components/schemas/FilesCreateRequest0"},{"$ref":"#/components/schemas/FilesCreateRequest1"},{"$ref":"#/components/schemas/FilesCreateRequest2"},{"$ref":"#/components/schemas/FilesCreateRequest3"}],"title":"files_create_Request"},"V2FilesPostResponsesContentApplicationJsonSchemaType":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaType"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["create"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission0"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["annotate"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission1"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["organize"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission2"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission3":{"type":"string","enum":["explore"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission3"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission40":{"type":"string","enum":["view"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission40"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission41":{"type":"string","enum":["edit"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission41"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission42":{"type":"string","enum":["apply"],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission42"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission4":{"oneOf":[{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission40"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission41"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission42"}],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission4"},"V2FilesPostResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission2"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission3"},{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission4"}],"title":"V2FilesPostResponsesContentApplicationJsonSchemaPermission"},"files_create_Response_200":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaType"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2FilesPostResponsesContentApplicationJsonSchemaPermission"},"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":"files_create_Response_200"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaType":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaType"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["create"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission0"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["annotate"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission1"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["organize"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission2"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission3":{"type":"string","enum":["explore"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission3"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission40":{"type":"string","enum":["view"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission40"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission41":{"type":"string","enum":["edit"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission41"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission42":{"type":"string","enum":["apply"],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission42"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission4":{"oneOf":[{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission40"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission41"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission42"}],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission4"},"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission2"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission3"},{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission4"}],"title":"V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission"},"files_get_Response_200":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaType"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2FilesInodeIdGetResponsesContentApplicationJsonSchemaPermission"},"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":"files_get_Response_200"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaType":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaType"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["create"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission0"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["annotate"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission1"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["organize"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission2"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission3":{"type":"string","enum":["explore"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission3"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission40":{"type":"string","enum":["view"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission40"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission41":{"type":"string","enum":["edit"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission41"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission42":{"type":"string","enum":["apply"],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission42"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission4":{"oneOf":[{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission40"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission41"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission42"}],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission4"},"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission2"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission3"},{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission4"}],"title":"V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission"},"files_update_Response_200":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaType"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2FilesInodeIdPatchResponsesContentApplicationJsonSchemaPermission"},"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":"files_update_Response_200"},"files_delete_Response_200":{"type":"object","properties":{},"title":"files_delete_Response_200"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"}],"description":"The permission granted to the member","title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsInodeType":{"type":"string","enum":["folder","customFunction","symlink","versionTag","worksheet","block","dashboard","report","table","semanticView","metricView","scope","sql","workbook","template","dataset","datafile","storedProcedure","apiConnector","apiConnectorAuth","mcpConnector","warehouseAgent","agentSkill","tlsProfile"],"title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsInodeType"},"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"},"inodeType":{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItemsInodeType"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt","inodeType"],"title":"V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"grants_listGrants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2GrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"grants_listGrants_Response_200"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"User or member ID","title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee0"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"Team ID","title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee1"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee0"},{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee1"}],"title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaGrantee"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission0"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission1"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission2"},"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission2"}],"title":"V2GrantsPostRequestBodyContentApplicationJsonSchemaPermission"},"V2GrantsPostResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2GrantsPostResponsesContentApplicationJsonSchemaPermission0"},"V2GrantsPostResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2GrantsPostResponsesContentApplicationJsonSchemaPermission1"},"V2GrantsPostResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2GrantsPostResponsesContentApplicationJsonSchemaPermission2"},"V2GrantsPostResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsPostResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2GrantsPostResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2GrantsPostResponsesContentApplicationJsonSchemaPermission2"}],"description":"The permission granted to the member","title":"V2GrantsPostResponsesContentApplicationJsonSchemaPermission"},"V2GrantsPostResponsesContentApplicationJsonSchemaInodeType":{"type":"string","enum":["folder","customFunction","symlink","versionTag","worksheet","block","dashboard","report","table","semanticView","metricView","scope","sql","workbook","template","dataset","datafile","storedProcedure","apiConnector","apiConnectorAuth","mcpConnector","warehouseAgent","agentSkill","tlsProfile"],"title":"V2GrantsPostResponsesContentApplicationJsonSchemaInodeType"},"grants_createGrant_Response_200":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2GrantsPostResponsesContentApplicationJsonSchemaPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"},"inodeType":{"$ref":"#/components/schemas/V2GrantsPostResponsesContentApplicationJsonSchemaInodeType"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt","inodeType"],"title":"grants_createGrant_Response_200"},"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission0"},"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission1"},"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission2"},"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission2"}],"description":"The permission granted to the member","title":"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission"},"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaInodeType":{"type":"string","enum":["folder","customFunction","symlink","versionTag","worksheet","block","dashboard","report","table","semanticView","metricView","scope","sql","workbook","template","dataset","datafile","storedProcedure","apiConnector","apiConnectorAuth","mcpConnector","warehouseAgent","agentSkill","tlsProfile"],"title":"V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaInodeType"},"grants_getGrant_Response_200":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"},"inodeType":{"$ref":"#/components/schemas/V2GrantsGrantIdGetResponsesContentApplicationJsonSchemaInodeType"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt","inodeType"],"title":"grants_getGrant_Response_200"},"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission0"},"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission1"},"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission2"},"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission":{"oneOf":[{"$ref":"#/components/schemas/V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission0"},{"$ref":"#/components/schemas/V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission1"},{"$ref":"#/components/schemas/V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission2"}],"description":"The permission granted to the member","title":"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission"},"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaInodeType":{"type":"string","enum":["folder","customFunction","symlink","versionTag","worksheet","block","dashboard","report","table","semanticView","metricView","scope","sql","workbook","template","dataset","datafile","storedProcedure","apiConnector","apiConnectorAuth","mcpConnector","warehouseAgent","agentSkill","tlsProfile"],"title":"V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaInodeType"},"grants_deleteGrant_Response_200":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"},"inodeType":{"$ref":"#/components/schemas/V2GrantsGrantIdDeleteResponsesContentApplicationJsonSchemaInodeType"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt","inodeType"],"title":"grants_deleteGrant_Response_200"},"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"},"MembersListMembersResponse2000":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersGetResponsesContentApplicationJsonSchemaOneOf0Items"},"title":"MembersListMembersResponse2000"},"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"},"MembersListMembersResponse2001":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"}},"nextPage":{"type":["string","null"]}},"required":["entries","nextPage"],"title":"MembersListMembersResponse2001"},"members_listMembers_Response_200":{"oneOf":[{"$ref":"#/components/schemas/MembersListMembersResponse2000"},{"$ref":"#/components/schemas/MembersListMembersResponse2001"}],"title":"members_listMembers_Response_200"},"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"},"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"},"V2MembersPostRequestBodyContentApplicationJsonSchemaUserKind":{"type":"string","enum":["internal","guest","embed"],"title":"V2MembersPostRequestBodyContentApplicationJsonSchemaUserKind"},"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"},"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"},"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"},"V2MembersMemberIdPatchRequestBodyContentApplicationJsonSchemaUserKind":{"type":"string","enum":["internal","guest","embed"],"title":"V2MembersMemberIdPatchRequestBodyContentApplicationJsonSchemaUserKind"},"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"},"members_deleteMember_Response_200":{"type":"object","properties":{},"title":"members_deleteMember_Response_200"},"V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility":{"type":"string","enum":["public","private"],"title":"V2MembersMemberIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility"},"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"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2NotificationAttachmentsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AttachmentSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions3"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2ConditionOptions"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2AlertConfig"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems"},"DashVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"DashVariablesOneOf0Type"},"DashVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf0Type"},"value":{"type":["boolean","null"]}},"required":["type","value"],"title":"DashVariables0"},"DashVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"DashVariablesOneOf1Type"},"DashVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf1Type"},"value":{"type":["number","null"],"format":"double"}},"required":["type","value"],"title":"DashVariables1"},"DashVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"DashVariablesOneOf2Type"},"DashVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf2Type"},"value":{"type":["string","null"]}},"required":["type","value"],"title":"DashVariables2"},"DashVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"DashVariablesOneOf3Type"},"DashVariablesOneOf3ValueOneOf0Type":{"type":"string","enum":["fixed"],"title":"DashVariablesOneOf3ValueOneOf0Type"},"DashVariablesOneOf3Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf3ValueOneOf0Type"},"date":{"type":"number","format":"double"}},"required":["type","date"],"title":"DashVariablesOneOf3Value0"},"DashVariablesOneOf3ValueOneOf1Type":{"type":"string","enum":["prior","next"],"title":"DashVariablesOneOf3ValueOneOf1Type"},"DashVariablesOneOf3ValueOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"DashVariablesOneOf3ValueOneOf1Unit"},"DashVariablesOneOf3Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf3ValueOneOf1Type"},"unit":{"$ref":"#/components/schemas/DashVariablesOneOf3ValueOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"title":"DashVariablesOneOf3Value1"},"DashVariablesOneOf3Value":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf3Value0"},{"$ref":"#/components/schemas/DashVariablesOneOf3Value1"}],"title":"DashVariablesOneOf3Value"},"DashVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf3Type"},"value":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf3Value"},{"type":"null"}]}},"required":["type","value"],"title":"DashVariables3"},"DashVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"DashVariablesOneOf4Type"},"DashVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf4Type"},"value":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","value"],"title":"DashVariables4"},"DashVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"DashVariablesOneOf5Type"},"DashVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf5Type"},"value":{"type":"array","items":{"type":["string","null"]}}},"required":["type","value"],"title":"DashVariables5"},"DashVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"DashVariablesOneOf6Type"},"DashVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf6Type"},"value":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","value"],"title":"DashVariables6"},"DashVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"DashVariablesOneOf7Type"},"DashVariablesOneOf7Value":{"type":"object","properties":{"true":{"type":"boolean"},"false":{"type":"boolean"},"null":{"type":"boolean"}},"required":["true","false"],"title":"DashVariablesOneOf7Value"},"DashVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf7Type"},"value":{"$ref":"#/components/schemas/DashVariablesOneOf7Value"}},"required":["type","value"],"title":"DashVariables7"},"DashVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"DashVariablesOneOf8Type"},"DashVariablesOneOf8MinOneOf0Type":{"type":"string","enum":["fixed"],"title":"DashVariablesOneOf8MinOneOf0Type"},"DashVariablesOneOf8Min0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf8MinOneOf0Type"},"date":{"type":"number","format":"double"}},"required":["type","date"],"title":"DashVariablesOneOf8Min0"},"DashVariablesOneOf8MinOneOf1Type":{"type":"string","enum":["prior","next"],"title":"DashVariablesOneOf8MinOneOf1Type"},"DashVariablesOneOf8MinOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"DashVariablesOneOf8MinOneOf1Unit"},"DashVariablesOneOf8Min1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf8MinOneOf1Type"},"unit":{"$ref":"#/components/schemas/DashVariablesOneOf8MinOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"title":"DashVariablesOneOf8Min1"},"DashVariablesOneOf8Min":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf8Min0"},{"$ref":"#/components/schemas/DashVariablesOneOf8Min1"}],"title":"DashVariablesOneOf8Min"},"DashVariablesOneOf8MaxOneOf0Type":{"type":"string","enum":["fixed"],"title":"DashVariablesOneOf8MaxOneOf0Type"},"DashVariablesOneOf8Max0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf8MaxOneOf0Type"},"date":{"type":"number","format":"double"}},"required":["type","date"],"title":"DashVariablesOneOf8Max0"},"DashVariablesOneOf8MaxOneOf1Type":{"type":"string","enum":["prior","next"],"title":"DashVariablesOneOf8MaxOneOf1Type"},"DashVariablesOneOf8MaxOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"DashVariablesOneOf8MaxOneOf1Unit"},"DashVariablesOneOf8Max1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf8MaxOneOf1Type"},"unit":{"$ref":"#/components/schemas/DashVariablesOneOf8MaxOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"title":"DashVariablesOneOf8Max1"},"DashVariablesOneOf8Max":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf8Max0"},{"$ref":"#/components/schemas/DashVariablesOneOf8Max1"}],"title":"DashVariablesOneOf8Max"},"DashVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf8Type"},"min":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf8Min"},{"type":"null"}]},"max":{"oneOf":[{"$ref":"#/components/schemas/DashVariablesOneOf8Max"},{"type":"null"}]}},"required":["type","min","max"],"title":"DashVariables8"},"DashVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"DashVariablesOneOf9Type"},"DashVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf9Type"},"min":{"type":["number","null"],"format":"double"},"max":{"type":["number","null"],"format":"double"}},"required":["type","min","max"],"title":"DashVariables9"},"DashVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"DashVariablesOneOf10Type"},"DashVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf10Type"}},"required":["type"],"title":"DashVariables10"},"DashVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"DashVariablesOneOf11Type"},"DashVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf11Type"}},"required":["type"],"title":"DashVariables11"},"DashVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"DashVariablesOneOf12Type"},"DashVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf12Type"}},"required":["type"],"title":"DashVariables12"},"DashVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"DashVariablesOneOf13Type"},"DashVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf13Type"}},"required":["type"],"title":"DashVariables13"},"DashVariablesOneOf14Type":{"type":"string","enum":["hierarchical-list"],"title":"DashVariablesOneOf14Type"},"DashVariables14":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf14Type"},"value":{"type":"array","items":{"type":"string"}}},"required":["type","value"],"title":"DashVariables14"},"DashVariablesOneOf15Type":{"type":"string","enum":["file"],"title":"DashVariablesOneOf15Type"},"DashVariablesOneOf15Value":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"size":{"type":"number","format":"double"},"type":{"type":"string"},"downloadUrl":{"type":"string"}},"required":["id","name","size","type","downloadUrl"],"title":"DashVariablesOneOf15Value"},"DashVariables15":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf15Type"},"value":{"$ref":"#/components/schemas/DashVariablesOneOf15Value"}},"required":["type","value"],"title":"DashVariables15"},"DashVariablesOneOf16Type":{"type":"string","enum":["file-null"],"title":"DashVariablesOneOf16Type"},"DashVariables16":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf16Type"}},"required":["type"],"title":"DashVariables16"},"DashVariablesOneOf17Type":{"type":"string","enum":["file-list"],"title":"DashVariablesOneOf17Type"},"DashVariablesOneOf17ValueItems":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"size":{"type":"number","format":"double"},"type":{"type":"string"},"downloadUrl":{"type":"string"}},"required":["id","name","size","type","downloadUrl"],"title":"DashVariablesOneOf17ValueItems"},"DashVariables17":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DashVariablesOneOf17Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/DashVariablesOneOf17ValueItems"}}},"required":["type","value"],"title":"DashVariables17"},"DashVariables":{"oneOf":[{"$ref":"#/components/schemas/DashVariables0"},{"$ref":"#/components/schemas/DashVariables1"},{"$ref":"#/components/schemas/DashVariables2"},{"$ref":"#/components/schemas/DashVariables3"},{"$ref":"#/components/schemas/DashVariables4"},{"$ref":"#/components/schemas/DashVariables5"},{"$ref":"#/components/schemas/DashVariables6"},{"$ref":"#/components/schemas/DashVariables7"},{"$ref":"#/components/schemas/DashVariables8"},{"$ref":"#/components/schemas/DashVariables9"},{"$ref":"#/components/schemas/DashVariables10"},{"$ref":"#/components/schemas/DashVariables11"},{"$ref":"#/components/schemas/DashVariables12"},{"$ref":"#/components/schemas/DashVariables13"},{"$ref":"#/components/schemas/DashVariables14"},{"$ref":"#/components/schemas/DashVariables15"},{"$ref":"#/components/schemas/DashVariables16"},{"$ref":"#/components/schemas/DashVariables17"}],"title":"DashVariables"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DashboardSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables9"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables10"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables11"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables12"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables13"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettingsVariables"}}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicExportSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2DynamicRecipientSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2WorkbookVariant"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2EmbedOpts"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2FormattingPivotHeaderStyle"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0ConfigV2Formatting"},"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"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["PDF"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"layout":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["NONE"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType":{"type":"string","enum":["report"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsFormatOptions"},"workbookExportSource":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2NotificationAttachmentsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AttachmentSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf2ConditionsItems"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions3"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ConditionOptions"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2AlertConfig"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables0"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables1"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables2"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables3"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables4"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables5"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables6"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables7"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables8"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables9"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables10"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables11"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables12"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables13"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettingsVariables"}}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicExportSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2DynamicRecipientSettings"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2ReportVariant"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1ConfigV2EmbedOpts"},"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"},"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"},"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2MembersMemberIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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"},"V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth":{"type":"object","properties":{"tokensRevoked":{"type":"number","format":"double","description":"Number of refresh tokens revoked."}},"required":["tokensRevoked"],"title":"V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth"},"V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResults":{"type":"object","properties":{"oauth":{"$ref":"#/components/schemas/V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResultsOauth"}},"required":["oauth"],"description":"Revocation result per token type.","title":"V2MembersMemberIdRevokePostResponsesContentApplicationJsonSchemaResults"},"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"},"V2MembersMemberIdFilesGetParametersPermissionFilter0":{"type":"string","enum":["view","explore","edit"],"title":"V2MembersMemberIdFilesGetParametersPermissionFilter0"},"V2MembersMemberIdFilesGetParametersPermissionFilter1":{"type":"string","enum":["view","explore","organize","edit"],"description":"Choose **organize** for Can Contribute permissions or **edit** for Can Manage permissions.","title":"V2MembersMemberIdFilesGetParametersPermissionFilter1"},"V2MembersMemberIdFilesGetParametersPermissionFilter":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersPermissionFilter0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersPermissionFilter1"}],"title":"V2MembersMemberIdFilesGetParametersPermissionFilter"},"V2MembersMemberIdFilesGetParametersTypeFiltersSchemaOneOf0Items":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2MembersMemberIdFilesGetParametersTypeFiltersSchemaOneOf0Items"},"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"},"V2MembersMemberIdFilesGetParametersTypeFilters1":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2MembersMemberIdFilesGetParametersTypeFilters1"},"V2MembersMemberIdFilesGetParametersTypeFilters":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFilters0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetParametersTypeFilters1"}],"title":"V2MembersMemberIdFilesGetParametersTypeFilters"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0":{"type":"string","enum":["create"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1":{"type":"string","enum":["annotate"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2":{"type":"string","enum":["organize"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3":{"type":"string","enum":["explore"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40":{"type":"string","enum":["view"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41":{"type":"string","enum":["edit"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42":{"type":"string","enum":["apply"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"}],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"}],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"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":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"code":{"type":"number","format":"double"},"message":{"type":"string"},"requestId":{"type":"string"}},"required":["code","message","requestId"],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2MembersMemberIdFilesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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"},"V2MembersMemberIdFilesRecentsGetParametersIncludeExplorations":{"type":"string","enum":["true","false"],"description":"Include explorations in the response.","title":"V2MembersMemberIdFilesRecentsGetParametersIncludeExplorations"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0":{"type":"string","enum":["create"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1":{"type":"string","enum":["annotate"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2":{"type":"string","enum":["organize"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3":{"type":"string","enum":["explore"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40":{"type":"string","enum":["view"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41":{"type":"string","enum":["edit"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42":{"type":"string","enum":["apply"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"}],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"}],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"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":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"code":{"type":"number","format":"double"},"message":{"type":"string"},"requestId":{"type":"string"}},"required":["code","message","requestId"],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2MembersMemberIdFilesRecentsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["workspace","folder","workbook","dataset","data-model","sql","worksheet","dashboard","template","table","symlink","report"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0":{"type":"string","enum":["create"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1":{"type":"string","enum":["annotate"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2":{"type":"string","enum":["organize"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3":{"type":"string","enum":["explore"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40":{"type":"string","enum":["view"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41":{"type":"string","enum":["edit"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42":{"type":"string","enum":["apply"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission40"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission41"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission42"}],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission1"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission2"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission3"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission4"}],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"id":{"type":"string"},"urlId":{"type":"string"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"parentId":{"type":"string"},"parentUrlId":{"type":"string"},"permission":{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Permission"},"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":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"code":{"type":"number","format":"double"},"message":{"type":"string"},"requestId":{"type":"string"}},"required":["code","message","requestId"],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems1"}],"title":"V2MembersMemberIdFilesFavoritesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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"},"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Status":{"type":"string","enum":["200"],"description":"Success","title":"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Status"},"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Download":{"type":"object","properties":{"stream":{"description":"Any type"},"contentType":{"type":"string"},"filename":{"type":"string"}},"required":["stream","contentType","filename"],"description":"Download results","title":"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Download"},"QueryDownloadQueryResponse2000":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Status","description":"Success"},"download":{"$ref":"#/components/schemas/V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf0Download","description":"Download results"}},"required":["status","download"],"title":"QueryDownloadQueryResponse2000"},"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf1Status":{"type":"string","enum":["204"],"description":"Queued or running","title":"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf1Status"},"QueryDownloadQueryResponse2001":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf1Status","description":"Queued or running"}},"required":["status"],"title":"QueryDownloadQueryResponse2001"},"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf2Status":{"type":"string","enum":["500"],"description":"Internal server error","title":"V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf2Status"},"QueryDownloadQueryResponse2002":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/V2QueryQueryIdDownloadGetResponsesContentApplicationJsonSchemaOneOf2Status","description":"Internal server error"},"message":{"type":"string","description":"Error message"}},"required":["status","message"],"title":"QueryDownloadQueryResponse2002"},"query_downloadQuery_Response_200":{"oneOf":[{"$ref":"#/components/schemas/QueryDownloadQueryResponse2000"},{"$ref":"#/components/schemas/QueryDownloadQueryResponse2001"},{"$ref":"#/components/schemas/QueryDownloadQueryResponse2002"}],"title":"query_downloadQuery_Response_200"},"V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"},"taggedReportId":{"type":"string","description":"Unique identifier of the tagged report."}},"required":["versionTagId","tagName","sourceVersion","taggedAt","taggedReportId"],"title":"V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier of the report."},"reportUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}},"description":{"type":"string"}},"required":["reportId","reportUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems"},"reports_listReports_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPage":{"type":["string","null"],"description":"Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`."},"total":{"type":"number","format":"double","description":"Total number of results. Useful to determine if there is a need to paginate."},"hasMore":{"type":"boolean","description":"**[Deprecated]** Indicates whether more results are available."}},"required":["entries","nextPage"],"title":"reports_listReports_Response_200"},"V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"},"taggedReportId":{"type":"string","description":"Unique identifier of the tagged report."}},"required":["versionTagId","tagName","sourceVersion","taggedAt","taggedReportId"],"title":"V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems"},"reports_createReport_Response_200":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier of the report."},"reportUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsPostResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["reportId","reportUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"reports_createReport_Response_200"},"V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"},"taggedReportId":{"type":"string","description":"Unique identifier of the tagged report."}},"required":["versionTagId","tagName","sourceVersion","taggedAt","taggedReportId"],"title":"V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems"},"reports_getReport_Response_200":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier of the report."},"reportUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdGetResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["reportId","reportUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"reports_getReport_Response_200"},"V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"tagName":{"type":"string"},"sourceVersion":{"type":"number","format":"double"},"taggedAt":{"type":"string","format":"date-time"},"taggedReportId":{"type":"string","description":"Unique identifier of the tagged report."}},"required":["versionTagId","tagName","sourceVersion","taggedAt","taggedReportId"],"title":"V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems"},"reports_copyReport_Response_200":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier of the report."},"reportUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdCopyPostResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["reportId","reportUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"reports_copyReport_Response_200"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type":{"type":"string","enum":["data-model"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type"},"dataModelId":{"type":"string"},"elementIds":{"type":"array","items":{"type":"string"}},"versionTagId":{"type":"string"}},"required":["type","dataModelId","elementIds"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type":{"type":"string","enum":["dataset"],"description":"Dataset (deprecated)","title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type","description":"Dataset (deprecated)"},"inodeId":{"type":"string"}},"required":["type","inodeId"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type":{"type":"string","enum":["table"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type"},"inodeId":{"type":"string"}},"required":["type","inodeId"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type":{"type":"string","enum":["custom-sql"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type"},"connectionId":{"type":"string","description":"ID of the connection where the custom SQL element is run."},"definition":{"type":"string","description":"Raw SQL definition for the custom SQL element."},"customSqlId":{"type":"string","description":"Element ID of the custom SQL."}},"required":["type","connectionId","definition","customSqlId"],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3"},"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems2"},{"$ref":"#/components/schemas/V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems3"}],"title":"V2ReportsReportIdSourcesGetResponsesContentApplicationJsonSchemaItems"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type":{"type":"string","enum":["member"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type"},"userId":{"type":"string"}},"required":["type","userId"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type":{"type":"string","enum":["team"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type"},"teamId":{"type":"string"}},"required":["type","teamId"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type":{"type":"string","enum":["email"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type"},"email":{"type":"string"}},"required":["type","email"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type":{"type":"string","enum":["slackChannel"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type"},"slackConversationId":{"type":"string"}},"required":["type","slackConversationId"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type":{"type":"string","enum":["gdrive"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type"},"googleDriveFolderUrl":{"type":"string"}},"required":["type","googleDriveFolderUrl"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type":{"type":"string","enum":["cloud-export"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq":{"type":"object","properties":{"bqDestination":{"type":"string"}},"required":["bqDestination"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0":{"type":"object","properties":{"bq":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf0Bq"}},"required":["bq"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf":{"type":"object","properties":{"sfDestination":{"type":"string"},"authorization":{"type":"string"}},"required":["sfDestination","authorization"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1":{"type":"object","properties":{"sf":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf1Sf"}},"required":["sf"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs":{"type":"object","properties":{"rsDestination":{"type":"string"},"authorization":{"type":"string"}},"required":["rsDestination","authorization"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2":{"type":"object","properties":{"rs":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExportOneOf2Rs"}},"required":["rs"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport0"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport1"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport2"}],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type"},"cloudExport":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5CloudExport"}},"required":["type","cloudExport"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type":{"type":"string","enum":["webhook"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type"},"webhookUrl":{"type":"string"}},"required":["type","webhookUrl"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5"},{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6"}],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaConfig":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"}},"required":["title","messageBody"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaConfig"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsType"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsLayout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions"},"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions"}},"required":["formatOptions"],"title":"V2ReportsReportIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems"},"reports_sendReport_Response_200":{"type":"object","properties":{},"title":"reports_sendReport_Response_200"},"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatType":{"type":"string","enum":["pdf"],"title":"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatType"},"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatLayout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatLayout"},"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormat":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatType"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormatLayout"}},"required":["type","layout"],"title":"V2ReportsReportIdExportPostRequestBodyContentApplicationJsonSchemaFormat"},"reports_exportReport_Response_200":{"type":"object","properties":{"jobComplete":{"type":"boolean"},"queryId":{"type":"string"},"rows":{"type":"array","items":{"type":"object","additionalProperties":{"description":"Any type"}}},"message":{"type":"string"}},"required":["jobComplete","queryId"],"title":"reports_exportReport_Response_200"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"required":["cronSpec","timezone"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["NONE"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType":{"type":"string","enum":["report"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"workbookExportSource":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13"}],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables"}}},"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig"},"notificationName":{"type":"string"},"reportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"reportVariant":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ReportVariant"},"embedOpts":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts"}},"required":["title","messageBody","notificationAttachments"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2"},"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"scheduledNotificationId":{"type":"string","description":"Unique identifier of the scheduled export."},"reportId":{"type":"string","description":"Unique identifier of the report."},"schedule":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"configV2":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2"},"isSuspended":{"type":"boolean","description":"Whether the schedule is currently suspended."},"ownerId":{"type":"string","description":"Unique identifier of the user who owns the schedule."},"lastUpdatedByUser":{"type":"string","description":"Unique identifier of the user who last updated the schedule."},"disabledAt":{"type":["string","null"],"format":"date-time","description":"Timestamp when the schedule was disabled, or null if the schedule is active."},"disabledBy":{"type":["string","null"],"description":"Unique identifier of the member who disabled the schedule, or null if the schedule is active."},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."}},"required":["scheduledNotificationId","reportId","schedule","configV2","isSuspended","ownerId","lastUpdatedByUser","disabledAt","disabledBy","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"reports_listReportSchedules_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPage":{"type":["string","null"],"description":"Returns a string that can be used as the `page` parameter in the next request to fetch the next page of results. The last page of results returns `null`."},"total":{"type":"number","format":"double","description":"Total number of results. Useful to determine if there is a need to paginate."},"hasMore":{"type":"boolean","description":"**[Deprecated]** Indicates whether more results are available."}},"required":["entries","nextPage"],"title":"reports_listReportSchedules_Response_200"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team to export to"},"email":{"type":"string","description":"Email address to export to"},"ccEmail":{"type":"string","description":"Email address to add as a Cc recipient"},"bccEmail":{"type":"string","description":"Email address to add as a Bcc recipient"},"ccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Cc recipient"},"bccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Bcc recipient"},"slackConversationId":{"type":"string","description":"Slack channel ID or member ID to export to"},"googleSpreadsheetUrl":{"type":"string","description":"URL of the Google Sheet to export to"},"googleDriveFolderUrl":{"type":"string","description":"URL of the Google Drive folder to export to"},"webhookUrl":{"type":"string","description":"URL of the webhook endpoint to export to"}},"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"required":["cronSpec","timezone"],"description":"When to send the report export.","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"description":"Export format options. Reports only support PDF.","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions","description":"Export format options. Reports only support PDF."}},"required":["formatOptions"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergeAttachments":{"type":"boolean","description":"Combines multiple PDF attachments into a single file"},"zipAttachments":{"type":"boolean","description":"Send attachments as a .zip file"}},"description":"Export attachment settings","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string","description":"Version tag to export"}},"description":"Report variant","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"description":"Always send the export","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type":{"type":"string","enum":["isEmpty"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's no data","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type":{"type":"string","enum":["isNotEmpty"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's data","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type":{"type":"string","enum":["column"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNull","IsNotNull","Contains","StartsWith","EndsWith"],"description":"Operator","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode":{"type":"string","enum":["any","all"],"description":"Kind of condition evaluation","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Integer value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"}],"description":"Column value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"},"columnId":{"type":"string","description":"ID of the column"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op","description":"Operator"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode","description":"Kind of condition evaluation"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value","description":"Column value"}},"required":["type","elementId","columnId","op","mode"],"description":"If a condition is met","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"}],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"condition":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"}},"required":["type","condition"],"description":"Send the export based on a condition","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"}],"description":"Export condition options","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type":{"type":"string","enum":["date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value","description":"Date selection"}},"required":["type","value"],"description":"Date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03"}],"description":"Scalar value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type":{"type":"string","enum":["boolean-list"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value":{"type":"object","properties":{"true":{"type":"boolean"},"false":{"type":"boolean"},"null":{"type":"boolean"}},"required":["true","false"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value"}},"required":["type","value"],"description":"Boolean list value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type":{"type":"string","enum":["number-list"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1"}],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems"}}},"required":["type","value"],"description":"Number list value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type":{"type":"string","enum":["text-list"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"}},"required":["type"],"description":"Null text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1"}],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems"}}},"required":["type","value"],"description":"Text list value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type":{"type":"string","enum":["date-list"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1"}],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems"}}},"required":["type","value"],"description":"Date list value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22"}],"description":"List value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type":{"type":"string","enum":["hierarchical-list"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type"},"value":{"type":"array","items":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems"}},"description":"Array of hierarchy paths. Each path is an array of segments, from the highest selected level of the hierarchy down to the lowest selected level of the hierarchy. Each segment is a `{type: \"text\", value: string}` object. For example, a Region/State/City hierarchy control with Oakland selected would be represented as `[[{\"type\":\"text\",\"value\":\"West\"}, {\"type\":\"text\",\"value\":\"California\"}, {\"type\":\"text\",\"value\":\"Oakland\"}]]`"}},"required":["type","value"],"description":"Hierarchical list value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type":{"type":"string","enum":["date-range"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type"},"min":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min","description":"Date selection"},"max":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max","description":"Date selection"}},"required":["type","min","max"],"description":"Date range value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type":{"type":"string","enum":["number-range"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type"},"min":{"type":"number","format":"double","description":"Minimum value of the range"},"max":{"type":"number","format":"double","description":"Maximum value of the range"}},"required":["type"],"description":"Number range value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type"}},"required":["type"],"description":"Null text value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type":{"type":"string","enum":["boolean-null"],"title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type"}},"required":["type"],"description":"Null boolean value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63"}],"description":"Null value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6"}],"description":"Variable value","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings":{"type":"object","properties":{"controlValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues"},"description":"This object maps control IDs to the values that they should have when exporting the workbook."}},"description":"Report settings","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings"},"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string","description":"Title of the message"},"messageBody":{"type":"string","description":"Body of the message"},"exportAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"description":"Attachments to include in the export. Reports only support PDF."},"exportName":{"type":"string","description":"Name of the scheduled export"},"includeLink":{"type":"boolean","description":"Include a link to the exported report"},"runAsRecipient":{"type":"boolean","description":"Run the export queries as the recipient"},"attachmentSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings","description":"Export attachment settings"},"reportVariant":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant","description":"Report variant"},"conditionOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions","description":"Export condition options"},"reportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings","description":"Report settings"}},"required":["title","messageBody","exportAttachments"],"description":"Configuration settings for the export schedule.","title":"V2ReportsReportIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"required":["cronSpec","timezone"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["NONE"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType":{"type":"string","enum":["report"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"workbookExportSource":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"}],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"}}},"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"notificationName":{"type":"string"},"reportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"reportVariant":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ReportVariant"},"embedOpts":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"}},"required":["title","messageBody","notificationAttachments"],"title":"V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2"},"reports_createReportSchedule_Response_200":{"type":"object","properties":{"scheduledNotificationId":{"type":"string","description":"Unique identifier of the scheduled export."},"reportId":{"type":"string","description":"Unique identifier of the report."},"schedule":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule"},"configV2":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2"},"isSuspended":{"type":"boolean","description":"Whether the schedule is currently suspended."},"ownerId":{"type":"string","description":"Unique identifier of the user who owns the schedule."},"lastUpdatedByUser":{"type":"string","description":"Unique identifier of the user who last updated the schedule."},"disabledAt":{"type":["string","null"],"format":"date-time","description":"Timestamp when the schedule was disabled, or null if the schedule is active."},"disabledBy":{"type":["string","null"],"description":"Unique identifier of the member who disabled the schedule, or null if the schedule is active."},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."}},"required":["scheduledNotificationId","reportId","schedule","configV2","isSuspended","ownerId","lastUpdatedByUser","disabledAt","disabledBy","createdBy","updatedBy","createdAt","updatedAt"],"title":"reports_createReportSchedule_Response_200"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team to export to"},"email":{"type":"string","description":"Email address to export to"},"ccEmail":{"type":"string","description":"Email address to add as a Cc recipient"},"bccEmail":{"type":"string","description":"Email address to add as a Bcc recipient"},"ccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Cc recipient"},"bccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Bcc recipient"},"slackConversationId":{"type":"string","description":"Slack channel ID or member ID to export to"},"googleSpreadsheetUrl":{"type":"string","description":"URL of the Google Sheet to export to"},"googleDriveFolderUrl":{"type":"string","description":"URL of the Google Drive folder to export to"},"webhookUrl":{"type":"string","description":"URL of the webhook endpoint to export to"}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"description":"When to send the report export.","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsType"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsLayout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"description":"Export format options. Reports only support PDF.","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions","description":"Export format options. Reports only support PDF."}},"required":["formatOptions"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergeAttachments":{"type":"boolean","description":"Combines multiple PDF attachments into a single file"},"zipAttachments":{"type":"boolean","description":"Send attachments as a .zip file"}},"description":"Export attachment settings","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string","description":"Version tag to export"}},"description":"Report variant","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"description":"Always send the export","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type":{"type":"string","enum":["isEmpty"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's no data","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type":{"type":"string","enum":["isNotEmpty"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's data","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type":{"type":"string","enum":["column"],"description":"Type of condition","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNull","IsNotNull","Contains","StartsWith","EndsWith"],"description":"Operator","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode":{"type":"string","enum":["any","all"],"description":"Kind of condition evaluation","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Integer value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"}],"description":"Column value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"},"columnId":{"type":"string","description":"ID of the column"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op","description":"Operator"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode","description":"Kind of condition evaluation"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value","description":"Column value"}},"required":["type","elementId","columnId","op","mode"],"description":"If a condition is met","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"condition":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"}},"required":["type","condition"],"description":"Send the export based on a condition","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"}],"description":"Export condition options","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf1Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type":{"type":"string","enum":["date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Type"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf0OneOf3Value","description":"Date selection"}},"required":["type","value"],"description":"Date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues00"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues01"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues02"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues03"}],"description":"Scalar value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type":{"type":"string","enum":["boolean-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value":{"type":"object","properties":{"true":{"type":"boolean"},"false":{"type":"boolean"},"null":{"type":"boolean"}},"required":["true","false"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Type"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf1Value"}},"required":["type","value"],"description":"Boolean list value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type":{"type":"string","enum":["number-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf0ValueItems"}}},"required":["type","value"],"description":"Number list value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type":{"type":"string","enum":["text-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"}},"required":["type"],"description":"Null text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf1ValueItems"}}},"required":["type","value"],"description":"Text list value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type":{"type":"string","enum":["date-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf2OneOf2ValueItems"}}},"required":["type","value"],"description":"Date list value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues20"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues21"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues22"}],"description":"List value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type":{"type":"string","enum":["hierarchical-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItemsType"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3Type"},"value":{"type":"array","items":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf3ValueItemsItems"}},"description":"Array of hierarchy paths. Each path is an array of segments, from the highest selected level of the hierarchy down to the lowest selected level of the hierarchy. Each segment is a `{type: \"text\", value: string}` object. For example, a Region/State/City hierarchy control with Oakland selected would be represented as `[[{\"type\":\"text\",\"value\":\"West\"}, {\"type\":\"text\",\"value\":\"California\"}, {\"type\":\"text\",\"value\":\"Oakland\"}]]`"}},"required":["type","value"],"description":"Hierarchical list value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type":{"type":"string","enum":["date-range"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MinOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4MaxOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max2"}],"description":"Date selection","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Type"},"min":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Min","description":"Date selection"},"max":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf4Max","description":"Date selection"}},"required":["type","min","max"],"description":"Date range value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type":{"type":"string","enum":["number-range"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf5Type"},"min":{"type":"number","format":"double","description":"Minimum value of the range"},"max":{"type":"number","format":"double","description":"Maximum value of the range"}},"required":["type"],"description":"Number range value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf0Type"}},"required":["type"],"description":"Null date value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf2Type"}},"required":["type"],"description":"Null text value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type":{"type":"string","enum":["boolean-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValuesOneOf6OneOf3Type"}},"required":["type"],"description":"Null boolean value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues60"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues61"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues62"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues63"}],"description":"Null value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues6"}],"description":"Variable value","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings":{"type":"object","properties":{"controlValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettingsControlValues"},"description":"This object maps control IDs to the values that they should have when exporting the workbook."}},"description":"Report settings","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string","description":"Title of the message"},"messageBody":{"type":"string","description":"Body of the message"},"exportAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"description":"Attachments to include in the export. Reports only support PDF."},"exportName":{"type":"string","description":"Name of the scheduled export"},"includeLink":{"type":"boolean","description":"Include a link to the exported report"},"runAsRecipient":{"type":"boolean","description":"Run the export queries as the recipient"},"attachmentSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings","description":"Export attachment settings"},"reportVariant":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportVariant","description":"Report variant"},"conditionOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions","description":"Export condition options"},"reportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ReportSettings","description":"Report settings"}},"description":"Configuration settings for the export schedule.","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2"},"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction":{"type":"string","enum":["pause","resume"],"description":"Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule.","title":"V2ReportsReportIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"required":["cronSpec","timezone"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["PDF"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"layout":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["NONE"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType":{"type":"string","enum":["report"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceType"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"workbookExportSource":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"}],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"}}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant":{"type":"object","properties":{"tagId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"notificationName":{"type":"string"},"reportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"reportVariant":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ReportVariant"},"embedOpts":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"}},"required":["title","messageBody","notificationAttachments"],"title":"V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2"},"reports_updateReportSchedule_Response_200":{"type":"object","properties":{"scheduledNotificationId":{"type":"string","description":"Unique identifier of the scheduled export."},"reportId":{"type":"string","description":"Unique identifier of the report."},"schedule":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule"},"configV2":{"$ref":"#/components/schemas/V2ReportsReportIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2"},"isSuspended":{"type":"boolean","description":"Whether the schedule is currently suspended."},"ownerId":{"type":"string","description":"Unique identifier of the user who owns the schedule."},"lastUpdatedByUser":{"type":"string","description":"Unique identifier of the user who last updated the schedule."},"disabledAt":{"type":["string","null"],"format":"date-time","description":"Timestamp when the schedule was disabled, or null if the schedule is active."},"disabledBy":{"type":["string","null"],"description":"Unique identifier of the member who disabled the schedule, or null if the schedule is active."},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."}},"required":["scheduledNotificationId","reportId","schedule","configV2","isSuspended","ownerId","lastUpdatedByUser","disabledAt","disabledBy","createdBy","updatedBy","createdAt","updatedAt"],"title":"reports_updateReportSchedule_Response_200"},"reports_deleteReportSchedule_Response_200":{"type":"object","properties":{},"title":"reports_deleteReportSchedule_Response_200"},"V2SamlServiceProvidersGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"samlServiceProviderId":{"type":"string","description":"Unique identifier of the SAML service provider"}},"required":["samlServiceProviderId"],"title":"V2SamlServiceProvidersGetResponsesContentApplicationJsonSchemaEntriesItems"},"saml_listSamlServiceProviders_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2SamlServiceProvidersGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"saml_listSamlServiceProviders_Response_200"},"V2SamlServiceProvidersSamlServiceProviderIdCertificatesPostRequestBodyContentApplicationJsonSchemaPurpose":{"type":"string","enum":["signing","encryption"],"description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses.","title":"V2SamlServiceProvidersSamlServiceProviderIdCertificatesPostRequestBodyContentApplicationJsonSchemaPurpose"},"saml_createSamlServiceProviderCertificate_Response_201":{"type":"object","properties":{"samlServiceProviderId":{"type":"string","description":"Unique identifier of the SAML service provider"},"samlServiceProviderCertificateId":{"type":"string","description":"Unique identifier of the SAML service provider certificate"}},"required":["samlServiceProviderId","samlServiceProviderCertificateId"],"title":"saml_createSamlServiceProviderCertificate_Response_201"},"V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItemsPurpose":{"type":"string","enum":["signing","encryption"],"description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses.","title":"V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItemsPurpose"},"V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"samlServiceProviderCertificateId":{"type":"string","description":"Unique identifier of the SAML service provider certificate"},"samlServiceProviderId":{"type":"string","description":"Unique identifier of the SAML service provider"},"purpose":{"$ref":"#/components/schemas/V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItemsPurpose","description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses."},"publicKeyCertificate":{"type":"string","description":"PEM-encoded X.509 certificate"},"isActive":{"type":"boolean","description":"Whether the certificate is currently active"},"notBefore":{"type":"string","format":"date-time","description":"Date and time when the certificate becomes valid"},"notAfter":{"type":"string","format":"date-time","description":"Date and time when the certificate expires"},"createdAt":{"type":"string","format":"date-time","description":"When the certificate was created"},"createdBy":{"type":"string","description":"Identifier of the user who created the certificate"},"updatedAt":{"type":"string","format":"date-time","description":"When the certificate was last updated"},"updatedBy":{"type":"string","description":"Identifier of the user who last updated the certificate"}},"required":["samlServiceProviderCertificateId","samlServiceProviderId","purpose","publicKeyCertificate","isActive","notBefore","notAfter","createdAt","createdBy","updatedAt","updatedBy"],"title":"V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItems"},"saml_listSamlServiceProviderCertificates_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2SamlServiceProvidersSamlServiceProviderIdCertificatesGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"saml_listSamlServiceProviderCertificates_Response_200"},"V2SamlServiceProvidersSamlServiceProviderIdCertificatesSamlServiceProviderCertificateIdGetResponsesContentApplicationJsonSchemaPurpose":{"type":"string","enum":["signing","encryption"],"description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses.","title":"V2SamlServiceProvidersSamlServiceProviderIdCertificatesSamlServiceProviderCertificateIdGetResponsesContentApplicationJsonSchemaPurpose"},"saml_getSamlServiceProviderCertificate_Response_200":{"type":"object","properties":{"samlServiceProviderCertificateId":{"type":"string","description":"Unique identifier of the SAML service provider certificate"},"samlServiceProviderId":{"type":"string","description":"Unique identifier of the SAML service provider"},"purpose":{"$ref":"#/components/schemas/V2SamlServiceProvidersSamlServiceProviderIdCertificatesSamlServiceProviderCertificateIdGetResponsesContentApplicationJsonSchemaPurpose","description":"Purpose of the certificate. Use `signing` for signing SAML requests and `encryption` for encrypting SAML responses."},"publicKeyCertificate":{"type":"string","description":"PEM-encoded X.509 certificate"},"isActive":{"type":"boolean","description":"Whether the certificate is currently active"},"notBefore":{"type":"string","format":"date-time","description":"Date and time when the certificate becomes valid"},"notAfter":{"type":"string","format":"date-time","description":"Date and time when the certificate expires"},"createdAt":{"type":"string","format":"date-time","description":"When the certificate was created"},"createdBy":{"type":"string","description":"Identifier of the user who created the certificate"},"updatedAt":{"type":"string","format":"date-time","description":"When the certificate was last updated"},"updatedBy":{"type":"string","description":"Identifier of the user who last updated the certificate"}},"required":["samlServiceProviderCertificateId","samlServiceProviderId","purpose","publicKeyCertificate","isActive","notBefore","notAfter","createdAt","createdBy","updatedAt","updatedBy"],"title":"saml_getSamlServiceProviderCertificate_Response_200"},"saml_activateSamlServiceProviderCertificate_Response_204":{"type":"object","properties":{},"title":"saml_activateSamlServiceProviderCertificate_Response_204"},"saml_deactivateSamlServiceProviderCertificate_Response_204":{"type":"object","properties":{},"title":"saml_deactivateSamlServiceProviderCertificate_Response_204"},"saml_removeSamlServiceProviderCertificate_Response_204":{"type":"object","properties":{},"title":"saml_removeSamlServiceProviderCertificate_Response_204"},"sharedTemplates_deleteExternalShare_Response_200":{"type":"object","properties":{},"title":"sharedTemplates_deleteExternalShare_Response_200"},"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf0Type":{"type":"string","enum":["table"],"title":"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf0Type"},"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf0Type"},"newInodeId":{"type":"string"},"columns":{"type":"object","additionalProperties":{"type":"string"},"description":"Mapping from old column names to new column names. Leave blank to keep the same column names."},"metrics":{"type":"object","additionalProperties":{"type":"string"},"description":"Mapping from old metric names to new metric names. Leave blank to keep the same metric names."}},"required":["type","newInodeId","columns","metrics"],"title":"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps0"},"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf1Type":{"type":"string","enum":["connection"],"title":"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf1Type"},"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwapsOneOf1Type"},"newConnectionId":{"type":"string"},"newConnectionName":{"type":"string"}},"required":["type"],"title":"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps1"},"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps":{"oneOf":[{"$ref":"#/components/schemas/V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps0"},{"$ref":"#/components/schemas/V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps1"}],"title":"V2SharedTemplatesAcceptPostRequestBodyContentApplicationJsonSchemaSourceSwaps"},"sharedTemplates_acceptTemplateShare_Response_200":{"type":"object","properties":{},"title":"sharedTemplates_acceptTemplateShare_Response_200"},"V2SharedTemplatesSharedWithYouGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"providerOrganizationId":{"type":"string"},"name":{"type":"string"},"shareId":{"type":"string"},"createdAt":{"type":"string","format":"date-time","description":"When the template was shared with your organization."},"description":{"type":"string"},"pending":{"type":"boolean"}},"required":["providerOrganizationId","name","shareId","createdAt"],"title":"V2SharedTemplatesSharedWithYouGetResponsesContentApplicationJsonSchemaEntriesItems"},"sharedTemplates_listTemplatesSharedWithYou_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2SharedTemplatesSharedWithYouGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"},"hasMore":{"type":"boolean","description":"**[Deprecated]** Indicates whether more results are available."}},"required":["entries","nextPage"],"title":"sharedTemplates_listTemplatesSharedWithYou_Response_200"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsType":{"type":"string","enum":["connection"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath00"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath01"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath02"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath10"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath11"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath12"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath20"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath21"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath22"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view.","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsTo"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItems":{"type":"object","properties":{"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItemsTo","description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view."}},"required":["to"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItems"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwaps":{"type":"object","properties":{"connectionSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwapsConnectionSwapsItems"},"description":"Swap paths to a different location in the same connection."}},"required":["connectionSwaps"],"title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwaps"},"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItemsSwaps"},"policyId":{"type":"string"}},"required":["policyId"],"description":"Get source swap policy response","title":"V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems"},"sourceSwapPolicies_listSourceSwapPolicies_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"sourceSwapPolicies_listSourceSwapPolicies_Response_200"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Type":{"type":"string","enum":["connection"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Type"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems":{"type":"object","properties":{"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo","description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view."}},"required":["to"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Swaps":{"type":"object","properties":{"connectionSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems"},"description":"Swap paths to a different location in the same connection."}},"required":["connectionSwaps"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Swaps"},"SourceSwapPoliciesCreateSourceSwapPolicyRequest0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Type"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf0Swaps"}},"required":["type","name","fromConnectionId","swaps"],"title":"SourceSwapPoliciesCreateSourceSwapPolicyRequest0"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Type":{"type":"string","enum":["deployment"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Type"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01"}],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11"}],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21"}],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0"},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1"},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2"}},"required":["path0","path1"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom"},"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo"}},"required":["from","to"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems"},"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Swaps":{"type":"object","properties":{"toConnection":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection"},"deploymentSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems"}}},"required":["toConnection","deploymentSwaps"],"title":"V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Swaps"},"SourceSwapPoliciesCreateSourceSwapPolicyRequest1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Type"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPostRequestBodyContentApplicationJsonSchemaOneOf1Swaps"}},"required":["type","name","fromConnectionId","swaps"],"title":"SourceSwapPoliciesCreateSourceSwapPolicyRequest1"},"sourceSwapPolicies_createSourceSwapPolicy_Request":{"oneOf":[{"$ref":"#/components/schemas/SourceSwapPoliciesCreateSourceSwapPolicyRequest0"},{"$ref":"#/components/schemas/SourceSwapPoliciesCreateSourceSwapPolicyRequest1"}],"title":"sourceSwapPolicies_createSourceSwapPolicy_Request"},"sourceSwapPolicies_createSourceSwapPolicy_Response_200":{"type":"object","properties":{"policyId":{"type":"string","description":"Unique identifier of the source swap policy."}},"required":["policyId"],"description":"Source Swap Policy Response","title":"sourceSwapPolicies_createSourceSwapPolicy_Response_200"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaType":{"type":"string","enum":["connection"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath00"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath01"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath02"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath10"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath11"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath12"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath20"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath21"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath22"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view.","title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsTo"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItems":{"type":"object","properties":{"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItemsTo","description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view."}},"required":["to"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItems"},"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwaps":{"type":"object","properties":{"connectionSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwapsConnectionSwapsItems"},"description":"Swap paths to a different location in the same connection."}},"required":["connectionSwaps"],"title":"V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwaps"},"sourceSwapPolicies_getSourceSwapPolicy_Response_200":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaType"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdGetResponsesContentApplicationJsonSchemaSwaps"},"policyId":{"type":"string"}},"required":["policyId"],"description":"Get source swap policy response","title":"sourceSwapPolicies_getSourceSwapPolicy_Response_200"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Type":{"type":"string","enum":["connection"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Type"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems":{"type":"object","properties":{"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItemsTo","description":"Specify how to swap each segment of a path to a table in your database, catalog, or project. `path0` is equivalent to a database, catalog, or project. `path` is equivalent to a schema or dataset, and `path2` is equivalent to a table or view."}},"required":["to"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Swaps":{"type":"object","properties":{"connectionSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0SwapsConnectionSwapsItems"},"description":"Swap paths to a different location in the same connection."}},"required":["connectionSwaps"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Swaps"},"SourceSwapPoliciesUpdateSourceSwapPolicyRequest0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Type"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf0Swaps"}},"description":"Connection swap policy","title":"SourceSwapPoliciesUpdateSourceSwapPolicyRequest0"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Type":{"type":"string","enum":["deployment"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Type"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnectionSwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath01"}],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath11"}],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf0SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath21"}],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath0"},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath1"},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFromPath2"}},"required":["path0","path1"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath00"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath01"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath02"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath10"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath11"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath12"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType":{"type":"string","enum":["attribute"],"description":"Specify a user attribute to use the value of the user attribute as the value to swap.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf0SwapType","description":"Specify a user attribute to use the value of the user attribute as the value to swap."},"userAttributeId":{"type":"string"}},"required":["swapType","userAttributeId"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType":{"type":"string","enum":["exact"],"description":"Specify the value in the path to swap to","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf1SwapType","description":"Specify the value in the path to swap to"},"catalogObject":{"type":"string"}},"required":["swapType","catalogObject"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType":{"type":"string","enum":["all"],"description":"Keep the current path value.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22":{"type":"object","properties":{"swapType":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2OneOf2SwapType","description":"Keep the current path value."}},"required":["swapType"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2":{"oneOf":[{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath20"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath21"},{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath22"}],"description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed.","title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo":{"type":"object","properties":{"path0":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath0","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path1":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath1","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."},"path2":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsToPath2","description":"The rule used to update this specific path value when the swap is performed. If the specified path (when resolved) does not exist, the swap is not performed."}},"required":["path0","path1"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsFrom"},"to":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItemsTo"}},"required":["from","to"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems"},"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Swaps":{"type":"object","properties":{"toConnection":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsToConnection"},"deploymentSwaps":{"type":"array","items":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1SwapsDeploymentSwapsItems"}}},"required":["toConnection","deploymentSwaps"],"title":"V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Swaps"},"SourceSwapPoliciesUpdateSourceSwapPolicyRequest1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Type"},"name":{"type":"string","description":"Name of the source swap policy."},"fromConnectionId":{"type":"string","description":"ID of the connection to swap."},"swaps":{"$ref":"#/components/schemas/V2SourceSwapPoliciesPolicyIdPatchRequestBodyContentApplicationJsonSchemaOneOf1Swaps"}},"description":"Deployment swap policy","title":"SourceSwapPoliciesUpdateSourceSwapPolicyRequest1"},"sourceSwapPolicies_updateSourceSwapPolicy_Request":{"oneOf":[{"$ref":"#/components/schemas/SourceSwapPoliciesUpdateSourceSwapPolicyRequest0"},{"$ref":"#/components/schemas/SourceSwapPoliciesUpdateSourceSwapPolicyRequest1"}],"description":"Update source swap policy request","title":"sourceSwapPolicies_updateSourceSwapPolicy_Request"},"sourceSwapPolicies_updateSourceSwapPolicy_Response_200":{"type":"object","properties":{"policyId":{"type":"string","description":"Unique identifier of the source swap policy."}},"required":["policyId"],"description":"Source Swap Policy Response","title":"sourceSwapPolicies_updateSourceSwapPolicy_Response_200"},"sourceSwapPolicies_deleteSourceSwapPolicy_Response_200":{"type":"object","properties":{},"title":"sourceSwapPolicies_deleteSourceSwapPolicy_Response_200"},"V2TagsGetResponsesContentApplicationJsonSchemaEntriesItemsColor":{"type":"string","enum":["cyan","grass","violet","plum","amber","bronze"],"title":"V2TagsGetResponsesContentApplicationJsonSchemaEntriesItemsColor"},"V2TagsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"versionTagId":{"type":"string"},"name":{"type":"string"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"description":{"type":"string"},"color":{"$ref":"#/components/schemas/V2TagsGetResponsesContentApplicationJsonSchemaEntriesItemsColor"}},"required":["versionTagId","name","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2TagsGetResponsesContentApplicationJsonSchemaEntriesItems"},"tags_listVersionTag_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TagsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"tags_listVersionTag_Response_200"},"V2TagsPostRequestBodyContentApplicationJsonSchemaColor":{"type":"string","enum":["cyan","grass","violet","plum","amber","bronze"],"description":"Color to associate with the tag in Sigma","title":"V2TagsPostRequestBodyContentApplicationJsonSchemaColor"},"tags_createVersionTag_Response_200":{"type":"object","properties":{"name":{"type":"string"},"versionTagId":{"type":"string"}},"required":["name","versionTagId"],"title":"tags_createVersionTag_Response_200"},"V2TagsTagIdPatchResponsesContentApplicationJsonSchemaColor":{"type":"string","enum":["cyan","grass","violet","plum","amber","bronze"],"title":"V2TagsTagIdPatchResponsesContentApplicationJsonSchemaColor"},"tags_updateVersionTag_Response_200":{"type":"object","properties":{"versionTagId":{"type":"string"},"name":{"type":"string"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"description":{"type":"string"},"color":{"$ref":"#/components/schemas/V2TagsTagIdPatchResponsesContentApplicationJsonSchemaColor"}},"required":["versionTagId","name","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"tags_updateVersionTag_Response_200"},"tags_deleteVersionTag_Response_200":{"type":"object","properties":{},"title":"tags_deleteVersionTag_Response_200"},"V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems"},"tags_listWorkbooksForTag_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TagsTagIdWorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"tags_listWorkbooksForTag_Response_200"},"V2TeamsGetParametersVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsGetParametersVisibility"},"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0ItemsVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0ItemsVisibility"},"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0Items":{"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/V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0ItemsVisibility"},"isArchived":{"type":"boolean"}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility"],"title":"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0Items"},"TeamsListTeamsResponse2000":{"type":"array","items":{"$ref":"#/components/schemas/V2TeamsGetResponsesContentApplicationJsonSchemaOneOf0Items"},"description":"One page of results","title":"TeamsListTeamsResponse2000"},"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsVisibility"},"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems":{"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/V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsVisibility"},"isArchived":{"type":"boolean"}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility"],"title":"V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"},"TeamsListTeamsResponse2001":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TeamsGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"}},"nextPage":{"type":["string","null"]}},"required":["entries","nextPage"],"description":"Multiple pages of results","title":"TeamsListTeamsResponse2001"},"teams_listTeams_Response_200":{"oneOf":[{"$ref":"#/components/schemas/TeamsListTeamsResponse2000"},{"$ref":"#/components/schemas/TeamsListTeamsResponse2001"}],"title":"teams_listTeams_Response_200"},"V21TeamsGetParametersVisibility":{"type":"string","enum":["public","private"],"title":"V21TeamsGetParametersVisibility"},"V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility":{"type":"string","enum":["public","private"],"title":"V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility"},"V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItems":{"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/V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItemsVisibility"},"isArchived":{"type":"boolean"}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility"],"title":"V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItems"},"teams_v2_1_listTeams_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V21TeamsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"teams_v2_1_listTeams_Response_200"},"V2TeamsPostRequestBodyContentApplicationJsonSchemaVisibility":{"type":"string","enum":["public","private"],"description":"Whether to make a public or private team. Defaults to private.","title":"V2TeamsPostRequestBodyContentApplicationJsonSchemaVisibility"},"V2TeamsPostResponsesContentApplicationJsonSchemaVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsPostResponsesContentApplicationJsonSchemaVisibility"},"teams_createTeam_Response_200":{"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/V2TeamsPostResponsesContentApplicationJsonSchemaVisibility"},"isArchived":{"type":"boolean"},"members":{"type":"array","items":{"type":"string"}},"workspaceId":{"type":["string","null"]}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility","members","workspaceId"],"title":"teams_createTeam_Response_200"},"V2TeamsTeamIdGetResponsesContentApplicationJsonSchemaVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsTeamIdGetResponsesContentApplicationJsonSchemaVisibility"},"teams_getTeam_Response_200":{"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/V2TeamsTeamIdGetResponsesContentApplicationJsonSchemaVisibility"},"isArchived":{"type":"boolean"},"members":{"type":"array","items":{"type":"string"}}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility","members"],"title":"teams_getTeam_Response_200"},"V2TeamsTeamIdPatchRequestBodyContentApplicationJsonSchemaVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsTeamIdPatchRequestBodyContentApplicationJsonSchemaVisibility"},"V2TeamsTeamIdPatchResponsesContentApplicationJsonSchemaVisibility":{"type":"string","enum":["public","private"],"title":"V2TeamsTeamIdPatchResponsesContentApplicationJsonSchemaVisibility"},"teams_updateTeam_Response_200":{"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/V2TeamsTeamIdPatchResponsesContentApplicationJsonSchemaVisibility"},"isArchived":{"type":"boolean"}},"required":["teamId","createdBy","updatedBy","createdAt","updatedAt","name","description","visibility"],"title":"teams_updateTeam_Response_200"},"teams_deleteTeam_Response_200":{"type":"object","properties":{},"title":"teams_deleteTeam_Response_200"},"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValueType"},"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Value for the user attribute assigned to the team.","title":"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValue"},"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"userAttributeId":{"type":"string","description":"ID of the user attribute."},"userAttributeName":{"type":"string","description":"Name of the user attribute."},"value":{"$ref":"#/components/schemas/V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsValue","description":"Value for the user attribute assigned to the team."}},"required":["userAttributeId","userAttributeName","value"],"title":"V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems"},"teams_getTeamUserAttributeAssignments_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TeamsTeamIdUserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"teams_getTeamUserAttributeAssignments_Response_200"},"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType"},"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"The value of the user attribute","title":"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue"},"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItems":{"type":"object","properties":{"userAttributeId":{"type":"string","description":"Unique identifier of the user attribute."},"value":{"$ref":"#/components/schemas/V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue","description":"The value of the user attribute"}},"required":["userAttributeId","value"],"title":"V2TeamsTeamIdAssignedUserAttributesPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"},"teams_assignUserAttributesToTeam_Response_200":{"type":"object","properties":{},"title":"teams_assignUserAttributesToTeam_Response_200"},"V2TeamsTeamIdMembersGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"userId":{"type":"string","description":"User ID, equivalent to Member ID"},"isTeamAdmin":{"type":"boolean"},"addedBy":{"type":"string","description":"User ID of the user who added this member to the team"}},"required":["userId","isTeamAdmin","addedBy"],"title":"V2TeamsTeamIdMembersGetResponsesContentApplicationJsonSchemaEntriesItems"},"teams_getTeamMembers_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TeamsTeamIdMembersGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"teams_getTeamMembers_Response_200"},"teams_updateTeamMembers_Response_200":{"type":"object","properties":{},"title":"teams_updateTeamMembers_Response_200"},"V2TemplatesGetParametersSource":{"type":"string","enum":["internal","external"],"description":"Filters results to templates based on their source. Set to internal to only retrieve templates created within your organization. Set to external to only retrieve templates shared to your organization. Do not specify a source to list all templates regardless of their source.","title":"V2TemplatesGetParametersSource"},"V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string"},"name":{"type":"string"}},"required":["versionTagId","name"],"title":"V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"templateId":{"type":"string"},"templateUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}}},"required":["templateId","templateUrlId","name","url","path","latestVersion","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItems"},"templates_listTemplates_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"templates_listTemplates_Response_200"},"V2TemplatesTemplateIdGetResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string"},"name":{"type":"string"}},"required":["versionTagId","name"],"title":"V2TemplatesTemplateIdGetResponsesContentApplicationJsonSchemaTagsItems"},"templates_getTemplate_Response_200":{"type":"object","properties":{"templateId":{"type":"string"},"templateUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdGetResponsesContentApplicationJsonSchemaTagsItems"}}},"required":["templateId","templateUrlId","name","url","path","latestVersion","createdBy","updatedBy","createdAt","updatedAt"],"title":"templates_getTemplate_Response_200"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems":{"type":"object","properties":{"fromMetric":{"type":"string","description":"Metric in the data source."},"toMetric":{"type":"string","description":"Metric in the data source."}},"required":["fromMetric","toMetric"],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems":{"type":"object","properties":{"fromColumn":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"toColumn":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"}},"required":["fromColumn","toColumn"],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap from."},"toId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap to."},"metricMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"}},"columnMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"}}},"required":["fromId","toId"],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems":{"type":"object","properties":{"fromPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"},"toPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"}},"required":["fromPath","toPath"],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"},"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the connection to swap from."},"toId":{"type":"string","description":"ID of the connection to swap to."},"swapTables":{"type":"boolean","description":"Whether to swap all tables in the connection"},"paths":{"type":"array","items":{"$ref":"#/components/schemas/V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"}}},"required":["fromId","toId"],"title":"V2TemplatesTemplateIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"},"templates_sourceSwapTemplate_Response_200":{"type":"object","properties":{"unswappedSources":{"type":"array","items":{"type":"string"},"description":"IDs of sources in the workbook that were not swapped."},"unswappedConnections":{"type":"array","items":{"type":"string"},"description":"IDs of custom SQL connections in the workbook that were not swapped."}},"required":["unswappedSources","unswappedConnections"],"title":"templates_sourceSwapTemplate_Response_200"},"templates_saveWorkbookFromTemplate_Response_200":{"type":"object","properties":{"workbookId":{"type":"string"}},"required":["workbookId"],"title":"templates_saveWorkbookFromTemplate_Response_200"},"V2TenantsGetParametersKey":{"type":"string","enum":["createdAt","createdBy","name","url"],"description":"Field to sort the results by","title":"V2TenantsGetParametersKey"},"V2TenantsGetParametersOrder":{"type":"string","enum":["asc","desc"],"description":"Sort order for the results","title":"V2TenantsGetParametersOrder"},"V2TenantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant organization"},"parentOrganizationId":{"type":"string","description":"Unique identifier of the tenant's parent organization"},"createdBy":{"type":"string","description":"Unique identifier of the user who created the tenant organization"},"updatedBy":{"type":"string","description":"Unique identifier of the user who last updated the tenant organization"},"createdAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was created. Format: ISO 8601 timestamp"},"updatedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was last updated. Format: ISO 8601 timestamp"},"tenantOrganizationName":{"type":"string","description":"Name of the tenant organization to create"},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization"},"sharedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was shared, if applicable. Format: ISO 8601 timestamp"},"tenantCloudProvider":{"type":"string","description":"Cloud provider the tenant organization is hosted on"},"tenantRegion":{"type":"string","description":"Region the tenant organization is hosted in"},"tenantApiUrl":{"type":"string","description":"Base URL for accessing the tenant organization API"}},"required":["tenantOrganizationId","parentOrganizationId","createdBy","updatedBy","createdAt","updatedAt","tenantOrganizationName","tenantOrganizationSlug"],"title":"V2TenantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"tenants_listTenants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/V2TenantsGetResponsesContentApplicationJsonSchemaEntriesItems"},{"type":"null"}]},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"tenants_listTenants_Response_200"},"V2TenantsPostRequestBodyContentApplicationJsonSchemaCloudProvider":{"type":"string","enum":["aws","aws-au","aws-ca","aws-eu","aws-uk","aws-us-a","azure-ca","azure-eu","azure-uk","azure-us","gcp","gcp-us"],"description":"Cloud provider to create the tenant organization in. Defaults to the same cloud provider as the parent organization","title":"V2TenantsPostRequestBodyContentApplicationJsonSchemaCloudProvider"},"tenants_createTenant_Response_200":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant organization"},"parentOrganizationId":{"type":"string","description":"Unique identifier of the tenant's parent organization"},"createdBy":{"type":"string","description":"Unique identifier of the user who created the tenant organization"},"updatedBy":{"type":"string","description":"Unique identifier of the user who last updated the tenant organization"},"createdAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was created. Format: ISO 8601 timestamp"},"updatedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was last updated. Format: ISO 8601 timestamp"},"tenantOrganizationName":{"type":"string","description":"Name of the tenant organization to create"},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization"},"sharedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was shared, if applicable. Format: ISO 8601 timestamp"},"tenantCloudProvider":{"type":"string","description":"Cloud provider the tenant organization is hosted on"},"tenantRegion":{"type":"string","description":"Region the tenant organization is hosted in"},"tenantApiUrl":{"type":"string","description":"Base URL for accessing the tenant organization API"}},"required":["tenantOrganizationId","parentOrganizationId","createdBy","updatedBy","createdAt","updatedAt","tenantOrganizationName","tenantOrganizationSlug"],"title":"tenants_createTenant_Response_200"},"tenants_getTenant_Response_200":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant organization"},"parentOrganizationId":{"type":"string","description":"Unique identifier of the tenant's parent organization"},"createdBy":{"type":"string","description":"Unique identifier of the user who created the tenant organization"},"updatedBy":{"type":"string","description":"Unique identifier of the user who last updated the tenant organization"},"createdAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was created. Format: ISO 8601 timestamp"},"updatedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was last updated. Format: ISO 8601 timestamp"},"tenantOrganizationName":{"type":"string","description":"Name of the tenant organization to create"},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization"},"sharedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was shared, if applicable. Format: ISO 8601 timestamp"},"tenantCloudProvider":{"type":"string","description":"Cloud provider the tenant organization is hosted on"},"tenantRegion":{"type":"string","description":"Region the tenant organization is hosted in"},"tenantApiUrl":{"type":"string","description":"Base URL for accessing the tenant organization API"}},"required":["tenantOrganizationId","parentOrganizationId","createdBy","updatedBy","createdAt","updatedAt","tenantOrganizationName","tenantOrganizationSlug"],"title":"tenants_getTenant_Response_200"},"tenants_patchTenant_Response_200":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant organization"},"parentOrganizationId":{"type":"string","description":"Unique identifier of the tenant's parent organization"},"createdBy":{"type":"string","description":"Unique identifier of the user who created the tenant organization"},"updatedBy":{"type":"string","description":"Unique identifier of the user who last updated the tenant organization"},"createdAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was created. Format: ISO 8601 timestamp"},"updatedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was last updated. Format: ISO 8601 timestamp"},"tenantOrganizationName":{"type":"string","description":"Name of the tenant organization to create"},"tenantOrganizationSlug":{"type":"string","description":"URL identifier for the tenant organization"},"sharedAt":{"type":"string","format":"date-time","description":"Timestamp when the tenant organization was shared, if applicable. Format: ISO 8601 timestamp"},"tenantCloudProvider":{"type":"string","description":"Cloud provider the tenant organization is hosted on"},"tenantRegion":{"type":"string","description":"Region the tenant organization is hosted in"},"tenantApiUrl":{"type":"string","description":"Base URL for accessing the tenant organization API"}},"required":["tenantOrganizationId","parentOrganizationId","createdBy","updatedBy","createdAt","updatedAt","tenantOrganizationName","tenantOrganizationSlug"],"title":"tenants_patchTenant_Response_200"},"tenants_deleteTenant_Response_200":{"type":"object","properties":{},"title":"tenants_deleteTenant_Response_200"},"tenants_getTenantWorkbook_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook deployed to the tenant organization"},"workbookUrl":{"type":"string","description":"URL to access the workbook in the tenant organization"}},"required":["workbookId","workbookUrl"],"title":"tenants_getTenantWorkbook_Response_200"},"V2TenantsTenantOrganizationIdCapabilitiesDeploymentsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of a tenant organization that can be deployed to."}},"required":["tenantOrganizationId"],"title":"V2TenantsTenantOrganizationIdCapabilitiesDeploymentsGetResponsesContentApplicationJsonSchemaEntriesItems"},"tenants_listTenantDeploymentCapabilities_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TenantsTenantOrganizationIdCapabilitiesDeploymentsGetResponsesContentApplicationJsonSchemaEntriesItems"},"description":"Array of results returned by the endpoint"},"nextPageToken":{"type":"string","description":"A string that can be passed to the `pageToken` parameter in the next request to fetch the next page of results. Not present in the last page of results.\n**Must be treated as an opaque string.**"}},"required":["entries"],"title":"tenants_listTenantDeploymentCapabilities_Response_200"},"V2TenantsTenantOrganizationIdCapabilitiesDeploymentsBatchAddPostResponsesContentApplicationJsonSchemaCapabilitiesItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of a tenant organization that can be deployed to."}},"required":["tenantOrganizationId"],"title":"V2TenantsTenantOrganizationIdCapabilitiesDeploymentsBatchAddPostResponsesContentApplicationJsonSchemaCapabilitiesItems"},"tenants_addTenantDeploymentCapabilities_Response_200":{"type":"object","properties":{"capabilities":{"type":"array","items":{"$ref":"#/components/schemas/V2TenantsTenantOrganizationIdCapabilitiesDeploymentsBatchAddPostResponsesContentApplicationJsonSchemaCapabilitiesItems"}}},"required":["capabilities"],"title":"tenants_addTenantDeploymentCapabilities_Response_200"},"tenants_removeTenantDeploymentCapabilities_Response_200":{"type":"object","properties":{},"title":"tenants_removeTenantDeploymentCapabilities_Response_200"},"V2TranslationsOrganizationGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"lng":{"type":"string","description":"The locale identifier corresponding to the language of the translation."},"locale":{"type":"string","description":"The corrected locale identifier corresponding to the language of the translation. This identifier can be used in Sigma's query parameters (ex. `:lng=en-gb`)"},"lng_variant":{"type":["string","null"],"description":"The name of the custom translation variant, if applicable"},"createdBy":{"type":"string","description":"The user ID of the creator"},"updatedBy":{"type":"string","description":"The user ID of the last updater"},"createdAt":{"type":"string","format":"date-time","description":"The creation timestamp"},"updatedAt":{"type":"string","format":"date-time","description":"The last update timestamp"}},"required":["lng","locale","lng_variant","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2TranslationsOrganizationGetResponsesContentApplicationJsonSchemaEntriesItems"},"translations_listOrgLocales_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2TranslationsOrganizationGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"translations_listOrgLocales_Response_200"},"translations_createOrgTranslation_Response_200":{"type":"object","properties":{},"title":"translations_createOrgTranslation_Response_200"},"translations_getOrgTranslations_Response_200":{"type":"object","properties":{"translations":{"type":"object","additionalProperties":{"type":"string"},"description":"A JSON object with phrases as keys and their translations as values"}},"required":["translations"],"title":"translations_getOrgTranslations_Response_200"},"translations_updateOrgTranslation_Response_200":{"type":"object","properties":{},"title":"translations_updateOrgTranslation_Response_200"},"translations_deleteOrgTranslation_Response_200":{"type":"object","properties":{},"title":"translations_deleteOrgTranslation_Response_200"},"translations_getOrgTranslationsWithVariant_Response_200":{"type":"object","properties":{"translations":{"type":"object","additionalProperties":{"type":"string"},"description":"A JSON object with phrases as keys and their translations as values"}},"required":["translations"],"title":"translations_getOrgTranslationsWithVariant_Response_200"},"translations_updateOrgTranslationWithVariant_Response_200":{"type":"object","properties":{},"title":"translations_updateOrgTranslationWithVariant_Response_200"},"translations_deleteOrgTranslationWithVariant_Response_200":{"type":"object","properties":{},"title":"translations_deleteOrgTranslationWithVariant_Response_200"},"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValueType"},"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Default value of the user attribute.","title":"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValue"},"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"userAttributeId":{"type":"string","description":"Unique identifier of the user attribute."},"name":{"type":"string","description":"Name of the user attribute."},"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":{"type":["string","null"],"description":"Description of the user attribute."},"defaultValue":{"oneOf":[{"$ref":"#/components/schemas/V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItemsDefaultValue"},{"type":"null"}],"description":"Default value of the user attribute."}},"required":["userAttributeId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems"},"userAttributes_listUserAttributes_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"userAttributes_listUserAttributes_Response_200"},"V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValueType"},"V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Default value of the user attribute.","title":"V2UserAttributesPostRequestBodyContentApplicationJsonSchemaDefaultValue"},"V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValueType"},"V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Default value of the user attribute.","title":"V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValue"},"userAttributes_createUserAttribute_Response_200":{"type":"object","properties":{"userAttributeId":{"type":"string","description":"Unique identifier of the user attribute."},"name":{"type":"string","description":"Name of the user attribute."},"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":{"type":["string","null"],"description":"Description of the user attribute."},"defaultValue":{"oneOf":[{"$ref":"#/components/schemas/V2UserAttributesPostResponsesContentApplicationJsonSchemaDefaultValue"},{"type":"null"}],"description":"Default value of the user attribute."}},"required":["userAttributeId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"userAttributes_createUserAttribute_Response_200"},"V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValueType"},"V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Default value of the user attribute.","title":"V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValue"},"userAttributes_getUserAttribute_Response_200":{"type":"object","properties":{"userAttributeId":{"type":"string","description":"Unique identifier of the user attribute."},"name":{"type":"string","description":"Name of the user attribute."},"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":{"type":["string","null"],"description":"Description of the user attribute."},"defaultValue":{"oneOf":[{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdGetResponsesContentApplicationJsonSchemaDefaultValue"},{"type":"null"}],"description":"Default value of the user attribute."}},"required":["userAttributeId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"userAttributes_getUserAttribute_Response_200"},"userAttributes_deleteUserAttribute_Response_200":{"type":"object","properties":{},"title":"userAttributes_deleteUserAttribute_Response_200"},"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType"},"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Assigned value.","title":"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValue"},"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItemsValue","description":"Assigned value."},"priority":{"type":"number","format":"double","description":"Priority of the assignment."},"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":["teamId","value","priority","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems"},"userAttributes_getUserAttributeTeamAssignments_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"userAttributes_getUserAttributeTeamAssignments_Response_200"},"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType"},"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"The value of the user attribute","title":"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue"},"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue","description":"The value of the user attribute"}},"required":["teamId","value"],"title":"V2UserAttributesUserAttributeIdTeamsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"},"userAttributes_setUserAttributeForTeams_Response_200":{"type":"object","properties":{},"title":"userAttributes_setUserAttributeForTeams_Response_200"},"V2UserAttributesUserAttributeIdTeamsPatchRequestBodyContentApplicationJsonSchemaDeleteItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team."}},"required":["teamId"],"title":"V2UserAttributesUserAttributeIdTeamsPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"userAttributes_updateUserAttributeForTeams_Response_200":{"type":"object","properties":{},"title":"userAttributes_updateUserAttributeForTeams_Response_200"},"userAttributes_deleteUserAttributeForTeam_Response_200":{"type":"object","properties":{},"title":"userAttributes_deleteUserAttributeForTeam_Response_200"},"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValueType"},"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Assigned value.","title":"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValue"},"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"userId":{"type":"string","description":"Unique identifier of the user."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItemsValue","description":"Assigned value."},"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":["userId","value","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItems"},"userAttributes_getUserAttributeUserAssignments_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"userAttributes_getUserAttributeUserAssignments_Response_200"},"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType"},"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"The value of the user attribute","title":"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue"},"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItems":{"type":"object","properties":{"userId":{"type":"string","description":"Unique identifier of the user."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue","description":"The value of the user attribute"}},"required":["userId","value"],"title":"V2UserAttributesUserAttributeIdUsersPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"},"userAttributes_setUserAttributeForUsers_Response_200":{"type":"object","properties":{},"title":"userAttributes_setUserAttributeForUsers_Response_200"},"V2UserAttributesUserAttributeIdUsersPatchRequestBodyContentApplicationJsonSchemaDeleteItems":{"type":"object","properties":{"userId":{"type":"string","description":"The unique identifier of the user."}},"required":["userId"],"title":"V2UserAttributesUserAttributeIdUsersPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"userAttributes_updateUserAttributeForUsers_Response_200":{"type":"object","properties":{},"title":"userAttributes_updateUserAttributeForUsers_Response_200"},"userAttributes_deleteUserAttributeForUser_Response_200":{"type":"object","properties":{},"title":"userAttributes_deleteUserAttributeForUser_Response_200"},"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType"},"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"Assigned value.","title":"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValue"},"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItemsValue","description":"Assigned value."},"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":["tenantOrganizationId","value","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"userAttributes_getUserAttributeTenantAssignments_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"userAttributes_getUserAttributeTenantAssignments_Response_200"},"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType":{"type":"string","enum":["string"],"description":"Type of user attribute.","title":"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType"},"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue":{"type":"object","properties":{"val":{"type":"string","description":"Value of the user attribute."},"type":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValueType","description":"Type of user attribute."}},"required":["val","type"],"description":"The value of the user attribute","title":"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue"},"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"Unique identifier of the tenant."},"value":{"$ref":"#/components/schemas/V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItemsValue","description":"The value of the user attribute"}},"required":["tenantOrganizationId","value"],"title":"V2UserAttributesUserAttributeIdTenantsPostRequestBodyContentApplicationJsonSchemaAssignmentsItems"},"userAttributes_setUserAttributeForTenants_Response_200":{"type":"object","properties":{},"title":"userAttributes_setUserAttributeForTenants_Response_200"},"V2UserAttributesUserAttributeIdTenantsPatchRequestBodyContentApplicationJsonSchemaDeleteItems":{"type":"object","properties":{"tenantOrganizationId":{"type":"string","description":"The unique identifier of the tenant."}},"required":["tenantOrganizationId"],"title":"V2UserAttributesUserAttributeIdTenantsPatchRequestBodyContentApplicationJsonSchemaDeleteItems"},"userAttributes_updateUserAttributeForTenants_Response_200":{"type":"object","properties":{},"title":"userAttributes_updateUserAttributeForTenants_Response_200"},"userAttributes_deleteUserAttributeForTenant_Response_200":{"type":"object","properties":{},"title":"userAttributes_deleteUserAttributeForTenant_Response_200"},"V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbooks_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"workbooks_listWorkbooks_Response_200"},"V2WorkbooksPostResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksPostResponsesContentApplicationJsonSchemaTagsItems"},"workbooks_createWorkbook_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksPostResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"workbooks_createWorkbook_Response_200"},"V2WorkbooksWorkbookIdGetResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksWorkbookIdGetResponsesContentApplicationJsonSchemaTagsItems"},"workbooks_getWorkbook_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGetResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"workbooks_getWorkbook_Response_200"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type":{"type":"string","enum":["data-model"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf0Type"},"dataModelId":{"type":"string"},"elementIds":{"type":"array","items":{"type":"string"}},"versionTagId":{"type":"string"}},"required":["type","dataModelId","elementIds"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems0"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type":{"type":"string","enum":["dataset"],"description":"Dataset (deprecated)","title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf1Type","description":"Dataset (deprecated)"},"inodeId":{"type":"string"},"url":{"type":"string","description":"URL to open this dataset in Sigma."}},"required":["type","inodeId","url"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems1"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type":{"type":"string","enum":["table"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf2Type"},"inodeId":{"type":"string"}},"required":["type","inodeId"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems2"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type":{"type":"string","enum":["custom-sql"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItemsOneOf3Type"},"connectionId":{"type":"string","description":"ID of the connection where the custom SQL element is run."},"definition":{"type":"string","description":"Raw SQL definition for the custom SQL element."},"customSqlId":{"type":"string","description":"Element ID of the custom SQL."}},"required":["type","connectionId","definition","customSqlId"],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems3"},"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems3"}],"title":"V2WorkbooksWorkbookIdSourcesGetResponsesContentApplicationJsonSchemaItems"},"V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string"},"taggedAt":{"type":"string","format":"date-time"},"taggedBy":{"type":"string"}},"required":["versionTagId","taggedAt","taggedBy"],"title":"V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"},"V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"version":{"type":"number","format":"double"},"publishedAt":{"type":"string","format":"date-time"},"publishedBy":{"type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItemsTagsItems"}}},"required":["version","publishedAt","publishedBy"],"title":"V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getVersionHistory_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdVersionHistoryGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getVersionHistory_Response_200"},"V2WorkbooksWorkbookIdCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks":{"type":"string","enum":["all","accessible"],"description":"If set to `all` (available to admins only), every saved view (bookmark) applied to the workbook is copied. If set to `accessible`, only personal saved views and those shared with the user initiating the operation are copied. Ownership of all saved views in the duplicate workbook transfers to the user initiating the operation. If not set, saved views are not copied.","title":"V2WorkbooksWorkbookIdCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks"},"V2WorkbooksWorkbookIdCopyPostResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksWorkbookIdCopyPostResponsesContentApplicationJsonSchemaTagsItems"},"workbooks_copyWorkbook_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdCopyPostResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"workbooks_copyWorkbook_Response_200"},"V2WorkbooksWorkbookIdTagVersionTagCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks":{"type":"string","enum":["all","accessible"],"description":"If set to `all` (available to admins only), every saved view (bookmark) applied to the workbook is copied. If set to `accessible`, only personal saved views and those shared with the user initiating the operation are copied. Ownership of all saved views in the duplicate workbook transfers to the user initiating the operation. If not set, saved views are not copied.","title":"V2WorkbooksWorkbookIdTagVersionTagCopyPostRequestBodyContentApplicationJsonSchemaCopyBookmarks"},"V2WorkbooksWorkbookIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksWorkbookIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems"},"workbooks_copyTaggedWorkbook_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"path":{"type":"string"},"latestVersion":{"type":"number","format":"double"},"ownerId":{"type":"string"},"createdBy":{"type":"string","description":"The identifier of the user who created this object."},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this object."},"createdAt":{"type":"string","format":"date-time","description":"When the object was created."},"updatedAt":{"type":"string","format":"date-time","description":"When the object was last updated."},"isArchived":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdTagVersionTagCopyPostResponsesContentApplicationJsonSchemaTagsItems"}},"description":{"type":"string"}},"required":["workbookId","workbookUrlId","name","url","path","latestVersion","ownerId","createdBy","updatedBy","createdAt","updatedAt"],"title":"workbooks_copyTaggedWorkbook_Response_200"},"workbooks_shareWorkbookCrossOrg_Response_200":{"type":"object","properties":{},"title":"workbooks_shareWorkbookCrossOrg_Response_200"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems":{"type":"object","properties":{"fromMetric":{"type":"string","description":"Metric in the data source."},"toMetric":{"type":"string","description":"Metric in the data source."}},"required":["fromMetric","toMetric"],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems":{"type":"object","properties":{"fromColumn":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsFromColumn"},"toColumn":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItemsToColumn"}},"required":["fromColumn","toColumn"],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap from."},"toId":{"type":"string","description":"ID of the dataset (deprecated) or table to swap to."},"metricMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsMetricMappingItems"}},"columnMapping":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItemsColumnMappingItems"}}},"required":["fromId","toId"],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaSourceMappingItems"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems":{"type":"object","properties":{"fromPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"},"toPath":{"type":"array","items":{"type":"string"},"description":"Connection path of the form ['DATABASE', 'SCHEMA', 'TABLE']"}},"required":["fromPath","toPath"],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"},"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems":{"type":"object","properties":{"fromId":{"type":"string","description":"ID of the connection to swap from."},"toId":{"type":"string","description":"ID of the connection to swap to."},"swapTables":{"type":"boolean","description":"Whether to swap all tables in the connection"},"paths":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItemsPathsItems"}}},"required":["fromId","toId"],"title":"V2WorkbooksWorkbookIdSwapSourcesPostRequestBodyContentApplicationJsonSchemaConnectionMappingItems"},"workbooks_sourceSwapWorkbook_Response_200":{"type":"object","properties":{"unswappedSources":{"type":"array","items":{"type":"string"},"description":"IDs of sources in the workbook that were not swapped."},"unswappedConnections":{"type":"array","items":{"type":"string"},"description":"IDs of custom SQL connections in the workbook that were not swapped."}},"required":["unswappedSources","unswappedConnections"],"title":"workbooks_sourceSwapWorkbook_Response_200"},"V2WorkbooksWorkbookIdSchemaGetResponsesContentApplicationJsonSchemaSqlQueryErrors":{"type":"object","properties":{"message":{"type":"string"}},"required":["message"],"title":"V2WorkbooksWorkbookIdSchemaGetResponsesContentApplicationJsonSchemaSqlQueryErrors"},"workbooks_getWorkbookSchema_Response_200":{"type":"object","properties":{"workbookId":{"type":"string","description":"Unique identifier of the workbook."},"workbookUrlId":{"type":"string"},"pages":{"type":"object","additionalProperties":{"description":"Any type"}},"sheets":{"type":"object","additionalProperties":{"description":"Any type"}},"variables":{"type":"object","additionalProperties":{"description":"Any type"}},"elements":{"type":"object","additionalProperties":{"description":"Any type"}},"sqlQueries":{"type":"object","additionalProperties":{"type":"string"}},"sqlQueryErrors":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchemaGetResponsesContentApplicationJsonSchemaSqlQueryErrors"}}},"required":["workbookId","workbookUrlId","pages","sheets","variables","elements","sqlQueries","sqlQueryErrors"],"title":"workbooks_getWorkbookSchema_Response_200"},"V2WorkbooksWorkbookIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"elementId":{"type":"string"},"name":{"type":"string"},"sql":{"type":"string"},"error":{"type":"string"}},"required":["elementId"],"title":"V2WorkbooksWorkbookIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbookQueries_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdQueriesGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_listWorkbookQueries_Response_200"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType9"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType10"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType11"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType12"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType13"}],"description":"Value of the control","title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType"},"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"name":{"type":"string"},"valueType":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItemsValueType","description":"Value of the control"}},"required":["name","valueType"],"title":"V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getWorkbookControls_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdControlsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getWorkbookControls_Response_200"},"workbooks_saveTemplateFromWorkbook_Response_200":{"type":"object","properties":{"templateId":{"type":"string"}},"required":["templateId"],"title":"workbooks_saveTemplateFromWorkbook_Response_200"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf0Type"},"sourceIds":{"type":["array","null"],"items":{"type":"string"},"description":"List of direct sources for the element. Either element IDs or data source IDs."},"elementId":{"type":"string","description":"Unique identifier of the element"},"dataSourceIds":{"type":["array","null"],"items":{"type":"string"},"description":"List of root sources for the element as data source IDs."}},"required":["type","sourceIds","elementId","dataSourceIds"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf1Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"dataModelId":{"type":"string"}},"required":["type","connectionId","name","dataModelId"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf2Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"inodeId":{"type":"string"}},"required":["type","connectionId","name","inodeId"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf3Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"definition":{"type":"string"}},"required":["type","connectionId","name","definition"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type":{"type":"string","enum":["table","dataset","data-model","element","customSQL","csv-upload"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItemsOneOf4Type"},"connectionId":{"type":["string","null"]},"name":{"type":["string","null"]},"csvId":{"type":"string","description":"Unique identifier of the uploaded CSV file"}},"required":["type","connectionId","name","csvId"],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4"},"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems4"}],"title":"V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listLineageTree_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_listLineageTree_Response_200"},"V2WorkbooksWorkbookIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"elementId":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"columns":{"type":"array","items":{"type":"string"}},"vizualizationType":{"type":"string"},"error":{"type":"string"}},"required":["elementId"],"title":"V2WorkbooksWorkbookIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbookElements_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_listWorkbookElements_Response_200"},"V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType":{"type":"object","properties":{},"description":"The column's data type, represented as a recursive type object.","title":"V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"columnId":{"type":"string","description":"Column ID"},"name":{"type":"string","description":"Column name"},"formula":{"type":"string","description":"Column formula or source column reference."},"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType","description":"The column's data type, represented as a recursive type object."},"elementId":{"type":"string","description":"Element ID"}},"required":["columnId","name","formula","type","elementId"],"title":"V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getWorkbookColumns_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getWorkbookColumns_Response_200"},"V2WorkbooksWorkbookIdBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"V2WorkbooksWorkbookIdBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getWorkbookBookmarks_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getWorkbookBookmarks_Response_200"},"workbooks_postWorkbookBookmarks_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_postWorkbookBookmarks_Response_200"},"workbooks_getWorkbookBookmark_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_getWorkbookBookmark_Response_200"},"workbooks_updateWorkbookBookmark_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_updateWorkbookBookmark_Response_200"},"workbooks_deleteWorkbookBookmarks_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteWorkbookBookmarks_Response_200"},"V2WorkbooksWorkbookIdTagsTagNameBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"V2WorkbooksWorkbookIdTagsTagNameBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getTaggedWorkbookBookmarks_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdTagsTagNameBookmarksGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getTaggedWorkbookBookmarks_Response_200"},"workbooks_getTaggedWorkbookBookmark_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_getTaggedWorkbookBookmark_Response_200"},"workbooks_updateTaggedWorkbookBookmark_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_updateTaggedWorkbookBookmark_Response_200"},"workbooks_deleteTaggedWorkbookBookmark_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteTaggedWorkbookBookmark_Response_200"},"workbooks_createTaggedWorkbookBookmark_Response_200":{"type":"object","properties":{"bookmarkId":{"type":"string"},"name":{"type":"string"},"isShared":{"type":"boolean","description":"Whether the bookmark is shared."},"exploreKey":{"type":"string","description":"ID of the associated exploration."},"isDefault":{"type":"boolean","description":"Whether the bookmark is default."}},"required":["bookmarkId","name","isShared","exploreKey"],"title":"workbooks_createTaggedWorkbookBookmark_Response_200"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0":{"type":"object","properties":{"nodeId":{"type":"string"},"type":{"type":"string"}},"required":["nodeId","type"],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1":{"type":"object","properties":{"nodeId":{"type":"string"},"type":{"type":"string"},"name":{"type":"string"},"elementId":{"type":"string"}},"required":["nodeId","type","name","elementId"],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2":{"type":"object","properties":{"nodeId":{"type":"string"},"type":{"type":"string"},"name":{"type":"string"}},"required":["nodeId","type","name"],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies2"}],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType":{"type":"string","enum":["lookup","source","dependency"],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType"},"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems":{"type":"object","properties":{"source":{"type":"string"},"target":{"type":"string"},"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItemsType"}},"required":["source","target","type"],"title":"V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems"},"workbooks_listLineage_Response_200":{"type":"object","properties":{"dependencies":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaDependencies"}},"edges":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdLineageElementsElementIdGetResponsesContentApplicationJsonSchemaEdgesItems"}}},"required":["dependencies","edges"],"title":"workbooks_listLineage_Response_200"},"workbooks_getElementQuery_Response_200":{"type":"object","properties":{"elementId":{"type":"string"},"name":{"type":"string"},"sql":{"type":"string"},"error":{"type":"string"}},"required":["elementId"],"title":"workbooks_getElementQuery_Response_200"},"V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType":{"type":"object","properties":{},"description":"The column's data type, represented as a recursive type object.","title":"V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType"},"V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"columnId":{"type":"string","description":"Column ID"},"label":{"type":"string","description":"Column name"},"formula":{"type":"string","description":"Column formula"},"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItemsType","description":"The column's data type, represented as a recursive type object."}},"required":["columnId","label","formula","type"],"title":"V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getElementColumns_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdElementsElementIdColumnsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getElementColumns_Response_200"},"V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItemsSourceType":{"type":"string","enum":["workbook","page","element"],"title":"V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItemsSourceType"},"V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"embedId":{"type":"string","description":"Unique identifier of the embed."},"embedUrl":{"type":"string"},"public":{"type":"boolean"},"sourceType":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItemsSourceType"},"sourceId":{"type":["string","null"]},"sourceName":{"type":["string","null"]}},"required":["embedId","embedUrl","public","sourceType","sourceId","sourceName"],"title":"V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbookEmbeds_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdEmbedsGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"workbooks_listWorkbookEmbeds_Response_200"},"V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaEmbedType":{"type":"string","enum":["secure","public","application"],"description":"Defines the visibility and access control of the embed. Choose `public` for open access or `secure` for restricted access. The `secure` and `application` options are both deprecated.","title":"V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaEmbedType"},"V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaSourceType":{"type":"string","enum":["workbook","page","element"],"description":"Specifies the scope of the embed: \"workbook\" for the entire workbook, \"page\" for a single page, or \"element\" for a specific element within the workbook.","title":"V2WorkbooksWorkbookIdEmbedsPostRequestBodyContentApplicationJsonSchemaSourceType"},"workbooks_createWorkbookEmbed_Response_200":{"type":"object","properties":{"embedId":{"type":"string","description":"Unique identifier of the embed."},"embedUrl":{"type":"string"}},"required":["embedId","embedUrl"],"title":"workbooks_createWorkbookEmbed_Response_200"},"workbooks_deleteWorkbookEmbeds_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteWorkbookEmbeds_Response_200"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf0Type":{"type":"string","enum":["csv","jsonl","json","xlsx"],"title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf0Type"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf0Type"}},"required":["type"],"description":"Export options for csv, json, jsonl, xlsx","title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat0"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Type":{"type":"string","enum":["pdf"],"title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Type"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Layout"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf1Layout"}},"required":["type","layout"],"description":"Export options for PDF","title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat1"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf2Type":{"type":"string","enum":["png"],"title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf2Type"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormatOneOf2Type"},"pixelWidth":{"type":"number","format":"double"},"pixelHeight":{"type":"number","format":"double"}},"required":["type"],"description":"Export options for PNG","title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat2"},"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat2"}],"title":"V2WorkbooksWorkbookIdExportPostRequestBodyContentApplicationJsonSchemaFormat"},"workbooks_exportWorkbook_Response_200":{"type":"object","properties":{"jobComplete":{"type":"boolean"},"queryId":{"type":"string"},"rows":{"type":"array","items":{"type":"object","additionalProperties":{"description":"Any type"}}},"message":{"type":"string"}},"required":["jobComplete","queryId"],"title":"workbooks_exportWorkbook_Response_200"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems0"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf1Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems1"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNull","IsNotNull","Contains","StartsWith","EndsWith"],"description":"Operator","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Mode":{"type":"string","enum":["any","all"],"description":"Check condition","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Mode"},"DataTypesOneOf0Type":{"type":"string","enum":["null"],"title":"DataTypesOneOf0Type"},"DataTypes0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf0Type"}},"required":["type"],"title":"DataTypes0"},"DataTypesOneOf1Type":{"type":"string","enum":["bool"],"title":"DataTypesOneOf1Type"},"DataTypes1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf1Type"},"val":{"type":"boolean","description":"Set data value"}},"required":["type","val"],"title":"DataTypes1"},"DataTypesOneOf2Type":{"type":"string","enum":["number"],"title":"DataTypesOneOf2Type"},"DataTypes2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf2Type"},"val":{"type":"number","format":"double","description":"Set data value"}},"required":["type","val"],"title":"DataTypes2"},"DataTypesOneOf3Type":{"type":"string","enum":["string"],"title":"DataTypesOneOf3Type"},"DataTypes3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf3Type"},"val":{"type":"string","description":"Set data value"}},"required":["type","val"],"title":"DataTypes3"},"DataTypesOneOf4Type":{"type":"string","enum":["integer"],"title":"DataTypesOneOf4Type"},"DataTypes4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf4Type"},"val":{"type":"string","description":"Set data value"}},"required":["type","val"],"title":"DataTypes4"},"DataTypesOneOf5Type":{"type":"string","enum":["datetime"],"title":"DataTypesOneOf5Type"},"DataTypes5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf5Type"},"val":{"type":"string","description":"Set data value"}},"required":["type","val"],"title":"DataTypes5"},"DataTypesOneOf6Type":{"type":"string","enum":["error"],"title":"DataTypesOneOf6Type"},"DataTypes6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf6Type"},"val":{"type":"string","description":"Set data value"}},"required":["type","val"],"title":"DataTypes6"},"DataTypesOneOf7Type":{"type":"string","enum":["record"],"title":"DataTypesOneOf7Type"},"DataTypes7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf7Type"},"val":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DataTypes"},"description":"Set data value"}},"required":["type","val"],"title":"DataTypes7"},"DataTypesOneOf8Type":{"type":"string","enum":["variant"],"title":"DataTypesOneOf8Type"},"DataTypes8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf8Type"},"val":{"type":"string"}},"required":["type","val"],"title":"DataTypes8"},"DataTypesOneOf9Type":{"type":"string","enum":["array"],"title":"DataTypesOneOf9Type"},"DataTypesOneOf9ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"DataTypesOneOf9ValOneOf0Type"},"DataTypesOneOf9Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"DataTypesOneOf9Val0"},"DataTypesOneOf9ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"DataTypesOneOf9ValOneOf1Type"},"DataTypesOneOf9Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"DataTypesOneOf9Val1"},"DataTypesOneOf9ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"DataTypesOneOf9ValOneOf2Type"},"DataTypesOneOf9Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"DataTypesOneOf9Val2"},"DataTypesOneOf9ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"DataTypesOneOf9ValOneOf3Type"},"DataTypesOneOf9Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"DataTypesOneOf9Val3"},"DataTypesOneOf9ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"DataTypesOneOf9ValOneOf4Type"},"DataTypesOneOf9Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"DataTypesOneOf9Val4"},"DataTypesOneOf9ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"DataTypesOneOf9ValOneOf5Type"},"DataTypesOneOf9Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"DataTypesOneOf9Val5"},"DataTypesOneOf9ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"DataTypesOneOf9ValOneOf6Type"},"DataTypesOneOf9Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"DataTypesOneOf9Val6"},"DataTypesOneOf9Val":{"oneOf":[{"$ref":"#/components/schemas/DataTypesOneOf9Val0"},{"$ref":"#/components/schemas/DataTypesOneOf9Val1"},{"$ref":"#/components/schemas/DataTypesOneOf9Val2"},{"$ref":"#/components/schemas/DataTypesOneOf9Val3"},{"$ref":"#/components/schemas/DataTypesOneOf9Val4"},{"$ref":"#/components/schemas/DataTypesOneOf9Val5"},{"$ref":"#/components/schemas/DataTypesOneOf9Val6"}],"title":"DataTypesOneOf9Val"},"DataTypes9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DataTypesOneOf9Type"},"val":{"$ref":"#/components/schemas/DataTypesOneOf9Val"}},"required":["type","val"],"title":"DataTypes9"},"DataTypes":{"oneOf":[{"$ref":"#/components/schemas/DataTypes0"},{"$ref":"#/components/schemas/DataTypes1"},{"$ref":"#/components/schemas/DataTypes2"},{"$ref":"#/components/schemas/DataTypes3"},{"$ref":"#/components/schemas/DataTypes4"},{"$ref":"#/components/schemas/DataTypes5"},{"$ref":"#/components/schemas/DataTypes6"},{"$ref":"#/components/schemas/DataTypes7"},{"$ref":"#/components/schemas/DataTypes8"},{"$ref":"#/components/schemas/DataTypes9"}],"description":"Set a constant value for condition","title":"DataTypes"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Type"},"elementId":{"type":"string"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Op","description":"Operator"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItemsOneOf2Mode","description":"Check condition"},"value":{"oneOf":[{"$ref":"#/components/schemas/DataTypes"},{"type":"null"}],"description":"Data value"}},"required":["type","elementId","columnId","op","mode"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems2"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems2"}],"description":"Send based on conditions","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConditionsItems"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type":{"type":"string","enum":["member"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf0Type"},"userId":{"type":"string"}},"required":["type","userId"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type":{"type":"string","enum":["team"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf1Type"},"teamId":{"type":"string"}},"required":["type","teamId"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type":{"type":"string","enum":["email"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf2Type"},"email":{"type":"string"}},"required":["type","email"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type":{"type":"string","enum":["slackChannel"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf3Type"},"slackConversationId":{"type":"string"}},"required":["type","slackConversationId"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type":{"type":"string","enum":["gsheet"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf4Type"},"googleSpreadsheetUrl":{"type":"string"}},"required":["type","googleSpreadsheetUrl"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type":{"type":"string","enum":["gdrive"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf5Type"},"googleDriveFolderUrl":{"type":"string"}},"required":["type","googleDriveFolderUrl"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type":{"type":"string","enum":["cloud-export"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf0Bq":{"type":"object","properties":{"bqDestination":{"type":"string"}},"required":["bqDestination"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf0Bq"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport0":{"type":"object","properties":{"bq":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf0Bq"}},"required":["bq"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport0"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf1Sf":{"type":"object","properties":{"sfDestination":{"type":"string"},"authorization":{"type":"string"}},"required":["sfDestination","authorization"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf1Sf"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport1":{"type":"object","properties":{"sf":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf1Sf"}},"required":["sf"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport1"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf2Rs":{"type":"object","properties":{"rsDestination":{"type":"string"},"authorization":{"type":"string"}},"required":["rsDestination","authorization"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf2Rs"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport2":{"type":"object","properties":{"rs":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExportOneOf2Rs"}},"required":["rs"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport2"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport2"}],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6Type"},"cloudExport":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf6CloudExport"}},"required":["type","cloudExport"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf7Type":{"type":"string","enum":["webhook"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf7Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf7Type"},"webhookUrl":{"type":"string"}},"required":["type","webhookUrl"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems7"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8Type":{"type":"string","enum":["workbook-cloud-export"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportConnectionType":{"type":"string","enum":["snowflake","redshift"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportConnectionType"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportExportFormat":{"type":"string","enum":["csv","csv.gzip"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportExportFormat"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExport":{"type":"object","properties":{"connectionType":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportConnectionType"},"authorization":{"type":"string"},"uri":{"type":"string"},"exportFormat":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExportExportFormat"},"timestampedUri":{"type":["string","null"]}},"required":["uri","exportFormat","timestampedUri"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExport"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8Type"},"workbookCloudExport":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItemsOneOf8WorkbookCloudExport"}},"required":["type","workbookCloudExport"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems8"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems8"}],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaTargetsItems"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConfig":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"rowLimit":{"type":"number","format":"double"}},"required":["title","messageBody"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaConfig"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions6"}],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf0Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource0"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf1Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource1"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf2Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource2"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf3Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource3"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf4Type"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource4"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource4"}],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource"},"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsFormatOptions"},"source":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItemsSource"}},"required":["formatOptions","source"],"title":"V2WorkbooksWorkbookIdSendPostRequestBodyContentApplicationJsonSchemaAttachmentsItems"},"workbooks_sendWorkbook_Response_200":{"type":"object","properties":{},"title":"workbooks_sendWorkbook_Response_200"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsSchedule":{"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":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsSchedule"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions3"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfigWindow"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfig"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettingsFiltersItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables10"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables11"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables12"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables13"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables13"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettingsVariables"}}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicRecipientSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2EmbedOpts"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2FormattingPivotHeaderStyle"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2AlertConfig"},"notificationName":{"type":"string"},"dashboardSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DashboardSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2WorkbookVariant"},"embedOpts":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2EmbedOpts"},"formatting":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2Formatting"},{"type":"null"}]}},"required":["title","messageBody","notificationAttachments"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0Items":{"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/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsSchedule"},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0ItemsConfigV2"},"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":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0Items"},"WorkbooksListWorkbookSchedulesResponse2000":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf0Items"},"title":"WorkbooksListWorkbookSchedulesResponse2000"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule":{"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":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions3"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfigWindow"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfig"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettingsFiltersItems"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables0"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables1"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables3"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables4"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables5"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables6"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables7"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables8"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables9"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables10"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables11"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables12"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables13"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables13"}],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettingsVariables"}}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicRecipientSettings"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2EmbedOpts"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2FormattingPivotHeaderStyle"}},"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2AlertConfig"},"notificationName":{"type":"string"},"dashboardSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DashboardSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2WorkbookVariant"},"embedOpts":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2EmbedOpts"},"formatting":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2Formatting"},{"type":"null"}]}},"required":["title","messageBody","notificationAttachments"],"title":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2"},"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems":{"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/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule"},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsConfigV2"},"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":"V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"},"WorkbooksListWorkbookSchedulesResponse2001":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"}},"nextPage":{"type":["string","null"]}},"required":["entries","nextPage"],"title":"WorkbooksListWorkbookSchedulesResponse2001"},"workbooks_listWorkbookSchedules_Response_200":{"oneOf":[{"$ref":"#/components/schemas/WorkbooksListWorkbookSchedulesResponse2000"},{"$ref":"#/components/schemas/WorkbooksListWorkbookSchedulesResponse2001"}],"title":"workbooks_listWorkbookSchedules_Response_200"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule":{"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":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions6"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions3"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettingsFiltersItems"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettings"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables13"}],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettingsVariables"}}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2WorkbookVariant"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2FormattingPivotHeaderStyle"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2FormattingPivotHeaderStyle"}},"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2Formatting"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2AlertConfig"},"notificationName":{"type":"string"},"dashboardSettings":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DashboardSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"workbookVariant":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2WorkbookVariant"},"embedOpts":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2EmbedOpts"},"formatting":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2Formatting"},{"type":"null"}]}},"required":["title","messageBody","notificationAttachments"],"title":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2"},"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems":{"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/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"configV2":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsConfigV2"},"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":"V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_v2_1_listWorkbookSchedules_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"workbooks_v2_1_listWorkbookSchedules_Response_200"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team to export to"},"email":{"type":"string","description":"Email address to export to"},"ccEmail":{"type":"string","description":"Email address to add as a Cc recipient"},"bccEmail":{"type":"string","description":"Email address to add as a Bcc recipient"},"ccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Cc recipient"},"bccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Bcc recipient"},"slackConversationId":{"type":"string","description":"Slack channel ID or member ID to export to"},"googleSpreadsheetUrl":{"type":"string","description":"URL of the Google Sheet to export to"},"googleDriveFolderUrl":{"type":"string","description":"URL of the Google Drive folder to export to"},"webhookUrl":{"type":"string","description":"URL of the webhook endpoint to export to"}},"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaTargetItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"required":["cronSpec","timezone"],"description":"When to send the workbook export.","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaSchedule"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"description":"CSV export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"description":"JSONL export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"description":"JSON export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["XLSX"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"description":"XLSX export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout"}},"required":["type"],"description":"PDF export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type"}},"required":["type"],"description":"PNG export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"description":"No export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6"}],"description":"Export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementIds":{"type":"array","items":{"type":"string"},"description":"Array of element identifiers to export"}},"required":["type","elementIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageIds":{"type":"array","items":{"type":"string"},"description":"Array of page identifiers to export"}},"required":["type","pageIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type"}},"required":["type"],"description":"Export all content","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2"}],"description":"Workbook export source options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions","description":"Export format options"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource","description":"Workbook export source options"}},"required":["formatOptions","workbookExportSource"],"description":"Export attachment","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergeAttachments":{"type":"boolean","description":"Combines multiple PDF or XLSX attachments into a single file"},"zipAttachments":{"type":"boolean","description":"Send attachments as a .zip file"}},"description":"Export attachment settings","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string","description":"Version tag to export"},"bookmarkId":{"type":"string","description":"Bookmark to export"}},"description":"Workbook variant","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"description":"Always send the export","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type":{"type":"string","enum":["isEmpty"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's no data","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type":{"type":"string","enum":["isNotEmpty"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's data","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type":{"type":"string","enum":["column"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNull","IsNotNull","Contains","StartsWith","EndsWith"],"description":"Operator","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode":{"type":"string","enum":["any","all"],"description":"Kind of condition evaluation","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Integer value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"}],"description":"Column value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"},"columnId":{"type":"string","description":"ID of the column"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op","description":"Operator"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode","description":"Kind of condition evaluation"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value","description":"Column value"}},"required":["type","elementId","columnId","op","mode"],"description":"If a condition is met","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"}],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"condition":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"}},"required":["type","condition"],"description":"Send the export based on a condition","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"}],"description":"Export condition options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value","description":"Date selection"}},"required":["type","value"],"description":"Date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03"}],"description":"Scalar value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value":{"type":"object","properties":{"true":{"type":"boolean"},"false":{"type":"boolean"},"null":{"type":"boolean"}},"required":["true","false"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value"}},"required":["type","value"],"description":"Boolean list value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems"}}},"required":["type","value"],"description":"Number list value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"}},"required":["type"],"description":"Null text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems"}}},"required":["type","value"],"description":"Text list value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems"}}},"required":["type","value"],"description":"Date list value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22"}],"description":"List value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type":{"type":"string","enum":["hierarchical-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type"},"value":{"type":"array","items":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems"}},"description":"Array of hierarchy paths. Each path is an array of segments, from the highest selected level of the hierarchy down to the lowest selected level of the hierarchy. Each segment is a `{type: \"text\", value: string}` object. For example, a Region/State/City hierarchy control with Oakland selected would be represented as `[[{\"type\":\"text\",\"value\":\"West\"}, {\"type\":\"text\",\"value\":\"California\"}, {\"type\":\"text\",\"value\":\"Oakland\"}]]`"}},"required":["type","value"],"description":"Hierarchical list value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type"},"min":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min","description":"Date selection"},"max":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max","description":"Date selection"}},"required":["type","min","max"],"description":"Date range value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type"},"min":{"type":"number","format":"double","description":"Minimum value of the range"},"max":{"type":"number","format":"double","description":"Maximum value of the range"}},"required":["type"],"description":"Number range value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type"}},"required":["type"],"description":"Null text value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type"}},"required":["type"],"description":"Null boolean value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63"}],"description":"Null value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6"}],"description":"Variable value","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings":{"type":"object","properties":{"controlValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues"},"description":"This object maps control IDs to the values that they should have when exporting the workbook."}},"description":"Workbook settings","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"description":"Style of pivot table headers","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle","description":"Style of pivot table headers"},"includeMetadata":{"type":"boolean","description":"Whether to include metadata in XLSX exports"}},"description":"Export formatting options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string","description":"Title of the message"},"messageBody":{"type":"string","description":"Body of the message"},"exportAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"description":"Attachments to include in the export"},"exportName":{"type":"string","description":"Name of the scheduled export"},"includeLink":{"type":"boolean","description":"Include a link to the exported workbook"},"runAsRecipient":{"type":"boolean","description":"Run the export queries as the recipient"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings","description":"Export attachment settings"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant","description":"Workbook variant"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions","description":"Export condition options"},"workbookSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings","description":"Workbook settings"},"formatting":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2Formatting","description":"Export formatting options"}},"required":["title","messageBody","exportAttachments"],"description":"Configuration settings for the export schedule.","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigV2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf0Type"}},"required":["type"],"description":"CSV export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf1Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf1Type"}},"required":["type"],"description":"JSONL export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf2Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf2Type"}},"required":["type"],"description":"JSON export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf3Type":{"type":"string","enum":["XLSX"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf3Type"}},"required":["type"],"description":"XLSX export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf4Layout"}},"required":["type"],"description":"PDF export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf5Type"}},"required":["type"],"description":"PNG export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptionsOneOf6Type"}},"required":["type"],"description":"No export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions6"}],"description":"Export format options","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions"},"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfig":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfigFormatOptions","description":"Export format options"},"title":{"type":"string","description":"Title of the message"},"messageBody":{"type":"string","description":"Body of the message"},"includeLink":{"type":"boolean","description":"Whether to include a link to the exported folder or document in the body of the message"},"runAsRecipient":{"type":"boolean","description":"Whether to run the export as if it were being run by the recipient"},"rowLimit":{"type":"number","format":"double","description":"Maximum number of rows to export"},"chartId":{"type":"string","description":"Identifier of the chart to export"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"description":"Specify the control ID and control value of one or more control elements in the workbook or report to filter the returned data. The control must exist in the Sigma workbook or report and target an element before you can export based on the control value.\n\n**Syntax**\n{ control-id: control-value }\n\nThe control-id is configured in the Sigma workbook or report. The control-value is the value that is passed to the control.\n\nValues can take multiple forms, depending on the data type of the control:\n\n**Boolean**\n\n- Single value: \"true\" | \"false\" | \":null\"\n- List of Boolean: \"true,false,:null\" (No space after the comma.)\n\n**Number**\n\n- Single value: \"10.54\", \":null\"\n- List of values: \"10.54,23.45,:null\" (No space after the comma.)\n- Range of numbers: \"min:10.54,max:23.45\" (No space after the comma or colon.)\n\n**Text**\n\n- Single value: \"some-text\" | \":null\" | \":empty\"\n- List of values: \"some-text,more-text,:null,:empty\" (No space after the comma.)\n\n**Date**\n\nAll dates use UTC time zones.\n\n- Fixed date using ISO-6801 format: \"2022-01-01T01:01:59\" | \":null\"\n    - Formats supported (where: %Y: year, %m: month, %d: day, %H:hours, %M: minutes, %S: seconds):\n        - %Y-%m-%d\n        - %Y-%m-%dT%H:%M\n        - %Y-%m-%dT%H:%M:%S\n- List of fixed dates: \"2022-01-01T01:01:59,2022-02-02T02:02:59,:null\"\n- Relative date: \"prior-day-3\" | \"next-day-3\"\n    - Format: [prior|next]-[year|quarter|month|week|isoWeek|day|hour|minute]-[number]\n- Date range: \"min:2022-01-01T01:01:59,max:next-day-3\" (No spaces after the comma or colon.)\n    - Leave max blank for \"on or after\" and min blank for \"on or before\", for example:\n        - \"Date-Range\": \"min:2020-04-01,max:\"\n        - \"Date-Range\": \"min:,max:next-day-3\"\n\n**Notes**\n\n- \":null\" is a special value that denotes the null primitive value.\n- \":empty\" is a special value that denotes the empty string \"\".\n\nUse [URL encoding](https://help.sigmacomputing.com/docs/special-characters-for-url-parameters) to encode characters in your control values (such as commas) to prevent the system from interpreting them as separators.\n\nFor example:\n\"New York, NY,Boston, MA\" can be encoded as:\n\n\"New%20York%2C%20NY,Boston%2C%20MA\""}},"required":["formatOptions","title","messageBody"],"description":"**[Deprecated]** Configuration settings for the export.","title":"V2WorkbooksWorkbookIdSchedulesPostRequestBodyContentApplicationJsonSchemaConfig"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule":{"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":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettings"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"}],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"}}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"}},"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"notificationName":{"type":"string"},"dashboardSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DashboardSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant"},"embedOpts":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"formatting":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2Formatting"},{"type":"null"}]}},"required":["title","messageBody","notificationAttachments"],"title":"V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2"},"workbooks_postWorkbookSchedule_Response_200":{"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/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaSchedule"},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesPostResponsesContentApplicationJsonSchemaConfigV2"},"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":"workbooks_postWorkbookSchedule_Response_200"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems":{"type":"object","properties":{"teamId":{"type":"string","description":"Unique identifier of the team to export to"},"email":{"type":"string","description":"Email address to export to"},"ccEmail":{"type":"string","description":"Email address to add as a Cc recipient"},"bccEmail":{"type":"string","description":"Email address to add as a Bcc recipient"},"ccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Cc recipient"},"bccTeamId":{"type":"string","description":"Unique identifier of the team to add as a Bcc recipient"},"slackConversationId":{"type":"string","description":"Slack channel ID or member ID to export to"},"googleSpreadsheetUrl":{"type":"string","description":"URL of the Google Sheet to export to"},"googleDriveFolderUrl":{"type":"string","description":"URL of the Google Drive folder to export to"},"webhookUrl":{"type":"string","description":"URL of the webhook endpoint to export to"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaTargetItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"A [cron expression](https://en.wikipedia.org/wiki/Cron). For example, `0 0 * * *`."},"timezone":{"type":"string","description":"An [IANA timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For example, `America/Los_Angeles`."}},"description":"When to send the workbook export.","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSchedule"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"description":"CSV export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"description":"JSONL export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"description":"JSON export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["XLSX"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"description":"XLSX export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf4Layout"}},"required":["type"],"description":"PDF export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf5Type"}},"required":["type"],"description":"PNG export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"description":"No export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions6"}],"description":"Export format options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementIds":{"type":"array","items":{"type":"string"},"description":"Array of element identifiers to export"}},"required":["type","elementIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageIds":{"type":"array","items":{"type":"string"},"description":"Array of page identifiers to export"}},"required":["type","pageIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSourceOneOf2Type"}},"required":["type"],"description":"Export all content","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource2"}],"description":"Workbook export source options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsFormatOptions","description":"Export format options"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItemsWorkbookExportSource","description":"Workbook export source options"}},"required":["formatOptions","workbookExportSource"],"description":"Export attachment","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergeAttachments":{"type":"boolean","description":"Combines multiple PDF or XLSX attachments into a single file"},"zipAttachments":{"type":"boolean","description":"Send attachments as a .zip file"}},"description":"Export attachment settings","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string","description":"Version tag to export"},"bookmarkId":{"type":"string","description":"Bookmark to export"}},"description":"Workbook variant","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"description":"Always send the export","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type":{"type":"string","enum":["isEmpty"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf0Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's no data","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type":{"type":"string","enum":["isNotEmpty"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf1Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"}},"required":["type","elementId"],"description":"If there's data","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type":{"type":"string","enum":["column"],"description":"Type of condition","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNull","IsNotNull","Contains","StartsWith","EndsWith"],"description":"Operator","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode":{"type":"string","enum":["any","all"],"description":"Kind of condition evaluation","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf1Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Integer value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2ValueOneOf3Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value3"}],"description":"Column value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Type","description":"Type of condition"},"elementId":{"type":"string","description":"ID of the element"},"columnId":{"type":"string","description":"ID of the column"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Op","description":"Operator"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Mode","description":"Kind of condition evaluation"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionOneOf2Value","description":"Column value"}},"required":["type","elementId","columnId","op","mode"],"description":"If a condition is met","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition2"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"condition":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Condition"}},"required":["type","condition"],"description":"Send the export based on a condition","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions1"}],"description":"Export condition options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf0Type"},"value":{"type":"boolean"}},"required":["type","value"],"description":"Boolean value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf1Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf2Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3ValueOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Type"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf0OneOf3Value","description":"Date selection"}},"required":["type","value"],"description":"Date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues00"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues01"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues02"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues03"}],"description":"Scalar value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value":{"type":"object","properties":{"true":{"type":"boolean"},"false":{"type":"boolean"},"null":{"type":"boolean"}},"required":["true","false"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Type"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf1Value"}},"required":["type","value"],"description":"Boolean list value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf0Type"},"value":{"type":"number","format":"double"}},"required":["type","value"],"description":"Number value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItemsOneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf0ValueItems"}}},"required":["type","value"],"description":"Number list value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf0Type"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItemsOneOf1Type"}},"required":["type"],"description":"Null text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf1ValueItems"}}},"required":["type","value"],"description":"Text list value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItemsOneOf1Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2Type"},"value":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf2OneOf2ValueItems"}}},"required":["type","value"],"description":"Date list value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues20"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues21"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues22"}],"description":"List value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type":{"type":"string","enum":["hierarchical-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItemsType"},"value":{"type":"string"}},"required":["type","value"],"description":"Text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3Type"},"value":{"type":"array","items":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf3ValueItemsItems"}},"description":"Array of hierarchy paths. Each path is an array of segments, from the highest selected level of the hierarchy down to the lowest selected level of the hierarchy. Each segment is a `{type: \"text\", value: string}` object. For example, a Region/State/City hierarchy control with Oakland selected would be represented as `[[{\"type\":\"text\",\"value\":\"West\"}, {\"type\":\"text\",\"value\":\"California\"}, {\"type\":\"text\",\"value\":\"Oakland\"}]]`"}},"required":["type","value"],"description":"Hierarchical list value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MinOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type":{"type":"string","enum":["fixed-date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf0Type"},"date":{"type":"string","description":"ISO-8601 date string"}},"required":["type","date"],"description":"Fixed date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type":{"type":"string","enum":["prior","next"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit":{"type":"string","enum":["year","quarter","month","week","isoWeek","day","hour","minute","second"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Type"},"unit":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf1Unit"},"x":{"type":"number","format":"double"}},"required":["type","unit","x"],"description":"Relative date selection, for example \"Next 4 days\"","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4MaxOneOf2Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max2"}],"description":"Date selection","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Type"},"min":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Min","description":"Date selection"},"max":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf4Max","description":"Date selection"}},"required":["type","min","max"],"description":"Date range value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf5Type"},"min":{"type":"number","format":"double","description":"Minimum value of the range"},"max":{"type":"number","format":"double","description":"Maximum value of the range"}},"required":["type"],"description":"Number range value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf0Type"}},"required":["type"],"description":"Null date value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf1Type"}},"required":["type"],"description":"Null number value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf2Type"}},"required":["type"],"description":"Null text value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValuesOneOf6OneOf3Type"}},"required":["type"],"description":"Null boolean value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues60"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues61"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues62"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues63"}],"description":"Null value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues6"}],"description":"Variable value","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings":{"type":"object","properties":{"controlValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettingsControlValues"},"description":"This object maps control IDs to the values that they should have when exporting the workbook."}},"description":"Workbook settings","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"description":"Style of pivot table headers","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle","description":"Style of pivot table headers"},"includeMetadata":{"type":"boolean","description":"Whether to include metadata in XLSX exports"}},"description":"Export formatting options","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string","description":"Title of the message"},"messageBody":{"type":"string","description":"Body of the message"},"exportAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ExportAttachmentsItems"},"description":"Attachments to include in the export"},"exportName":{"type":"string","description":"Name of the scheduled export"},"includeLink":{"type":"boolean","description":"Include a link to the exported workbook"},"runAsRecipient":{"type":"boolean","description":"Run the export queries as the recipient"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2AttachmentSettings","description":"Export attachment settings"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookVariant","description":"Workbook variant"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2ConditionOptions","description":"Export condition options"},"workbookSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2WorkbookSettings","description":"Workbook settings"},"formatting":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2Formatting","description":"Export formatting options"}},"description":"Configuration settings for the export schedule.","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaConfigV2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction":{"type":"string","enum":["pause","resume"],"description":"Action to take on the schedule. Use `pause` to pause the schedule and `resume` to resume the schedule.","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchRequestBodyContentApplicationJsonSchemaSuspensionAction"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule":{"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":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type":{"type":"string","enum":["CSV"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type":{"type":"string","enum":["JSON"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type":{"type":"string","enum":["JSONL"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type":{"type":"string","enum":["EXCEL"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type":{"type":"string","enum":["PDF"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout":{"type":"string","enum":["portrait","landscape"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Type"},"layout":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf4Layout"},"scaleFactor":{"type":"number","format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type":{"type":"string","enum":["PNG"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf5Type"},"pixelWidth":{"type":["number","null"],"format":"double"},"pixelHeight":{"type":["number","null"],"format":"double"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type":{"type":"string","enum":["NONE"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptionsOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions6"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf0Type"},"elementId":{"type":"string"}},"required":["type","elementId"],"description":"Export one element","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf1Type"},"pageId":{"type":"string"}},"required":["type","pageId"],"description":"Export one page","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type":{"type":"string","enum":["element"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf2Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple elements","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type":{"type":"string","enum":["page"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf3Type"},"nodeIds":{"type":"array","items":{"type":"string"}}},"required":["type","nodeIds"],"description":"Export multiple pages","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSourceOneOf4Type"}},"required":["type"],"description":"Export all pages and elements in a workbook","title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource4"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems":{"type":"object","properties":{"formatOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsFormatOptions"},"chartId":{"type":"string"},"workbookExportSource":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItemsWorkbookExportSource"}},"required":["formatOptions"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings":{"type":"object","properties":{"mergePdfAttachments":{"type":"boolean"},"zipAttachments":{"type":"boolean"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type":{"type":"string","enum":["always"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type":{"type":"string","enum":["workbook"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf0Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf1Type"},"sheetId":{"type":"string"}},"required":["type","sheetId"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type":{"type":"string","enum":["sheetColumn"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Type"},"sheetId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItemsOneOf2Value"}},"required":["type","sheetId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf1ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type":{"type":"string","enum":["worksheet"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type":{"type":"string","enum":["queryColumn"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Type"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItemsOneOf2Value"}},"required":["type","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf2ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type":{"type":"string","enum":["dashboard"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type":{"type":"string","enum":["isEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf0Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type":{"type":"string","enum":["isNotEmpty"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf1Type"},"tileId":{"type":"string"}},"required":["type","tileId"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type":{"type":"string","enum":["chartColumn"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0":{"type":"string","enum":["any"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1":{"type":"string","enum":["all"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode1"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op":{"type":"string","enum":["Equals","GreaterThan","GreaterThanEq","LessThan","LessThanEq","NotEquals","IsNotNull","IsNull","Contains","StartsWith","EndsWith"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type":{"type":"string","enum":["null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type":{"type":"string","enum":["bool"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf1Type"},"val":{"type":"boolean"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf2Type"},"val":{"type":"number","format":"double"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type":{"type":"string","enum":["integer"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf3Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type":{"type":"string","enum":["string"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf4Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type":{"type":"string","enum":["datetime"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf5Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type":{"type":"string","enum":["error"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf6Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type":{"type":"string","enum":["record"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf7Type"},"val":{"type":"object","additionalProperties":{"description":"Any type"}}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type":{"type":"string","enum":["array"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type":{"type":"string","enum":["boolArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf0Type"},"data":{"type":"array","items":{"type":["boolean","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type":{"type":"string","enum":["numberArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf1Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type":{"type":"string","enum":["bigintArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf2Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type":{"type":"string","enum":["stringArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf3Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type":{"type":"string","enum":["datetimeArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf4Type"},"data":{"type":"array","items":{"type":["number","null"],"format":"double"}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type":{"type":"string","enum":["bytesArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf5Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type":{"type":"string","enum":["variantArr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8ValOneOf6Type"},"data":{"type":"array","items":{"type":["string","null"]}}},"required":["type","data"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val6"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Type"},"val":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf8Val"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type":{"type":"string","enum":["variant"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2ValueOneOf9Type"},"val":{"type":"string"}},"required":["type","val"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value9"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Type"},"tileId":{"type":"string"},"mode":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Mode"},"columnId":{"type":"string"},"op":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Op"},"value":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItemsOneOf2Value"}},"required":["type","tileId","mode","columnId","op"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems2"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3Type"},"conditions":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptionsOneOf3ConditionsItems"}}},"required":["type","conditions"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions3"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow":{"type":"string","enum":["alltime","daily","weekly","always"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig":{"type":"object","properties":{"window":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfigWindow"},"volume":{"type":["number","null"],"format":"double"}},"required":["window"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems":{"type":"object","properties":{"id":{"type":"string"},"filterStr":{"type":"string"}},"required":["id","filterStr"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettings":{"type":"object","properties":{"filters":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettingsFiltersItems"}},"variableValues":{"$ref":"#/components/schemas/DashVariables"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type":{"type":"string","enum":["boolean"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf0Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type":{"type":"string","enum":["number"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf1Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type":{"type":"string","enum":["text"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf2Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type":{"type":"string","enum":["date"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf3Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type":{"type":"string","enum":["number-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf4Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type":{"type":"string","enum":["text-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf5Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type":{"type":"string","enum":["date-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf6Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type":{"type":"string","enum":["boolean-list"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf7Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type":{"type":"string","enum":["date-range"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf8Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type":{"type":"string","enum":["number-range"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf9Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type":{"type":"string","enum":["date-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf10Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type":{"type":"string","enum":["number-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf11Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type":{"type":"string","enum":["text-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf12Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type":{"type":"string","enum":["boolean-null"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariablesOneOf13Type"}},"required":["type"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables1"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables2"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables3"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables4"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables5"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables6"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables7"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables8"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables9"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables10"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables11"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables12"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables13"}],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings":{"type":"object","properties":{"variables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettingsVariables"}}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings":{"type":"object","properties":{"sourceNodeId":{"type":"string"},"recipientColumnId":{"type":"string"}},"required":["sourceNodeId","recipientColumnId"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant":{"type":"object","properties":{"tagId":{"type":"string"},"exploreKey":{"type":"string"},"bookmarkId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts":{"type":"object","properties":{"embedId":{"type":"string"},"evalConnectionId":{"type":"string"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle":{"type":"string","enum":["merged","repeated"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2Formatting":{"type":"object","properties":{"pivotHeaderStyle":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2FormattingPivotHeaderStyle"}},"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2Formatting"},"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2":{"type":"object","properties":{"title":{"type":"string"},"messageBody":{"type":"string"},"notificationAttachments":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2NotificationAttachmentsItems"}},"includeLink":{"type":"boolean"},"runAsRecipient":{"type":"boolean"},"attachmentSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AttachmentSettings"},"conditionOptions":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2ConditionOptions"},"alertConfig":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2AlertConfig"},"notificationName":{"type":"string"},"dashboardSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DashboardSettings"},"dynamicExportSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicExportSettings"},"dynamicRecipientSettings":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2DynamicRecipientSettings"},"rowLimit":{"type":"number","format":"double"},"workbookVariant":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2WorkbookVariant"},"embedOpts":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2EmbedOpts"},"formatting":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2Formatting"},{"type":"null"}]}},"required":["title","messageBody","notificationAttachments"],"title":"V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2"},"workbooks_updateWorkbookSchedule_Response_200":{"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/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaSchedule"},"configV2":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdSchedulesScheduleIdPatchResponsesContentApplicationJsonSchemaConfigV2"},"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":"workbooks_updateWorkbookSchedule_Response_200"},"workbooks_deleteWorkbookSchedule_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteWorkbookSchedule_Response_200"},"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"The UUID of the member receiving the grant","title":"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"The UUID of the team receiving the grant","title":"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"},"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"}],"title":"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission":{"type":"string","enum":["view","explore","edit"],"description":"Permission to grant for access to the workbook.","title":"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"permission":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission","description":"Permission to grant for access to the workbook."},"tagId":{"type":"string"}},"required":["grantee","permission"],"title":"V2WorkbooksWorkbookIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"},"workbooks_createWorkbookGrant_Response_200":{"type":"object","properties":{},"title":"workbooks_createWorkbookGrant_Response_200"},"workbooks_deleteWorkbookGrant_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteWorkbookGrant_Response_200"},"workbooks_getWorkbookMaterialization_Response_200":{"type":"object","properties":{"materializationId":{"type":"string"},"status":{"type":"string"},"startedAt":{"type":"string","format":"date-time"},"readyAt":{"type":"string","format":"date-time"},"expiredAt":{"type":"string","format":"date-time"},"error":{"type":"string"}},"required":["materializationId","status"],"title":"workbooks_getWorkbookMaterialization_Response_200"},"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItemsSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"Cron expression to use for the schedule"},"timezone":{"type":"string","description":"Timezone code, for example, PST"}},"title":"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItemsSchedule"},"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItems":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier of the materialization schedule for the element"},"elementName":{"type":"string"},"schedule":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItemsSchedule"},{"type":"null"}]},"configuredAt":{"type":"string","format":"date-time"},"paused":{"type":"boolean"}},"required":["sheetId","elementName","schedule","configuredAt","paused"],"title":"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItems"},"WorkbooksListMaterializationSchedulesResponse2000":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf0EntriesItems"}}},"required":["entries"],"title":"WorkbooksListMaterializationSchedulesResponse2000"},"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"Cron expression to use for the schedule"},"timezone":{"type":"string","description":"Timezone code, for example, PST"}},"title":"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule"},"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier of the materialization schedule for the element"},"elementName":{"type":"string"},"schedule":{"oneOf":[{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItemsSchedule"},{"type":"null"}]},"configuredAt":{"type":"string","format":"date-time"},"paused":{"type":"boolean"}},"required":["sheetId","elementName","schedule","configuredAt","paused"],"title":"V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"},"WorkbooksListMaterializationSchedulesResponse2001":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"}},"nextPage":{"type":["string","null"]}},"required":["entries","nextPage"],"title":"WorkbooksListMaterializationSchedulesResponse2001"},"workbooks_listMaterializationSchedules_Response_200":{"oneOf":[{"$ref":"#/components/schemas/WorkbooksListMaterializationSchedulesResponse2000"},{"$ref":"#/components/schemas/WorkbooksListMaterializationSchedulesResponse2001"}],"title":"workbooks_listMaterializationSchedules_Response_200"},"V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule":{"type":"object","properties":{"cronSpec":{"type":"string","description":"Cron expression to use for the schedule"},"timezone":{"type":"string","description":"Timezone code, for example, PST"}},"title":"V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},"V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"sheetId":{"type":"string","description":"Identifier of the materialization schedule for the element"},"elementName":{"type":"string"},"schedule":{"oneOf":[{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItemsSchedule"},{"type":"null"}]},"configuredAt":{"type":"string","format":"date-time"},"paused":{"type":"boolean"}},"required":["sheetId","elementName","schedule","configuredAt","paused"],"title":"V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_v2_1_listMaterializationSchedules_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkbooksWorkbookIdMaterializationSchedulesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"workbooks_v2_1_listMaterializationSchedules_Response_200"},"workbooks_materializeWorkbookElement_Response_200":{"type":"object","properties":{"materializationId":{"type":"string"}},"required":["materializationId"],"title":"workbooks_materializeWorkbookElement_Response_200"},"V2WorkbooksWorkbookIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"pageId":{"type":"string","description":"Unique identifier of the workbook page."},"name":{"type":"string"},"hidden":{"type":"boolean"}},"required":["pageId"],"title":"V2WorkbooksWorkbookIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbookPages_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdPagesGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_listWorkbookPages_Response_200"},"V2WorkbooksWorkbookIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"elementId":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"},"columns":{"type":"array","items":{"type":"string"}},"vizualizationType":{"type":"string"},"error":{"type":"string"}},"required":["elementId"],"title":"V2WorkbooksWorkbookIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_listWorkbookPageElements_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdPagesPageIdElementsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_listWorkbookPageElements_Response_200"},"V2WorkbooksWorkbookIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"versionTagId":{"type":"string","description":"Unique identifier of the tag."},"name":{"type":"string"},"sourceWorkbookVersion":{"type":"number","format":"double"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the tagged workbook."},"workbookTaggedAt":{"type":"string","format":"date-time"}},"required":["versionTagId","name","sourceWorkbookVersion","taggedWorkbookId","workbookTaggedAt"],"title":"V2WorkbooksWorkbookIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workbooks_getWorkbookTags_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksWorkbookIdTagsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"}},"required":["entries","nextPage"],"title":"workbooks_getWorkbookTags_Response_200"},"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems":{"type":"object","properties":{"fromPath":{"type":"array","items":{"type":"string"}},"toPath":{"type":"array","items":{"type":"string"}}},"required":["fromPath","toPath"],"title":"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems"},"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems":{"type":"object","properties":{"fromConnectionId":{"type":"string"},"toConnectionId":{"type":"string"},"paths":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItemsPathsItems"}}},"required":["fromConnectionId","toConnectionId","paths"],"title":"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaSourceMappingConfigItems"},"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems":{"type":"object","properties":{"dataModelId":{"type":"string"},"fromVersionTagId":{"type":["string","null"]},"toVersionTagId":{"type":["string","null"]}},"required":["dataModelId","fromVersionTagId","toVersionTagId"],"title":"V2WorkbooksTagPostRequestBodyContentApplicationJsonSchemaDataModelSourceTaggedVersionsItems"},"workbooks_tagWorkbook_Response_200":{"type":"object","properties":{"versionTagId":{"type":"string"},"taggedWorkbookId":{"type":"string","description":"Unique identifier of the workbook."},"taggedWorkbookVersion":{"type":"number","format":"double"}},"required":["versionTagId","taggedWorkbookId","taggedWorkbookVersion"],"title":"workbooks_tagWorkbook_Response_200"},"workbooks_deleteTaggedworkbook_Response_200":{"type":"object","properties":{},"title":"workbooks_deleteTaggedworkbook_Response_200"},"V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf0Items":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf0Items"},"WorkspacesListWorkspacesResponse2000":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf0Items"},"title":"WorkspacesListWorkspacesResponse2000"},"V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"},"WorkspacesListWorkspacesResponse2001":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkspacesGetResponsesContentApplicationJsonSchemaOneOf1EntriesItems"}},"nextPage":{"type":["string","null"]}},"required":["entries","nextPage"],"title":"WorkspacesListWorkspacesResponse2001"},"workspaces_listWorkspaces_Response_200":{"oneOf":[{"$ref":"#/components/schemas/WorkspacesListWorkspacesResponse2000"},{"$ref":"#/components/schemas/WorkspacesListWorkspacesResponse2001"}],"title":"workspaces_listWorkspaces_Response_200"},"V21WorkspacesGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"V21WorkspacesGetResponsesContentApplicationJsonSchemaEntriesItems"},"workspaces_v2_1_listWorkspaces_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V21WorkspacesGetResponsesContentApplicationJsonSchemaEntriesItems"},"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":"workspaces_v2_1_listWorkspaces_Response_200"},"WorkspacesCreateWorkspaceResponse2000":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"WorkspacesCreateWorkspaceResponse2000"},"WorkspacesCreateWorkspaceResponse2001":{"type":"object","properties":{"workspaceIds":{"type":"array","items":{"type":"string"}},"workspaceUrlIds":{"type":"array","items":{"type":"string"}}},"required":["workspaceIds","workspaceUrlIds"],"title":"WorkspacesCreateWorkspaceResponse2001"},"workspaces_createWorkspace_Response_200":{"oneOf":[{"$ref":"#/components/schemas/WorkspacesCreateWorkspaceResponse2000"},{"$ref":"#/components/schemas/WorkspacesCreateWorkspaceResponse2001"}],"title":"workspaces_createWorkspace_Response_200"},"workspaces_getWorkspace_Response_200":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"workspaces_getWorkspace_Response_200"},"workspaces_updateWorkspace_Response_200":{"type":"object","properties":{"workspaceId":{"type":"string"},"workspaceUrlId":{"type":"string","description":"Base62-encoded identifier used in Sigma workspace URLs."},"name":{"type":"string"},"createdBy":{"type":"string"},"updatedBy":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":"string","format":"date-time"}},"required":["workspaceId","workspaceUrlId","name","createdBy","updatedBy","createdAt","updatedAt"],"title":"workspaces_updateWorkspace_Response_200"},"workspaces_deleteWorkspace_Response_200":{"type":"object","properties":{},"title":"workspaces_deleteWorkspace_Response_200"},"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0":{"type":"object","properties":{"memberId":{"type":"string"}},"required":["memberId"],"description":"The UUID of the member receiving the grant","title":"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1":{"type":"object","properties":{"teamId":{"type":"string"}},"required":["teamId"],"description":"The UUID of the team receiving the grant","title":"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"},"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee":{"oneOf":[{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee0"},{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee1"}],"title":"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission":{"type":"string","enum":["view","explore","organize","edit"],"description":"Defines the level of access that is granted. Each permission level allows different types of operations.","title":"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission"},"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems":{"type":"object","properties":{"grantee":{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsGrantee"},"permission":{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItemsPermission","description":"Defines the level of access that is granted. Each permission level allows different types of operations."}},"required":["grantee","permission"],"title":"V2WorkspacesWorkspaceIdGrantsPostRequestBodyContentApplicationJsonSchemaGrantsItems"},"workspaces_createWorkspaceGrant_Response_200":{"type":"object","properties":{},"title":"workspaces_createWorkspaceGrant_Response_200"},"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0":{"type":"string","enum":["admin","annotate","update","usage","writeback"],"description":"Valid inode types: table, connection database, and connection schema.","title":"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1":{"type":"string","enum":["create","annotate","organize","explore","view","edit","apply"],"description":"Valid inode types: folder, workspace, workbook, dataset, and data model. Can Contribute permissions are listed as **organize** and Can Manage permissions are listed as **edit**.","title":"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2":{"type":"string","enum":["view","edit","apply"],"description":"Valid inode types: version tag.","title":"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"},"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission":{"oneOf":[{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission0"},{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission1"},{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission2"}],"description":"The permission granted to the member","title":"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission"},"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems":{"type":"object","properties":{"grantId":{"type":"string","description":"The unique identifier of the grant"},"inodeId":{"type":"string","description":"The unique identifier of the inode"},"organizationId":{"type":"string","description":"The unique identifier of the organization"},"memberId":{"type":["string","null"],"description":"The unique identifier of the member"},"teamId":{"type":["string","null"],"description":"The unique identifier of the team"},"permission":{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItemsPermission","description":"The permission granted to the member"},"createdBy":{"type":"string","description":"The identifier of the user who created this grant"},"updatedBy":{"type":"string","description":"The identifier of the user or process that last updated this grant"},"createdAt":{"type":"string","format":"date-time","description":"When the grant was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the grant was last updated"}},"required":["grantId","inodeId","organizationId","memberId","teamId","permission","createdBy","updatedBy","createdAt","updatedAt"],"title":"V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"},"workspaces_listWorkspaceGrants_Response_200":{"type":"object","properties":{"entries":{"type":"array","items":{"$ref":"#/components/schemas/V2WorkspacesWorkspaceIdGrantsGetResponsesContentApplicationJsonSchemaEntriesItems"}},"nextPage":{"type":["string","null"]},"total":{"type":"number","format":"double"},"hasMore":{"type":"boolean","description":"**[Deprecated]** Indicates whether more results are available."}},"required":["entries","nextPage"],"title":"workspaces_listWorkspaceGrants_Response_200"},"workspaces_deleteWorkspaceGrant_Response_200":{"type":"object","properties":{},"title":"workspaces_deleteWorkspaceGrant_Response_200"},"whoami_Response_200":{"type":"object","properties":{"userId":{"type":"string"},"organizationId":{"type":"string"}},"required":["userId","organizationId"],"title":"whoami_Response_200"}},"securitySchemes":{"OAuth":{"type":"http","scheme":"bearer","description":"OAuth 2.0 authentication"}}}}